diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..c2b64ea --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @WFCD/node-libraries \ No newline at end of file diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..807af4f --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,57 @@ +name: Actions +on: + pull_request: + branches: + - main + +jobs: + lint: + name: Lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version-file: '.nvmrc' + - name: Install Dependencies + run: npm ci + - name: Run linters + run: npm run lint + test: + name: Test + runs-on: ubuntu-latest + needs: lint + strategy: + matrix: + node-version: ['lts/hydrogen', 'lts/iron', 'lts/*', 21] + steps: + - uses: actions/checkout@v4 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + - run: npm ci + - run: npm i --no-save warframe-worldstate-data@latest + - run: npm test + env: + CI: true + parallel: true + coverage: + name: Coverage + runs-on: ubuntu-latest + needs: lint + steps: + - uses: actions/checkout@v4 + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version-file: '.nvmrc' + - run: npm ci + - run: npm test + env: + CI: true + - name: Coveralls + uses: coverallsapp/github-action@main + with: + github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 0000000..2d0bda4 --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,34 @@ +name: 'CodeQL' + +on: + push: + branches: [main] + pull_request: + # The branches below must be a subset of the branches above + branches: [main] + schedule: + - cron: '24 12 * * 6' + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + strategy: + fail-fast: false + matrix: + language: ['javascript'] + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + - name: Autobuild + uses: github/codeql-action/autobuild@v3 + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml new file mode 100644 index 0000000..b25f2aa --- /dev/null +++ b/.github/workflows/docs.yaml @@ -0,0 +1,26 @@ +name: GitHub pages + +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version-file: '.nvmrc' + - run: npm i + - run: npm install jsdoc ink-docstrap tsd-jsdoc + - name: Build + run: npm run build:docs + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + with: + deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} + publish_dir: ./docs diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..94f5982 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,46 @@ +name: Release +on: + push: + branches: + - main + +jobs: + verify: + name: Verify + runs-on: ubuntu-latest + steps: + - name: Check out + uses: actions/checkout@v4 + with: + token: ${{ secrets.GH_TOKEN }} + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version-file: '.nvmrc' + - name: Install Dependencies + run: npm ci + - name: Run linters + run: npm run lint + - name: Run tests + run: npm run test + release: + name: Release + runs-on: ubuntu-latest + needs: [verify] + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + token: ${{ secrets.GH_TOKEN }} + - uses: actions/setup-node@v4 + with: + node-version-file: '.nvmrc' + - name: Semantic Release + uses: cycjimmy/semantic-release-action@v4 + env: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + with: + semantic_version: 17 + branches: | + ['main'] diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f95b507 --- /dev/null +++ b/.gitignore @@ -0,0 +1,55 @@ +# Logs +logs +*.log +npm-debug.log* + +# Runtime data +pids +*.pid +*.seed + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +.nyc_output/ + +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (http://nodejs.org/api/addons.html) +build/Release + +# Dependency directory +node_modules + +# Optional npm cache directory +.npm + +# Optional REPL history +.node_repl_history + +# WebStorm files +.idea + +warframe-worldstate-parser-*.tgz +package.json.backup + +# Test debugging files +data.*.json + +# unwanted configs from plugins +.jshintignore +.jshintrc + +.vscode/ + +# generated at release as part of the package +types/ + +# eslint cache +.eslintcache \ No newline at end of file diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100644 index 0000000..2312dc5 --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1 @@ +npx lint-staged diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..c32828c --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +lts/hydrogen \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..5e5a074 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,8437 @@ +{ + "name": "@wfcd/profile-parser", + "version": "0.0-dev", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "@wfcd/profile-parser", + "version": "0.0-dev", + "hasInstallScript": true, + "license": "MIT", + "devDependencies": { + "@types/chai": "^4.3.14", + "@wfcd/eslint-config": "^1.6.1", + "c8": "^9.1.0", + "chai": "^5.1.0", + "chai-json-equal": "^0.0.1", + "coveralls": "^3.1.1", + "husky": "^9.0.11", + "install-peerdeps": "^3.0.3", + "lint-staged": "^15.2.2", + "mocha": "^10.3.0", + "typescript": "^5.4.3" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "warframe-items": "^1.1262.30", + "warframe-worldstate-data": "^2.5.0" + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "peer": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", + "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.9.tgz", + "integrity": "sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==", + "dev": true, + "peer": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helpers": "^7.23.9", + "@babel/parser": "^7.23.9", + "@babel/template": "^7.23.9", + "@babel/traverse": "^7.23.9", + "@babel/types": "^7.23.9", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/eslint-parser": { + "version": "7.23.10", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.23.10.tgz", + "integrity": "sha512-3wSYDPZVnhseRnxRJH6ZVTNknBz76AEnyC+AYYhasjP3Yy23qz0ERR7Fcd2SHmYuSFJ2kY9gaaDd3vyqU09eSw==", + "dev": true, + "peer": true, + "dependencies": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.0", + "eslint": "^7.5.0 || ^8.0.0" + } + }, + "node_modules/@babel/generator": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", + "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/types": "^7.23.6", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", + "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", + "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/compat-data": "^7.23.5", + "@babel/helper-validator-option": "^7.23.5", + "browserslist": "^4.22.2", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.23.10", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.10.tgz", + "integrity": "sha512-2XpP2XhkXzgxecPNEEK8Vz8Asj9aRxt08oKOqtiZoqV2UGZ5T+EkyP9sXQ9nwMxBIG34a7jmasVqoMop7VdPUw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-member-expression-to-functions": "^7.23.0", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", + "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz", + "integrity": "sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", + "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", + "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", + "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-wrap-function": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", + "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-optimise-call-expression": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", + "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", + "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-function-name": "^7.22.5", + "@babel/template": "^7.22.15", + "@babel/types": "^7.22.19" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.9.tgz", + "integrity": "sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/template": "^7.23.9", + "@babel/traverse": "^7.23.9", + "@babel/types": "^7.23.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.9.tgz", + "integrity": "sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==", + "dev": true, + "peer": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.23.3", + "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.23.3.tgz", + "integrity": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz", + "integrity": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.23.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.7.tgz", + "integrity": "sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz", + "integrity": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz", + "integrity": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz", + "integrity": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.9.tgz", + "integrity": "sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.20", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz", + "integrity": "sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz", + "integrity": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz", + "integrity": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz", + "integrity": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz", + "integrity": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.23.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.8.tgz", + "integrity": "sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-split-export-declaration": "^7.22.6", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz", + "integrity": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/template": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz", + "integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz", + "integrity": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz", + "integrity": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz", + "integrity": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz", + "integrity": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz", + "integrity": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz", + "integrity": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz", + "integrity": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz", + "integrity": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz", + "integrity": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz", + "integrity": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz", + "integrity": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz", + "integrity": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz", + "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.9.tgz", + "integrity": "sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz", + "integrity": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", + "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz", + "integrity": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz", + "integrity": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz", + "integrity": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz", + "integrity": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/compat-data": "^7.23.3", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz", + "integrity": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz", + "integrity": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz", + "integrity": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz", + "integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz", + "integrity": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz", + "integrity": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz", + "integrity": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz", + "integrity": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "regenerator-transform": "^0.15.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz", + "integrity": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz", + "integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz", + "integrity": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz", + "integrity": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz", + "integrity": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz", + "integrity": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz", + "integrity": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz", + "integrity": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz", + "integrity": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz", + "integrity": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/polyfill": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.12.1.tgz", + "integrity": "sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==", + "deprecated": "🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information.", + "dev": true, + "dependencies": { + "core-js": "^2.6.5", + "regenerator-runtime": "^0.13.4" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.9.tgz", + "integrity": "sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/compat-data": "^7.23.5", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.23.5", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.23.3", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.23.3", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.7", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@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", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.23.3", + "@babel/plugin-syntax-import-attributes": "^7.23.3", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@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-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.23.3", + "@babel/plugin-transform-async-generator-functions": "^7.23.9", + "@babel/plugin-transform-async-to-generator": "^7.23.3", + "@babel/plugin-transform-block-scoped-functions": "^7.23.3", + "@babel/plugin-transform-block-scoping": "^7.23.4", + "@babel/plugin-transform-class-properties": "^7.23.3", + "@babel/plugin-transform-class-static-block": "^7.23.4", + "@babel/plugin-transform-classes": "^7.23.8", + "@babel/plugin-transform-computed-properties": "^7.23.3", + "@babel/plugin-transform-destructuring": "^7.23.3", + "@babel/plugin-transform-dotall-regex": "^7.23.3", + "@babel/plugin-transform-duplicate-keys": "^7.23.3", + "@babel/plugin-transform-dynamic-import": "^7.23.4", + "@babel/plugin-transform-exponentiation-operator": "^7.23.3", + "@babel/plugin-transform-export-namespace-from": "^7.23.4", + "@babel/plugin-transform-for-of": "^7.23.6", + "@babel/plugin-transform-function-name": "^7.23.3", + "@babel/plugin-transform-json-strings": "^7.23.4", + "@babel/plugin-transform-literals": "^7.23.3", + "@babel/plugin-transform-logical-assignment-operators": "^7.23.4", + "@babel/plugin-transform-member-expression-literals": "^7.23.3", + "@babel/plugin-transform-modules-amd": "^7.23.3", + "@babel/plugin-transform-modules-commonjs": "^7.23.3", + "@babel/plugin-transform-modules-systemjs": "^7.23.9", + "@babel/plugin-transform-modules-umd": "^7.23.3", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.23.3", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.23.4", + "@babel/plugin-transform-numeric-separator": "^7.23.4", + "@babel/plugin-transform-object-rest-spread": "^7.23.4", + "@babel/plugin-transform-object-super": "^7.23.3", + "@babel/plugin-transform-optional-catch-binding": "^7.23.4", + "@babel/plugin-transform-optional-chaining": "^7.23.4", + "@babel/plugin-transform-parameters": "^7.23.3", + "@babel/plugin-transform-private-methods": "^7.23.3", + "@babel/plugin-transform-private-property-in-object": "^7.23.4", + "@babel/plugin-transform-property-literals": "^7.23.3", + "@babel/plugin-transform-regenerator": "^7.23.3", + "@babel/plugin-transform-reserved-words": "^7.23.3", + "@babel/plugin-transform-shorthand-properties": "^7.23.3", + "@babel/plugin-transform-spread": "^7.23.3", + "@babel/plugin-transform-sticky-regex": "^7.23.3", + "@babel/plugin-transform-template-literals": "^7.23.3", + "@babel/plugin-transform-typeof-symbol": "^7.23.3", + "@babel/plugin-transform-unicode-escapes": "^7.23.3", + "@babel/plugin-transform-unicode-property-regex": "^7.23.3", + "@babel/plugin-transform-unicode-regex": "^7.23.3", + "@babel/plugin-transform-unicode-sets-regex": "^7.23.3", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.8", + "babel-plugin-polyfill-corejs3": "^0.9.0", + "babel-plugin-polyfill-regenerator": "^0.5.5", + "core-js-compat": "^3.31.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "dev": true, + "peer": true + }, + "node_modules/@babel/runtime": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz", + "integrity": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==", + "dev": true, + "peer": true, + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime/node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "dev": true, + "peer": true + }, + "node_modules/@babel/template": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.23.9.tgz", + "integrity": "sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.23.5", + "@babel/parser": "^7.23.9", + "@babel/types": "^7.23.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.9.tgz", + "integrity": "sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.9", + "@babel/types": "^7.23.9", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz", + "integrity": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "node_modules/@es-joy/jsdoccomment": { + "version": "0.42.0", + "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.42.0.tgz", + "integrity": "sha512-R1w57YlVA6+YE01wch3GPYn6bCsrOV3YW/5oGGE2tmX6JcL9Nr+b5IikrjMPF+v9CV3ay+obImEdsDhovhJrzw==", + "dev": true, + "peer": true, + "dependencies": { + "comment-parser": "1.4.1", + "esquery": "^1.5.0", + "jsdoc-type-pratt-parser": "~4.0.0" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "peer": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "peer": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "dev": true, + "peer": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "peer": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "peer": true + }, + "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "peer": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "peer": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "peer": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@eslint/eslintrc/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "peer": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@eslint/js": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", + "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", + "dev": true, + "peer": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "dev": true, + "peer": true, + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "peer": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "peer": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", + "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", + "dev": true, + "peer": true + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "peer": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz", + "integrity": "sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "dev": true, + "peer": true, + "dependencies": { + "eslint-scope": "5.1.1" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "peer": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "peer": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgr/core": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", + "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", + "dev": true, + "peer": true, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/@types/chai": { + "version": "4.3.14", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.14.tgz", + "integrity": "sha512-Wj71sXE4Q4AkGdG9Tvq1u/fquNz9EdG4LIJMwVVII7ashjD/8cf8fyIfJAjRr6YcsXnSE8cOGQPq1gqeR8z+3w==", + "dev": true + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", + "dev": true + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "peer": true + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true, + "peer": true + }, + "node_modules/@types/semver": { + "version": "7.5.7", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.7.tgz", + "integrity": "sha512-/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg==", + "dev": true, + "peer": true + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz", + "integrity": "sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==", + "dev": true, + "peer": true, + "dependencies": { + "@eslint-community/regexpp": "^4.5.1", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/type-utils": "6.21.0", + "@typescript-eslint/utils": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.4", + "natural-compare": "^1.4.0", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "peer": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "peer": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "peer": true + }, + "node_modules/@typescript-eslint/parser": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz", + "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==", + "dev": true, + "peer": true, + "dependencies": { + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz", + "integrity": "sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==", + "dev": true, + "peer": true, + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz", + "integrity": "sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==", + "dev": true, + "peer": true, + "dependencies": { + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/utils": "6.21.0", + "debug": "^4.3.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz", + "integrity": "sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==", + "dev": true, + "peer": true, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz", + "integrity": "sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==", + "dev": true, + "peer": true, + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "9.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "peer": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "peer": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "peer": true + }, + "node_modules/@typescript-eslint/utils": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.21.0.tgz", + "integrity": "sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==", + "dev": true, + "peer": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", + "semver": "^7.5.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "peer": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "peer": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "peer": true + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz", + "integrity": "sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==", + "dev": true, + "peer": true, + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "peer": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true, + "peer": true + }, + "node_modules/@wfcd/eslint-config": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/@wfcd/eslint-config/-/eslint-config-1.6.1.tgz", + "integrity": "sha512-LzI9wnpG6vB4HwDla9003YtXTd1UhvjKtHpzOecfZDICa6K3JOsK7MsCgMyLns274CIUNVR0h2VsY14ljIdvxQ==", + "dev": true, + "engines": { + "npm": ">=7" + }, + "peerDependencies": { + "@babel/core": "^7.23.9", + "@babel/eslint-parser": "^7.23.10", + "@babel/plugin-syntax-import-assertions": "^7.23.3", + "@babel/plugin-transform-class-properties": "^7.23.3", + "@babel/plugin-transform-private-methods": "^7.23.3", + "@babel/preset-env": "^7.23.9", + "@typescript-eslint/eslint-plugin": "^6.21.0", + "@typescript-eslint/parser": "^6.21.0", + "eslint": "^8.56.0", + "eslint-config-airbnb-base": "^15.0.0", + "eslint-config-airbnb-typescript": "17.1.0", + "eslint-config-prettier": "^9.1.0", + "eslint-plugin-import": "^2.29.1", + "eslint-plugin-jsdoc": "^48.1.0", + "eslint-plugin-no-null": "^1.0.2", + "eslint-plugin-prettier": "^5.1.3", + "prettier": "^3.2.5" + } + }, + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, + "peer": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peer": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.0.tgz", + "integrity": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==", + "dev": true, + "dependencies": { + "type-fest": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", + "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", + "dev": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "peer": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/are-docs-informative": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", + "integrity": "sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==", + "dev": true, + "peer": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.filter": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.3.tgz", + "integrity": "sha512-VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.4.tgz", + "integrity": "sha512-hzvSHUshSpCflDR1QMUBLHGHP1VIEBegT4pix9H/Z92Xw3ySoy6c2qh7lJWTJnRJ8JCZ9bJNCgTyYaJGcJu6xQ==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "dev": true, + "peer": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "dev": true, + "dependencies": { + "safer-buffer": "~2.1.0" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/assertion-error": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", + "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/available-typed-arrays": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.6.tgz", + "integrity": "sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/aws4": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", + "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==", + "dev": true + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.8", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.8.tgz", + "integrity": "sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.5.0", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.9.0.tgz", + "integrity": "sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.5.0", + "core-js-compat": "^3.34.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.5.tgz", + "integrity": "sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.5.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "dev": true, + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "dev": true + }, + "node_modules/browserslist": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", + "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "peer": true, + "dependencies": { + "caniuse-lite": "^1.0.30001587", + "electron-to-chromium": "^1.4.668", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/c8": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/c8/-/c8-9.1.0.tgz", + "integrity": "sha512-mBWcT5iqNir1zIkzSPyI3NCR9EZCVI3WUD+AVO17MVWTSFNyUueXE82qTeampNtTr+ilN/5Ua3j24LgbCKjDVg==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@istanbuljs/schema": "^0.1.3", + "find-up": "^5.0.0", + "foreground-child": "^3.1.1", + "istanbul-lib-coverage": "^3.2.0", + "istanbul-lib-report": "^3.0.1", + "istanbul-reports": "^3.1.6", + "test-exclude": "^6.0.0", + "v8-to-istanbul": "^9.0.0", + "yargs": "^17.7.2", + "yargs-parser": "^21.1.1" + }, + "bin": { + "c8": "bin/c8.js" + }, + "engines": { + "node": ">=14.14.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dev": true, + "peer": true, + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001588", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001588.tgz", + "integrity": "sha512-+hVY9jE44uKLkH0SrUTqxjxqNTOWHsbnQDIKjwkZ3lNTzUUVdBLBGXtj/q5Mp5u98r3droaZAewQuEDzjQdZlQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "peer": true + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", + "dev": true + }, + "node_modules/chai": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/chai/-/chai-5.1.0.tgz", + "integrity": "sha512-kDZ7MZyM6Q1DhR9jy7dalKohXQ2yrlXkk59CR52aRKxJrobmlBNqnFQxX9xOX8w+4mz8SYlKJa/7D7ddltFXCw==", + "dev": true, + "dependencies": { + "assertion-error": "^2.0.1", + "check-error": "^2.0.0", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/chai-json-equal": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/chai-json-equal/-/chai-json-equal-0.0.1.tgz", + "integrity": "sha512-3B53yqUYbDZplhyRrogTYosTjKibd0aoG+MwCG4hsMMWCoIOcDUPyFdV/8qFfAN2zO4HeDYMRjYD6zq4k7Z5Wg==", + "dev": true + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "peer": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/check-error": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.0.0.tgz", + "integrity": "sha512-tjLAOBHKVxtPoHe/SA7kNOMvhCRdCJ3vETdeY0RuAc9popf+hyaSV6ZEg9hr4cpWF7jmo/JSWEnLDrnijS9Tog==", + "dev": true, + "engines": { + "node": ">= 16" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/cli-color": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/cli-color/-/cli-color-2.0.3.tgz", + "integrity": "sha512-OkoZnxyC4ERN3zLzZaY9Emb7f/MhBOIpePv0Ycok0fJYT+Ouo00UBEIwsVsr0yoow++n5YWlSUgST9GKhNHiRQ==", + "dev": true, + "dependencies": { + "d": "^1.0.1", + "es5-ext": "^0.10.61", + "es6-iterator": "^2.0.3", + "memoizee": "^0.4.15", + "timers-ext": "^0.1.7" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/cli-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", + "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", + "dev": true, + "dependencies": { + "restore-cursor": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-4.0.0.tgz", + "integrity": "sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==", + "dev": true, + "dependencies": { + "slice-ansi": "^5.0.0", + "string-width": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/cli-truncate/node_modules/emoji-regex": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz", + "integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==", + "dev": true + }, + "node_modules/cli-truncate/node_modules/string-width": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.1.0.tgz", + "integrity": "sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==", + "dev": true, + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "peer": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true, + "peer": true + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/comment-parser": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.4.1.tgz", + "integrity": "sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", + "dev": true, + "peer": true + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.", + "dev": true, + "hasInstallScript": true + }, + "node_modules/core-js-compat": { + "version": "3.36.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.36.0.tgz", + "integrity": "sha512-iV9Pd/PsgjNWBXeq8XRtWVSgz2tKAfhfvBs7qxYty+RlRd+OCksaWmOnc4JKrTc1cToXL1N0s3l/vwlxPtdElw==", + "dev": true, + "peer": true, + "dependencies": { + "browserslist": "^4.22.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", + "dev": true + }, + "node_modules/coveralls": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/coveralls/-/coveralls-3.1.1.tgz", + "integrity": "sha512-+dxnG2NHncSD1NrqbSM3dn/lE57O6Qf/koe9+I7c+wzkqRmEvcp0kgJdxKInzYzkICKkFMZsX3Vct3++tsF9ww==", + "dev": true, + "dependencies": { + "js-yaml": "^3.13.1", + "lcov-parse": "^1.0.0", + "log-driver": "^1.2.7", + "minimist": "^1.2.5", + "request": "^2.88.2" + }, + "bin": { + "coveralls": "bin/coveralls.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "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, + "dependencies": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + }, + "node_modules/dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", + "dev": true, + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", + "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/deep-eql": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.1.tgz", + "integrity": "sha512-nwQCf6ne2gez3o1MxWifqkciwt0zhl0LO1/UwVu4uMBuPmflWM4oQ70XMqHqnBJA+nhzncaqL9HVL6KkHJ28lw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/deep-is": { + "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, + "peer": true + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "peer": true, + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "peer": true, + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/diff": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz", + "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", + "dev": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "peer": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "peer": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", + "dev": true, + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.673", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.673.tgz", + "integrity": "sha512-zjqzx4N7xGdl5468G+vcgzDhaHkaYgVcf9MqgexcTqsl2UHSCmOj/Bi3HAprg4BZCpC7HyD8a6nZl6QAZf72gw==", + "dev": true, + "peer": true + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/es-abstract": { + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.4.tgz", + "integrity": "sha512-vZYJlk2u6qHYxBOTjAeg7qUxHdNfih64Uu2J8QqWgXZ2cri0ZpJAkzDUK/q593+mvKwlxyaxr6F1Q+3LKoQRgg==", + "dev": true, + "peer": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.6", + "call-bind": "^1.0.7", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.2", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.1", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.0", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.1", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", + "dev": true, + "peer": true + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dev": true, + "peer": true, + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", + "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", + "dev": true, + "peer": true, + "dependencies": { + "get-intrinsic": "^1.2.2", + "has-tostringtag": "^1.0.0", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "dev": true, + "peer": true, + "dependencies": { + "hasown": "^2.0.0" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "peer": true, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es5-ext": { + "version": "0.10.62", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", + "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.3", + "next-tick": "^1.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", + "dev": true, + "dependencies": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "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, + "dependencies": { + "d": "^1.0.1", + "ext": "^1.1.2" + } + }, + "node_modules/es6-weak-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", + "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", + "dev": true, + "dependencies": { + "d": "1", + "es5-ext": "^0.10.46", + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "peer": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", + "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", + "dev": true, + "peer": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.56.0", + "@humanwhocodes/config-array": "^0.11.13", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-airbnb-base": { + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz", + "integrity": "sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==", + "dev": true, + "peer": true, + "dependencies": { + "confusing-browser-globals": "^1.0.10", + "object.assign": "^4.1.2", + "object.entries": "^1.1.5", + "semver": "^6.3.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "peerDependencies": { + "eslint": "^7.32.0 || ^8.2.0", + "eslint-plugin-import": "^2.25.2" + } + }, + "node_modules/eslint-config-airbnb-typescript": { + "version": "17.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb-typescript/-/eslint-config-airbnb-typescript-17.1.0.tgz", + "integrity": "sha512-GPxI5URre6dDpJ0CtcthSZVBAfI+Uw7un5OYNVxP2EYi3H81Jw701yFP7AU+/vCE7xBtFmjge7kfhhk4+RAiig==", + "dev": true, + "peer": true, + "dependencies": { + "eslint-config-airbnb-base": "^15.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^5.13.0 || ^6.0.0", + "@typescript-eslint/parser": "^5.0.0 || ^6.0.0", + "eslint": "^7.32.0 || ^8.2.0", + "eslint-plugin-import": "^2.25.3" + } + }, + "node_modules/eslint-config-prettier": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", + "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", + "dev": true, + "peer": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "peer": true, + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "peer": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "dev": true, + "peer": true, + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "peer": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", + "dev": true, + "peer": true, + "dependencies": { + "array-includes": "^3.1.7", + "array.prototype.findlastindex": "^1.2.3", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.8.0", + "hasown": "^2.0.0", + "is-core-module": "^2.13.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.7", + "object.groupby": "^1.0.1", + "object.values": "^1.1.7", + "semver": "^6.3.1", + "tsconfig-paths": "^3.15.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "peer": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "peer": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "peer": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "peer": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/eslint-plugin-jsdoc": { + "version": "48.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.1.0.tgz", + "integrity": "sha512-g9S8ukmTd1DVcV/xeBYPPXOZ6rc8WJ4yi0+MVxJ1jBOrz5kmxV9gJJQ64ltCqIWFnBChLIhLVx3tbTSarqVyFA==", + "dev": true, + "peer": true, + "dependencies": { + "@es-joy/jsdoccomment": "~0.42.0", + "are-docs-informative": "^0.0.2", + "comment-parser": "1.4.1", + "debug": "^4.3.4", + "escape-string-regexp": "^4.0.0", + "esquery": "^1.5.0", + "is-builtin-module": "^3.2.1", + "semver": "^7.6.0", + "spdx-expression-parse": "^4.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-jsdoc/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-plugin-jsdoc/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "peer": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-jsdoc/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "peer": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-jsdoc/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "peer": true + }, + "node_modules/eslint-plugin-no-null": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-no-null/-/eslint-plugin-no-null-1.0.2.tgz", + "integrity": "sha512-uRDiz88zCO/2rzGfgG15DBjNsgwWtWiSo4Ezy7zzajUgpnFIqd1TjepKeRmJZHEfBGu58o2a8S0D7vglvvhkVA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=5.0.0" + }, + "peerDependencies": { + "eslint": ">=3.0.0" + } + }, + "node_modules/eslint-plugin-prettier": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.3.tgz", + "integrity": "sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==", + "dev": true, + "peer": true, + "dependencies": { + "prettier-linter-helpers": "^1.0.0", + "synckit": "^0.8.6" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-plugin-prettier" + }, + "peerDependencies": { + "@types/eslint": ">=8.0.0", + "eslint": ">=8.0.0", + "eslint-config-prettier": "*", + "prettier": ">=3.0.0" + }, + "peerDependenciesMeta": { + "@types/eslint": { + "optional": true + }, + "eslint-config-prettier": { + "optional": true + } + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "peer": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "peer": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "peer": true + }, + "node_modules/eslint/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "peer": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "peer": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "peer": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/eslint/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "peer": true + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "peer": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "peer": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "peer": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "peer": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/eslint/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "peer": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "peer": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "peer": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "peer": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esquery/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "peer": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/event-emitter": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", + "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==", + "dev": true, + "dependencies": { + "d": "1", + "es5-ext": "~0.10.14" + } + }, + "node_modules/eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", + "dev": true + }, + "node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/ext": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", + "dev": true, + "dependencies": { + "type": "^2.7.2" + } + }, + "node_modules/ext/node_modules/type": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", + "dev": true + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "node_modules/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", + "dev": true, + "engines": [ + "node >=0.6.0" + ] + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-diff": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", + "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", + "dev": true, + "peer": true + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "peer": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "peer": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "peer": true + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "peer": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "peer": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true, + "bin": { + "flat": "cli.js" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "peer": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "dev": true, + "peer": true + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "peer": true, + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "peer": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "peer": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-east-asian-width": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.2.0.tgz", + "integrity": "sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-func-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", + "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dev": true, + "peer": true, + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "dev": true, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", + "dev": true, + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "peer": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dev": true, + "peer": true, + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "peer": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "peer": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "peer": true + }, + "node_modules/har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "deprecated": "this library is no longer supported", + "dev": true, + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "peer": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "peer": true, + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "peer": true, + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.1.tgz", + "integrity": "sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==", + "dev": true, + "peer": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "bin": { + "he": "bin/he" + } + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", + "dev": true, + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "dev": true, + "engines": { + "node": ">=16.17.0" + } + }, + "node_modules/husky": { + "version": "9.0.11", + "resolved": "https://registry.npmjs.org/husky/-/husky-9.0.11.tgz", + "integrity": "sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw==", + "dev": true, + "bin": { + "husky": "bin.mjs" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/typicode" + } + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "peer": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "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/install-peerdeps": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/install-peerdeps/-/install-peerdeps-3.0.3.tgz", + "integrity": "sha512-FpuvEiJul5oDPnNXtwIMhh4moLR445U+St77FFU5Su8++cHFUVQmRrWf+r9pZ64yN17nhUzz1crFhbBEoCeG5Q==", + "dev": true, + "dependencies": { + "@babel/polyfill": "^7.7.0", + "cli-color": "^2.0.0", + "commander": "^4.0.1", + "promptly": "^3.0.3", + "semver": "^6.3.0" + }, + "bin": { + "install-peerdeps": "lib/cli.js" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "dev": true, + "peer": true, + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "peer": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-builtin-module": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", + "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", + "dev": true, + "peer": true, + "dependencies": { + "builtin-modules": "^3.3.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "peer": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "peer": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "peer": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-promise": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", + "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", + "dev": true + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "peer": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "peer": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "dev": true, + "peer": true, + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true, + "peer": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", + "dev": true + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, + "peer": true + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", + "dev": true + }, + "node_modules/jsdoc-type-pratt-parser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.0.0.tgz", + "integrity": "sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "peer": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "peer": true + }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "peer": true + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "peer": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "dev": true, + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "peer": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/lcov-parse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcov-parse/-/lcov-parse-1.0.0.tgz", + "integrity": "sha512-aprLII/vPzuQvYZnDRU78Fns9I2Ag3gi4Ipga/hxnVMCZC8DnR2nI7XBqrPoywGfxqIx/DgarGvDJZAD3YBTgQ==", + "dev": true, + "bin": { + "lcov-parse": "bin/cli.js" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "peer": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz", + "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/lint-staged": { + "version": "15.2.2", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-15.2.2.tgz", + "integrity": "sha512-TiTt93OPh1OZOsb5B7k96A/ATl2AjIZo+vnzFZ6oHK5FuTk63ByDtxGQpHm+kFETjEWqgkF95M8FRXKR/LEBcw==", + "dev": true, + "dependencies": { + "chalk": "5.3.0", + "commander": "11.1.0", + "debug": "4.3.4", + "execa": "8.0.1", + "lilconfig": "3.0.0", + "listr2": "8.0.1", + "micromatch": "4.0.5", + "pidtree": "0.6.0", + "string-argv": "0.3.2", + "yaml": "2.3.4" + }, + "bin": { + "lint-staged": "bin/lint-staged.js" + }, + "engines": { + "node": ">=18.12.0" + }, + "funding": { + "url": "https://opencollective.com/lint-staged" + } + }, + "node_modules/lint-staged/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/lint-staged/node_modules/commander": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", + "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", + "dev": true, + "engines": { + "node": ">=16" + } + }, + "node_modules/listr2": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-8.0.1.tgz", + "integrity": "sha512-ovJXBXkKGfq+CwmKTjluEqFi3p4h8xvkxGQQAQan22YCgef4KZ1mKGjzfGh6PL6AW5Csw0QiQPNuQyH+6Xk3hA==", + "dev": true, + "dependencies": { + "cli-truncate": "^4.0.0", + "colorette": "^2.0.20", + "eventemitter3": "^5.0.1", + "log-update": "^6.0.0", + "rfdc": "^1.3.0", + "wrap-ansi": "^9.0.0" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/listr2/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/listr2/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/listr2/node_modules/emoji-regex": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz", + "integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==", + "dev": true + }, + "node_modules/listr2/node_modules/string-width": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.1.0.tgz", + "integrity": "sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==", + "dev": true, + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/listr2/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/listr2/node_modules/wrap-ansi": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz", + "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true, + "peer": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "peer": true + }, + "node_modules/log-driver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/log-driver/-/log-driver-1.2.7.tgz", + "integrity": "sha512-U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg==", + "dev": true, + "engines": { + "node": ">=0.8.6" + } + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-symbols/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/log-symbols/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/log-symbols/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/log-symbols/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/log-update": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-6.0.0.tgz", + "integrity": "sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw==", + "dev": true, + "dependencies": { + "ansi-escapes": "^6.2.0", + "cli-cursor": "^4.0.0", + "slice-ansi": "^7.0.0", + "strip-ansi": "^7.1.0", + "wrap-ansi": "^9.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/log-update/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/log-update/node_modules/emoji-regex": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz", + "integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==", + "dev": true + }, + "node_modules/log-update/node_modules/is-fullwidth-code-point": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz", + "integrity": "sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==", + "dev": true, + "dependencies": { + "get-east-asian-width": "^1.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/slice-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.0.tgz", + "integrity": "sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.2.1", + "is-fullwidth-code-point": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/log-update/node_modules/string-width": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.1.0.tgz", + "integrity": "sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==", + "dev": true, + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz", + "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/loupe": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.1.0.tgz", + "integrity": "sha512-qKl+FrLXUhFuHUoDJG7f8P8gEMHq9NFS0c6ghXG1J0rldmZFQZoNVv/vyirE9qwCIhWZDsvEFd1sbFu3GvRQFg==", + "dev": true, + "dependencies": { + "get-func-name": "^2.0.1" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "peer": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lru-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz", + "integrity": "sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==", + "dev": true, + "dependencies": { + "es5-ext": "~0.10.2" + } + }, + "node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/memoizee": { + "version": "0.4.15", + "resolved": "https://registry.npmjs.org/memoizee/-/memoizee-0.4.15.tgz", + "integrity": "sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==", + "dev": true, + "dependencies": { + "d": "^1.0.1", + "es5-ext": "^0.10.53", + "es6-weak-map": "^2.0.3", + "event-emitter": "^0.3.5", + "is-promise": "^2.2.2", + "lru-queue": "^0.1.0", + "next-tick": "^1.1.0", + "timers-ext": "^0.1.7" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "peer": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mocha": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.3.0.tgz", + "integrity": "sha512-uF2XJs+7xSLsrmIvn37i/wnc91nw7XjOQB8ccyx5aEgdnohr7n+rEiZP23WkCYHjilR6+EboEnbq/ZQDz4LSbg==", + "dev": true, + "dependencies": { + "ansi-colors": "4.1.1", + "browser-stdout": "1.3.1", + "chokidar": "3.5.3", + "debug": "4.3.4", + "diff": "5.0.0", + "escape-string-regexp": "4.0.0", + "find-up": "5.0.0", + "glob": "8.1.0", + "he": "1.2.0", + "js-yaml": "4.1.0", + "log-symbols": "4.1.0", + "minimatch": "5.0.1", + "ms": "2.1.3", + "serialize-javascript": "6.0.0", + "strip-json-comments": "3.1.1", + "supports-color": "8.1.1", + "workerpool": "6.2.1", + "yargs": "16.2.0", + "yargs-parser": "20.2.4", + "yargs-unparser": "2.0.0" + }, + "bin": { + "_mocha": "bin/_mocha", + "mocha": "bin/mocha.js" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/mocha/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/mocha/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/mocha/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mocha/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/mocha/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/mocha/node_modules/minimatch": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz", + "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/mocha/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/mocha/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/mocha/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/mocha/node_modules/yargs-parser": { + "version": "20.2.4", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", + "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "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/mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "peer": true + }, + "node_modules/next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true, + "peer": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", + "dev": true, + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "dev": true, + "peer": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", + "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.2.tgz", + "integrity": "sha512-bzBq58S+x+uo0VjurFT0UktpKHOZmv4/xePiOA1nbB9pMqpGK7rUPNgf+1YC+7mE+0HzhTMqNUuCqvKhj6FnBw==", + "dev": true, + "peer": true, + "dependencies": { + "array.prototype.filter": "^1.0.3", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.0.0" + } + }, + "node_modules/object.values": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, + "peer": true, + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "peer": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "peer": true + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/pathval": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.0.tgz", + "integrity": "sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==", + "dev": true, + "engines": { + "node": ">= 14.16" + } + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true, + "peer": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pidtree": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "dev": true, + "bin": { + "pidtree": "bin/pidtree.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", + "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", + "dev": true, + "peer": true, + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dev": true, + "peer": true, + "dependencies": { + "fast-diff": "^1.1.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/promptly": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/promptly/-/promptly-3.2.0.tgz", + "integrity": "sha512-WnR9obtgW+rG4oUV3hSnNGl1pHm3V1H/qD9iJBumGSmVsSC5HpZOLuu8qdMb6yCItGfT7dcRszejr/5P3i9Pug==", + "dev": true, + "dependencies": { + "read": "^1.0.4" + } + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "peer": true + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/read": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", + "integrity": "sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==", + "dev": true, + "dependencies": { + "mute-stream": "~0.0.4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/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, + "peer": true + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", + "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "dev": true, + "peer": true, + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "dev": true + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dev": true, + "peer": true, + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true, + "peer": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "dev": true, + "dependencies": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/request/node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "peer": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/restore-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", + "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", + "dev": true, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/restore-cursor/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/restore-cursor/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/restore-cursor/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "peer": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rfdc": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.1.tgz", + "integrity": "sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==", + "dev": true + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "peer": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rimraf/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "peer": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "peer": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rimraf/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "peer": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "peer": true, + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.0.tgz", + "integrity": "sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.5", + "get-intrinsic": "^1.2.2", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/set-function-length": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz", + "integrity": "sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==", + "dev": true, + "peer": true, + "dependencies": { + "define-data-property": "^1.1.2", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dev": true, + "peer": true, + "dependencies": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.5.tgz", + "integrity": "sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.0.0", + "is-fullwidth-code-point": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/slice-ansi/node_modules/is-fullwidth-code-point": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", + "dev": true, + "peer": true + }, + "node_modules/spdx-expression-parse": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-4.0.0.tgz", + "integrity": "sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==", + "dev": true, + "peer": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz", + "integrity": "sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==", + "dev": true, + "peer": true + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/sshpk": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz", + "integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==", + "dev": true, + "dependencies": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-argv": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", + "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", + "dev": true, + "engines": { + "node": ">=0.6.19" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "peer": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "peer": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/synckit": { + "version": "0.8.8", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.8.tgz", + "integrity": "sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==", + "dev": true, + "peer": true, + "dependencies": { + "@pkgr/core": "^0.1.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/test-exclude/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/test-exclude/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/test-exclude/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true, + "peer": true + }, + "node_modules/timers-ext": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.7.tgz", + "integrity": "sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==", + "dev": true, + "dependencies": { + "es5-ext": "~0.10.46", + "next-tick": "1" + } + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/ts-api-utils": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.2.1.tgz", + "integrity": "sha512-RIYA36cJn2WiH9Hy77hdF9r7oEwxAtB/TS9/S4Qd90Ap4z5FSiin5zEiTL44OII1Y3IIlEvxwxFUVgrHSZ/UpA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dev": true, + "peer": true, + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "peer": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true, + "peer": true + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", + "dev": true + }, + "node_modules/type": { + "version": "1.2.0", + "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.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "peer": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.1.tgz", + "integrity": "sha512-RSqu1UEuSlrBhHTWC8O9FnPjOduNs4M7rJ4pRKoEjtx1zUNOPN2sSXHLDX+Y2WPbHIxbvg4JFo2DNAEfPIKWoQ==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.1.tgz", + "integrity": "sha512-tcqKMrTRXjqvHN9S3553NPCaGL0VPgFI92lXszmrE8DMhiDPLBYLlvo8Uu4WZAAX/aGqp/T1sbA4ph8EWjDF9Q==", + "dev": true, + "peer": true, + "dependencies": { + "available-typed-arrays": "^1.0.6", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.4.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.3.tgz", + "integrity": "sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "peer": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "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, + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "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, + "peer": true, + "dependencies": { + "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": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "dev": true, + "peer": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "peer": true, + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "dev": true, + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/v8-to-istanbul": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", + "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^2.0.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", + "dev": true, + "engines": [ + "node >=0.6.0" + ], + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/warframe-items": { + "version": "1.1262.30", + "resolved": "https://registry.npmjs.org/warframe-items/-/warframe-items-1.1262.30.tgz", + "integrity": "sha512-q0j8aslnqpjxK2uelTa4y79s69zpOuvGpa0jSlBVQE7l7pcBndNNEiyTsLzgwA3QBy6U0kPZQACSmrFZw1xaXA==", + "peer": true, + "peerDependencies": { + "warframe-worldstate-data": "^2" + } + }, + "node_modules/warframe-worldstate-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/warframe-worldstate-data/-/warframe-worldstate-data-2.5.0.tgz", + "integrity": "sha512-/ChazBBIqEh8Wgu+FChYw5iVy+PocHcKQC9FD7NRrEatfHoQo9vVPnIp5KLDHFYT0BqnTs2cN1W7FQJNkngJZg==", + "peer": true, + "engines": { + "node": ">=18.19.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "peer": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.14.tgz", + "integrity": "sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==", + "dev": true, + "peer": true, + "dependencies": { + "available-typed-arrays": "^1.0.6", + "call-bind": "^1.0.5", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/workerpool": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz", + "integrity": "sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==", + "dev": true + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "peer": true + }, + "node_modules/yaml": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", + "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-unparser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", + "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", + "dev": true, + "dependencies": { + "camelcase": "^6.0.0", + "decamelize": "^4.0.0", + "flat": "^5.0.2", + "is-plain-obj": "^2.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..9173fba --- /dev/null +++ b/package.json @@ -0,0 +1,104 @@ +{ + "name": "@wfcd/profile-parser", + "version": "0.0-dev", + "description": "Parser for Digital Extreme's profile data", + "type": "module", + "main": "src/ProfileParser.js", + "exports": { + ".": { + "import": "./src/ProfileParser.js", + "types": "./types/index.d.ts" + } + }, + "public": true, + "files": [ + "src", + "LICENSE", + "README.md", + "types" + ], + "devDependencies": { + "@types/chai": "^4.3.14", + "@wfcd/eslint-config": "^1.6.1", + "c8": "^9.1.0", + "chai": "^5.1.0", + "chai-json-equal": "^0.0.1", + "coveralls": "^3.1.1", + "husky": "^9.0.11", + "install-peerdeps": "^3.0.3", + "lint-staged": "^15.2.2", + "mocha": "^10.3.0", + "typescript": "^5.4.3" + }, + "scripts": { + "test": "c8 mocha", + "coverage": "npm test && c8 report --reporter=text-lcov | coveralls", + "lint": "eslint src/", + "lint:fix": "eslint src/ test/ --fix", + "prepublishOnly": "npm run build:types", + "build:docs": "jsdoc -c .github/docs/conf.json -d docs", + "build:types": "tsc -p tsconfig.declaration.json", + "postinstall": "if [ \"$NODE_ENV\" = \"dev\" ] ; then npx -p install-peerdeps@latest install-peerdeps @wfcd/eslint-config@latest -S ; fi", + "prepare": "husky" + }, + "author": "", + "license": "MIT", + "engines": { + "node": ">=18.0.0" + }, + "eslintConfig": { + "extends": "@wfcd/eslint-config/esm", + "parser": "@babel/eslint-parser", + "parserOptions": { + "sourceType": "module", + "ecmaVersion": 6, + "ecmaFeatures": { + "modules": true + }, + "babelOptions": { + "plugins": [ + "@babel/plugin-transform-class-properties", + "@babel/plugin-transform-private-methods" + ] + } + } + }, + "babel": { + "presets": [ + "@babel/preset-env" + ], + "plugins": [ + "@babel/plugin-transform-class-properties", + "@babel/plugin-transform-private-methods" + ] + }, + "prettier": "@wfcd/eslint-config/prettier", + "mocha": { + "exit": true, + "spec": "test/**/*.spec.js" + }, + "c8": { + "reporter": [ + "lcov", + "text" + ], + "skip-full": true + }, + "peerDependencies": { + "warframe-items": "^1.1262.30", + "warframe-worldstate-data": "^2.5.0" + }, + "lint-staged": { + "*.js": [ + "eslint --cache --fix", + "npm test" + ], + "package*.json": [ + "prettier --write", + "npm -q --no-progress dedupe" + ], + "*.{json,md,yaml}": [ + "prettier --write" + ] + } +} diff --git a/src/Ability.js b/src/Ability.js new file mode 100644 index 0000000..5bf5eb9 --- /dev/null +++ b/src/Ability.js @@ -0,0 +1,21 @@ +/** + * Represents an ability used by the player + */ +export default class Ability { + /** + * @param {Object} ability The ability + */ + constructor(ability) { + /** + * The ability unique name + * @type {String} + */ + this.uniqueName = ability.type; + + /** + * How many time the ability was used in the player's lifetime + * @type {number} + */ + this.used = ability.used; + } +} diff --git a/src/ArchonCrystal.js b/src/ArchonCrystal.js new file mode 100644 index 0000000..5ce72a1 --- /dev/null +++ b/src/ArchonCrystal.js @@ -0,0 +1,8 @@ +import { archonShardColor, archonShardUpgradeType } from 'warframe-worldstate-data/utilities'; + +export default class ArchonCrystal { + constructor(crystal, local) { + this.color = archonShardColor(crystal.Color, local); + this.modifier = archonShardUpgradeType(crystal.Color, crystal.UpgradeType, local); + } +} diff --git a/src/ChallengeProgress.js b/src/ChallengeProgress.js new file mode 100644 index 0000000..b9d999e --- /dev/null +++ b/src/ChallengeProgress.js @@ -0,0 +1,15 @@ +export default class ChallengeProgress { + constructor(challenge) { + /** + * Name of the challenge + * @type {String} + */ + this.name = challenge.Name; + + /** + * Progress towards completing this challenge + * @type {number} + */ + this.progress = challenge.Progress; + } +} diff --git a/src/Enemy.js b/src/Enemy.js new file mode 100644 index 0000000..c5e437a --- /dev/null +++ b/src/Enemy.js @@ -0,0 +1,44 @@ +/** + * Represents the enemies killed + */ +export default class Enemy { + /** + * @param {Object} enemy The enemy + */ + constructor(enemy) { + /** + * Enenmy's unique name + * @type {String} + */ + this.uniqueName = enemy.type; + + /** + * How many times the player has killed this enemy type + * @type {number} + */ + this.kills = enemy.kills; + + /** + * The amount of kills that were headshots + * @type {number} + */ + this.headshots = enemy.headshots; + + /** + * The amount of kills that were finishers + * @type {number} + */ + this.executions = enemy.executions; + + /** + * The amount of kills that were assits + */ + this.assists = enemy.assists; + + /** + * How many times tis enemy type has killed the player + * @type {number} + */ + this.deaths = enemy.deaths; + } +} diff --git a/src/Intrinsics.js b/src/Intrinsics.js new file mode 100644 index 0000000..d49352b --- /dev/null +++ b/src/Intrinsics.js @@ -0,0 +1,66 @@ +export default class Intrinsics { + constructor(skills) { + // I know this is railjack but I'm not sure what the context is + this.space = skills.LPP_SPACE; + + /** + * Railjack engineering rank + * @type {number} + */ + this.engineering = skills.LPS_ENGINEERING; + + /** + * Railjack gunnery rank + * @type {number} + */ + this.gunnery = skills.LPS_GUNNERY; + + /** + * Railjack piloting rank + * @type {number} + */ + this.piloting = skills.LPS_PILOTING; + + /** + * Railjack tactical rank + * @type {number} + */ + this.tactical = skills.LPS_TACTICAL; + + /** + * Railjack command rank + * @type {number} + */ + this.command = skills.LPS_COMMAND; + + // Not sure what the context for this one is either + /** + * @type {number} + */ + this.drifter = skills.LPP_DRIFTER; + + /** + * Drifter riding rank + * @type {number} + */ + this.riding = skills.LPS_DRIFT_RIDING; + + /** + * Drifter combat rank + * @type {number} + */ + this.combat = skills.LPS_DRIFT_COMBAT; + + /** + * Drifter opportunity rank + * @type {number} + */ + this.opportunity = skills.LPS_DRIFT_OPPORTUNITY; + + /** + * Drifter endurance rank + * @type {number} + */ + this.endurance = skills.LPS_DRIFT_ENDURANCE; + } +} diff --git a/src/ItemConfig.js b/src/ItemConfig.js new file mode 100644 index 0000000..d419364 --- /dev/null +++ b/src/ItemConfig.js @@ -0,0 +1,51 @@ +import { colors, find } from 'warframe-items/utilities'; + +import mapToHex from './Util.js'; + +/** + * Represents the data configuration for an item + */ +export default class ItemConfig { + /** + * @param {Object} config The configuration + */ + constructor(config) { + /** + * Array of unique names for the skins applied to item + * @type {Array} + */ + this.skins = config.Skins.filter(Boolean) + .map((s) => find.findItem(s)) + .filter(Boolean); + + /** + * Array of PVP unique name upgrades applied + * @type {Array} + */ + if (config.PvpUpgrades) this.conclaveUpgrades = config.PvpUpgrades; + + /** + * Primary colors applied to item if they exist + * @type {import('warframe-items').ColorMap} + */ + if (config.pricol) this.primaryColor = colors.mapColors(mapToHex(config.pricol)); + + /** + * Sigil colors applied to item if they exist + * @type {import('warframe-items').ColorMap} + */ + if (config.sigcol) this.sigilColor = colors.mapColors(mapToHex(config.sigcol)); + + /** + * Attachment colors applied to item if they exist + * @type {import('warframe-items').ColorMap} + */ + if (config.attcol) this.attachmentsColor = colors.mapColors(mapToHex(config.attcol)); + + /** + * Syandana colors applied to item if they exist + * @type {import('warframe-items').ColorMap} + */ + if (config.syancol) this.syandanaColor = colors.mapColors(mapToHex(config.syancol)); + } +} diff --git a/src/LoadOutInventory.js b/src/LoadOutInventory.js new file mode 100644 index 0000000..663e48a --- /dev/null +++ b/src/LoadOutInventory.js @@ -0,0 +1,43 @@ +import LoadOutItem from './LoadOutItem.js'; +import WeaponSkin from './WeaponSkin.js'; +import XpInfo from './XpInfo.js'; + +export default class LoadOutInventory { + constructor(item) { + /** + * Skins applied to weapons + * @type {WeaponSkin} + */ + this.weaponSkins = item.WeaponSkins.map((s) => new WeaponSkin(s)); + + /** + * An array of the player's currently equiped Warframe (or powersuits) + * @type {LoadOutItem} + */ + this.suits = item.Suits.map((s) => new LoadOutItem(s)); + + /** + * An array of the player's currently equiped secondary weapon + * @type {LoadOutItem} + */ + this.secondary = item.Pistols.map((p) => new LoadOutItem(p)); + + /** + * An array of the player's currently equiped primary weapon + * @type {LoadOutItem} + */ + this.primary = item.LongGuns.map((lg) => new LoadOutItem(lg)); + + /** + * An array of the player's currently equiped melee weapon + * @type {LoadOutItem} + */ + this.melee = item.Melee.map((m) => new LoadOutItem(m)); + + /** + * Items that have counted towards the players mastery rank + * @type {XpInfo} + */ + this.xpInfo = item.XPInfo.map((xp) => new XpInfo(xp)); + } +} diff --git a/src/LoadOutItem.js b/src/LoadOutItem.js new file mode 100644 index 0000000..2af7eac --- /dev/null +++ b/src/LoadOutItem.js @@ -0,0 +1,135 @@ +import { colors, find } from 'warframe-items/utilities'; +import { parseDate, toTitleCase } from 'warframe-worldstate-data/utilities'; + +import ItemConfig from './ItemConfig.js'; +import Polarity from './Polarity.js'; + +export default class LoadOutItem { + constructor(weapon) { + /** + * Item ID + * @type {String} + */ + this.itemId = weapon.ItemId.$oid; + + /** + * Item unique name + * @type {String} + */ + this.uniqueName = weapon.ItemType; + + const item = find.findItem(weapon.ItemType); + if (item) { + /** + * Item in-game name + * @type {String} + */ + this.name = item.name; + + /** + * Complete item from Warframe-items + * @type {import('warframe-items').Item} + */ + this.item = item; + } + + if (weapon.ItemName) { + const [, nemesis] = weapon.ItemName.split('|'); + + /** + * Item lich name + * @type {String} + */ + this.nemesis = toTitleCase(nemesis); + } + + /** + * Configuration for this weapon. Such as colors and skins applied by the player + * @type {Array} + */ + this.configs = weapon.Configs.map((c) => new ItemConfig(c)); + + /** + * The upgrade that was applied to this weapon + * @type {String} + */ + if (weapon.upgradeType) this.upgradeType = weapon.UpgradeType; + + /** + * Information on the upgradeType that was applied + * TODO need model for for fingerprint + */ + this.upgradeFingerprint = weapon.UpgradeFingerprint; + + /** + * @type {number} + */ + this.features = weapon.Features; + + // Not sure what this is for + /** + * @type {number} + */ + this.upgradeVer = weapon.UpgradeVer; + + /** + * XP earned with this weapon + * @type {number} + */ + this.xp = weapon.XP; + + /** + * How many mod slots are currently polarized. + * @type {number} + */ + this.polarized = weapon.Polarized; + + /** + * Which polarity types exist on the weapon + * @type {Array} + */ + this.polarity = weapon.Polarity.map((p) => new Polarity(p)); + + /** + * Focus lens applied + * @type {String} + */ + this.focuseLens = weapon.FocusLens; + + // Not sure what this is for + /** + * @type {number} + */ + this.customizationSlotPurchases = weapon.CustomizationSlotPurchases; + + /** + * Primary colors applied to item if they exist + * @type {ColorMap} + */ + if (weapon.pricol) this.primaryColor = colors.mapColors(weapon.pricol); + + /** + * Sigil colors applied to item if they exist + * @type {ColorMap} + */ + if (weapon.sigcol) this.sigilColor = colors.mapColors(weapon.sigcol.toString(16)); + + /** + * Attachment colors applied to item if they exist + * @type {ColorMap} + */ + if (weapon.attcol) this.attachmentsColor = colors.mapColors(weapon.attcol.toString(16)); + + /** + * Syandana colors applied to item if they exist + * @type {ColorMap} + */ + if (weapon.syancol) this.syandanaColor = colors.mapColors(weapon.syancol.toString(16)); + + /** + * If set will show when the player's warframe was infested. + * @type {ColorMap} + */ + if (weapon.InfestationDate) this.infestationDate = parseDate(weapon.InfestationDate); + } +} diff --git a/src/Mission.js b/src/Mission.js new file mode 100644 index 0000000..61a78b6 --- /dev/null +++ b/src/Mission.js @@ -0,0 +1,40 @@ +import { node, nodeEnemy, nodeMissionType } from 'warframe-worldstate-data/utilities'; + +export default class Mission { + constructor(mission, locale) { + const uniqueName = mission.Type || mission.Tag; + + /** + * Node name + * @type {String} + */ + this.node = node(uniqueName, locale); + + /** + * Node mission type + * @type {String} + */ + this.misstionType = nodeMissionType(uniqueName, locale); + + /** + * Node faction + * @type {String} + */ + this.faction = nodeEnemy(uniqueName, locale); + + /** + * Highest score earned in this mission + * @type {number} + */ + if (mission.highScore) this.highScore = mission.HighScore; + + /** + * How many times the mission was completed + * @type {number} + */ + if (mission.Completes) this.completes = mission.Completes; + + // Not sure. + if (mission.Tier) this.tier = mission.Tier; + } +} diff --git a/src/OperatorLoadOuts.js b/src/OperatorLoadOuts.js new file mode 100644 index 0000000..81e4798 --- /dev/null +++ b/src/OperatorLoadOuts.js @@ -0,0 +1,68 @@ +import { colors } from 'warframe-items/utilities'; + +import mapToHex from './Util.js'; + +export default class OperatorLoadOuts { + constructor(loadout) { + /** + * Skins that have been applied to the player's operator. + * @type {Array} + */ + this.skins = loadout.Skins; + + /** + * Operator amp ID + * @type {String} + */ + this.operatorAmp = loadout.OperatorAmp.$oid; + + /** + * Applied upgrade IDs + * @type {Array} + */ + this.upgrades = loadout.Upgrades; + this.abilityOverride = loadout.AbilityOverride; + + /** + * Operator primary colors + * @type {import('warframe-items').ColorMap} + */ + if (loadout.pricol) this.primaryColor = colors.mapColors(mapToHex(loadout.pricol)); + + /** + * Operator sigil colors + * @type {import('warframe-items').ColorMap} + */ + if (loadout.sigcol) this.sigilColor = colors.mapColors(mapToHex(loadout.sigcol)); + + /** + * Operator attachment colors + * @type {import('warframe-items').ColorMap} + */ + if (loadout.attcol) this.attachmentsColor = colors.mapColors(mapToHex(loadout.attcol)); + + /** + * Operator syandana colors + * @type {import('warframe-items').ColorMap} + */ + if (loadout.syancol) this.syandanaColor = colors.mapColors(mapToHex(loadout.syancol)); + + /** + * Operator eye colors + * @type {import('warframe-items').ColorMap} + */ + if (loadout.eyecol) this.eyeColor = colors.mapColors(mapToHex(loadout.eyecol)); + + /** + * Operator facial colors + * @type {import('warframe-items').ColorMap} + */ + if (loadout.facial) this.facial = colors.mapColors(mapToHex(loadout.facial)); + + /** + * Operator cloth colors + * @type {import('warframe-items').ColorMap} + */ + if (loadout.cloth) this.cloth = colors.mapColors(mapToHex(loadout.cloth)); + } +} diff --git a/src/Polarity.js b/src/Polarity.js new file mode 100644 index 0000000..94c87c4 --- /dev/null +++ b/src/Polarity.js @@ -0,0 +1,17 @@ +import { translatePolarity } from 'warframe-worldstate-data/utilities'; + +export default class Polarity { + constructor(polarity) { + /** + * Polarity name + * @type {String} + */ + this.polarity = translatePolarity(polarity.Value); + + /** + * Polarized slot + * @type {number} + */ + this.slot = polarity.Slot; + } +} diff --git a/src/Profile.js b/src/Profile.js new file mode 100644 index 0000000..70fb30e --- /dev/null +++ b/src/Profile.js @@ -0,0 +1,189 @@ +import { parseDate } from 'warframe-worldstate-data/utilities'; + +import ChallengeProgress from './ChallengeProgress.js'; +import Intrinsics from './Intrinsics.js'; +import LoadOutInventory from './LoadOutInventory.js'; +import Mission from './Mission.js'; +import OperatorLoadOuts from './OperatorLoadOuts.js'; +import Syndicate from './Syndicate.js'; + +export default class Profile { + constructor(profile, locale) { + /** + * Player's acount ID + * @type {Stirng} + */ + this.accountId = profile.AccountId.$oid; + + /** + * In-game name + * @type {String} + */ + this.displayName = profile.DisplayName; + + /** + * Mastery rank + * @type {String} + */ + this.masteryRank = profile.PlayerLevel; + + /** + * Current loadout + * @type {LoadOutInventory} + */ + this.loadout = new LoadOutInventory(profile.LoadOutInventory); + + /** + * Railjack and drifter Intrinsics + * @type {Intrinsics} + */ + this.intrinsics = new Intrinsics(profile.PlayerSkills); + + /** + * Nightwave challenges progress + * @type {} + */ + this.challengeProgress = profile.ChallengeProgress.map((c) => new ChallengeProgress(c)); + + /** + * Guild ID + * @type {String} + */ + this.guildId = profile.GuildId.$oid; + + /** + * Guild name + * @type {String} + */ + this.guildName = profile.GuildName; + + /** + * Guild tier + * @type {number} + */ + this.guildTier = profile.GuildTier; + + /** + * Guild XP + * @type {number} + */ + this.guildXp = profile.GuildXp; + + /** + * Guild class + * @type {String} + */ + this.guildClass = profile.GuildClass; + + /** + * Guild emblem. + * @type {String} + */ + this.guildEmblem = profile.GuildEmblem; + + /** + * Alliance ID + * @type {String} + */ + this.allianceId = profile.AllianceId.$oid; + + /** + * Assassins currently asfter the player + * @type {Array} + */ + this.deathMarks = profile.DeathMarks; + + /** + * Whether or not the player is qualified as a target for Zanuka + * @type {bool} + */ + this.harvestable = profile.Harvestable; + + /** + * Whether or not the player is qualified as a target for a syndicate death squad + * @type {bool} + */ + this.deathSquadable = profile.DeathSquadable; + + /** + * Date the account was created + * @type {Date} + */ + this.created = parseDate(profile.Created); + + /** + * Whether the user has migrated to console or not + * @type {bool} + */ + this.migratedToConsole = profile.MigratedToConsole; + + /** + * List of completed missions and their completions + * @type {MIssion} + */ + this.missions = profile.Missions.map((m) => new Mission(m, locale)); + + /** + * Player standing and title across all syndicates + * @type {Array} + */ + this.syndicates = profile.Affiliations.map((a) => new Syndicate(a)); + + /** + * Daily standing per Syndicate + * + * Faction syndicates all share daily standing + * @type {Map} + */ + this.dailyStanding = { + daily: profile.DailyAffiliation, + conclave: profile.DailyAffiliationPvp, + simaris: profile.DailyAffiliationLibrary, + ostron: profile.DailyAffiliationCetus, + quills: profile.DailyAffiliationQuills, + solaris: profile.DailyAffiliationSolaris, + ventKids: profile.DailyAffiliationVentkids, + voxSolaris: profile.DailyAffiliationVox, + entrati: profile.DailyAffiliationEntrati, + necraloid: profile.DailyAffiliationNecraloid, + holdfasts: profile.DailyAffiliationZariman, + kahl: profile.DailyAffiliationKahl, + cavia: profile.DailyAffiliationCavia, + }; + + /** + * Daily focus + * @type {number} + */ + this.dailyFocus = profile.DailyFocus; + + /** + * Player wishlist for in-game market items + */ + this.wishList = profile.Wishlist; + + /** + * Whhether the player has unlocked thier operator or not + * @type {bool} + */ + this.unlockedOperator = profile.UnlockedOperator; + + /** + * Whether the player has unlocked their alignement or not + * @type {bool} + */ + this.unlockedAlignment = profile.UnlockedAlignment; + + /** + * Operator loadout + * @type {OperatorLoadOuts} + */ + this.operatorLoadouts = profile.OperatorLoadOuts.map((ol) => new OperatorLoadOuts(ol)); + + /** + * Player's alignment + * @type {Map} + */ + this.alignment = { wisdom: profile.Alignment.Wisdom, alignment: profile.Alignment.Alignment }; + } +} diff --git a/src/ProfileParser.js b/src/ProfileParser.js new file mode 100644 index 0000000..574c7f3 --- /dev/null +++ b/src/ProfileParser.js @@ -0,0 +1,32 @@ +import { parseDate } from 'warframe-worldstate-data/utilities'; + +import Profile from './Profile.js'; +import Stats from './Stats.js'; + +export default class ProfileParser { + constructor(data, locale) { + /** + * Player's profile + * @type {Profile} + */ + this.profile = new Profile(data.Results[0], locale); + + // N/A + this.techProjects = data.TechProjects; + + // N/A + this.xpComponents = data.XpCompoents; + + // N/A + this.xpCacheExpiryDate = parseDate(data.XpCacheExpiryDate); + + // N/A + this.ceremonyResetDate = parseDate(data.CeremonyResetDate); + + /** + * Player stats + * @type {Stats} + */ + this.stats = new Stats(data.Stats); + } +} diff --git a/src/Pvp.js b/src/Pvp.js new file mode 100644 index 0000000..6339eb6 --- /dev/null +++ b/src/Pvp.js @@ -0,0 +1,27 @@ +export default class Pvp { + constructor(pvp) { + /** + * PVP match unique name + * @type {String} + */ + this.uniqueName = pvp.type; + + /** + * Deaths for this match + * @type {number} + */ + this.suitDeaths = pvp.suitDeaths; + + /** + * Warframe kills + * @type {number} + */ + this.suitKills = pvp.suitKills; + + /** + * Weapon killes + * @type {number} + */ + this.weaponKills = pvp.weaponKills; + } +} diff --git a/src/Race.js b/src/Race.js new file mode 100644 index 0000000..d3aec73 --- /dev/null +++ b/src/Race.js @@ -0,0 +1,15 @@ +export default class Race { + constructor(race) { + /** + * Race name + * @type {String} + */ + this.uniqueName = race.type; + + /** + * Race High score + * @type {number} + */ + this.highScore = race.highScore; + } +} diff --git a/src/Scan.js b/src/Scan.js new file mode 100644 index 0000000..c505d96 --- /dev/null +++ b/src/Scan.js @@ -0,0 +1,15 @@ +export default class Scan { + constructor(scan) { + /** + * Enemy unique name + * @type {String} + */ + this.uniqueName = scan.type; + + /** + * Number of scans done + * @type {number} + */ + this.scans = scan.scans; + } +} diff --git a/src/Stats.js b/src/Stats.js new file mode 100644 index 0000000..3ef5f53 --- /dev/null +++ b/src/Stats.js @@ -0,0 +1,339 @@ +import Ability from './Ability.js'; +import Enemy from './Enemy.js'; +import Mission from './Mission.js'; +import Pvp from './Pvp.js'; +import Race from './Race.js'; +import Scan from './Scan.js'; +import Weapon from './Weapon.js'; + +/** + * Player stats + */ +export default class Stats { + /** + * + * @param {Object} stats Player stats + */ + constructor(stats) { + /** + * Guild name + * @type {String} + */ + this.guildName = stats.GuildName; + + /** + * Player's total accumalted xp + * @type {String} + */ + this.xp = stats.XP; + + /** + * Missions completed + * @type {number} + */ + this.missionsCompleted = stats.MissionsCompleted; + + /** + * MIssions quit + * @type {number} + */ + this.missionsQuit = stats.MissionsQuit; + + /** + * MIsions failed + * @type {number} + */ + this.missionsFailed = stats.missionsFailed; + + /** + * MIssions interrupted + * @type {number} + */ + this.missionsInterrupted = stats.MissionsInterrupted; + + /** + * MIssions dumped + * @type {number} + */ + this.missionsDumped = stats.MissionsDumped; + + /** + * Items picked up + * @type {number} + */ + this.pickupCount = stats.PickupCount; + + /** + * Stats per weapon + * @type {Array} + */ + this.weapons = stats.Weapons.map((w) => new Weapon(w)); + + /** + * Stats on enemy encounters. + * @type {Array} + */ + this.enemies = stats.Enemies.map((e) => new Enemy(e)); + + /** + * Max score for Operation: Cryotic Front + * @type {number} + */ + this.excavationEventScoreMax = stats.ExcavationEventScoreMax; + + /** + * Max scoring for The Cicero crisis + * @type {number} + */ + this.forestEventScoreMax = stats.ForestEventScoreMax; + + /** + * Clan scoring for The Cicero crisis + * @type {number} + */ + this.forestEventScoreSum = stats.ForestEventScoreSum; + + /** + * Melee kilss + * @type {number} + */ + this.meleeKills = stats.MeleeKills; + + /** + * Used abilities + * @type {number} + */ + this.abilities = stats.Abilities.map((a) => new Ability(a)); + + /** + * Ciphers completed succefully + * @type {number} + */ + this.ciphersSolved = stats.CiphersSolved; + + /** + * Ciphers failed + * @type {number} + */ + this.ciphersFailed = stats.CiphersFaileds; + + /** + * Gross income + * @type {number} + */ + this.income = stats.Income; + + /** + * Total play time since account creation + * @type {string} + */ + this.timePlayedSec = stats.TimePlayedSec; + + /** + * Average time to hack a panel + * @type {number} + */ + this.cipherTime = stats.CipherTime; + + // Not sure + /** + * @type {number} + */ + this.rating = stats.Rating; + + /** + * Mastery rank + * @type {number} + */ + this.rank = stats.Rank; + + /** + * Total deaths since account creation + * @type {number} + */ + this.deaths = stats.Deaths; + + /** + * Mastery rank + * @type {number} + */ + this.playerLevel = stats.PlayerLevel; + + /** + * List of missions and high scores + * @type {Array} + */ + this.missions = stats.Missions.map((m) => new Mission(m)); + + /** + * Team heals + * @type {number} + */ + this.healCount = stats.HealCount; + + /** + * Event Scores for Operation breeding grounds + * @type {Map} + */ + this.breedGrounds = { + personalScore: stats.HiveEventScore, + clanScore: stats.HiveEventScoreSum, + }; + + /** + * Event Scores for The Gradivus Dilemma + * @type {Map} + */ + this.gradivusDilemma = { + grineer: stats.InvasionEventGrineerScore, + corpus: stats.InvasionEventCorpusScore, + }; + + /** + * List of scans + * @type {Array} + */ + this.scans = stats.Scans.map((s) => new Scan(s)); + + /** + * Team revives + * @type {number} + */ + this.reviveCount = stats.ReviveCount; + + /** + * Score for Operation: Eyes of Blight + */ + this.fomorianEventScore = stats.FomorianEventScore; + + /** + * Conclave scores + * @type {Array} + */ + this.pvp = stats.PVP.map((pvp) => new Pvp(pvp)); + + /** + * Lunaro stats + * @type {Map} + */ + this.lunaro = { + ties: stats.PVPSpeedballTies, + checks: stats.PVPSpeedballChecks, + goals: stats.PVPSpeedballGoals, + interceptions: stats.PVPSpeedballInterceptions, + steals: stats.PVPSpeedballSteals, + points: stats.PVPSpeedballPoints, + losses: stats.PVPSpeedballLosses, + assists: stats.PVPSpeedballAssists, + wins: stats.PVPSpeedballWins, + saves: stats.PVPSpeedballSaves, + passes: stats.PVPSpeedballPasses, + }; + + /** + * Dojo obstacle course goal + * @type {number} + */ + this.dojoObstacleScore = stats.DojoObstacleScore; + + /** + * @type {number} + */ + this.pvpGamesPendingMask = stats.PvpGamesPendingMask; + + /** + * @type {number} + */ + this.dedicatedServerGamesCompleted = stats.DedicatedServerGamesCompleted; + + /** + * Event score for the Pacifism Defect + * @type {number} + */ + this.pacifismDefect = stats.ColonistRescueEventScoreMax; + + /** + * Score for operation Ambulas reborn. + * @type {number} + */ + this.ambulasReborn = stats.AmbulasEventScoreMax; + + /** + * Score for Wyrmius mini game + * @type {number} + */ + this.sentinelGameScore = stats.SentinelGameScore; + + /** + * Event score for operation hostile merger + * @type {number} + */ + this.amalgamEventScoreMax = stats.AmalgamEventScoreMax; + + /** + * Operation Scarlet spear event score and badges + * @type {Map} + */ + this.scarletSpear = { + eventScore: stats.FlotillaEventScore, + condrixTier1: stats.FlotillaGroundBadgesTier1, + condrixTier2: stats.FlotillaGroundBadgesTier2, + condrixTier3: stats.FlotillaGroundBadgesTier3, + murexTier1: stats.FlotillaSpaceBadgesTier1, + murexTier2: stats.FlotillaSpaceBadgesTier2, + murexTier3: stats.FlotillaSpaceBadgesTier3, + }; + + this.orphixVenomScore = stats.MechSurvivalScoreMax; + this.happyZephyrScore = stats.ZephyrScore; + + this.kDriveRaces = Object.entries(stats.Races).map(([type, { highScore }]) => new Race({ type, highScore })); + + /** + * Operation Gate Crash event + * @type {number} + */ + this.gateCrash = stats.PortalEventScore; + + /** + * Per mission score for Operation: False Profit + * @type {number} + */ + this.falseProfitMissionScore = stats.RiotMoaEventScore; + + /** + * Total even score for Operation: False Profit + * @type {number} + */ + this.fasleProfitEventScore = stats.RiotMoaEventScoreMax; + + /** + * Operation: Shadow Debt event score + * @type {number} + */ + this.shadowDebtEventScore = stats.ProjectSinisterEventScore; + + /** + * Operation: Rathuum event score + * @type {number} + */ + this.rathuumEventScore = stats.KelaEventBonusScoreMax; + + /** + * Hollowed flame event max score + * @type {number} + */ + this.hallowedFlameScoreMax = stats.Halloween19ScoreMax; + + /** + * Survival Weekend event score + * @type {number} + */ + this.survivalWeekenedEventScore = stats.SurvivalEventScore; + + /** + * @type {number} + */ + this.infestedEventScore = stats.InfestedEventScore; + } +} diff --git a/src/Syndicate.js b/src/Syndicate.js new file mode 100644 index 0000000..252bd5f --- /dev/null +++ b/src/Syndicate.js @@ -0,0 +1,30 @@ +/** + * Represents a player's progress with a Syndicate + */ +export default class Syndicate { + /** + * @param {Object} affiliation The syndicate data + */ + constructor(affiliation) { + // TODO: name is readable but still might want to clean them up + // i.e "NewLokaSyndicate" can be "New Loka"" instead + + /** + * Name of the syndicate + * @type {String} + */ + this.name = affiliation.Tag; + + /** + * Current standing the player has with the syndicate + * @type {number} + */ + this.standing = affiliation.Standing; + + /** + * The player's current syndicate title + * @type {String} + */ + this.title = affiliation.Title; + } +} diff --git a/src/Util.js b/src/Util.js new file mode 100644 index 0000000..d925dc5 --- /dev/null +++ b/src/Util.js @@ -0,0 +1,12 @@ +/** + * Map base10 int colors to hex color strings + * @param {Record} colors color map + * @returns {Record} + */ +export default function mapToHex(colors) { + const hex = {}; + Object.entries(colors).forEach(([key, /** @type {undefined | number} */ value]) => { + hex[key] = Math.abs(value).toString(16).toUpperCase(); + }); + return hex; +} diff --git a/src/Weapon.js b/src/Weapon.js new file mode 100644 index 0000000..6dfaafe --- /dev/null +++ b/src/Weapon.js @@ -0,0 +1,51 @@ +export default class Weapon { + constructor(weapon) { + /** + * Weapon unique name + * @type {String} + */ + this.uniqueName = weapon.type; + + /** + * Earned XP with weapon + * @type {number} + */ + this.xp = weapon.xp; + + /** + * Time using this weapon + * @type {number} + */ + this.equiptime = weapon.equipTime; + + /** + * Headshots using this weapon + * @type {number} + */ + this.headShots = weapon.headShots; + + /** + * Hits using weapon + * @type {number} + */ + this.hits = weapon.hits; + + /** + * Assists using weapon + * @type {number} + */ + this.assists = weapon.assists; + + /** + * Kills with weapon + * @type {number} + */ + this.kills = weapon.kills; + + /** + * Shots fired + * @type {number} + */ + this.fired = weapon.fired; + } +} diff --git a/src/WeaponSkin.js b/src/WeaponSkin.js new file mode 100644 index 0000000..3d58e02 --- /dev/null +++ b/src/WeaponSkin.js @@ -0,0 +1,9 @@ +export default class WeaponSkin { + constructor(skin) { + /** + * Unique name + * @type {String} + */ + this.unuqueName = skin.ItemType; + } +} diff --git a/src/XpInfo.js b/src/XpInfo.js new file mode 100644 index 0000000..dd57c82 --- /dev/null +++ b/src/XpInfo.js @@ -0,0 +1,23 @@ +import { find } from 'warframe-items/utilities'; + +export default class XpInfo { + constructor(info) { + /** + * Unique name + * @type {String} + */ + this.uniqueName = info.ItemType; + + /** + * XP earned + * @type {number} + */ + this.xp = info.XP; + + /** + * The item corrosponding to the unique name. + * @type {import('warframe-items').Item | undefined} + */ + this.item = find.findItem(info.ItemType); + } +} diff --git a/test/data/OrnsteinTheSlayer.json b/test/data/OrnsteinTheSlayer.json new file mode 100644 index 0000000..a43ef99 --- /dev/null +++ b/test/data/OrnsteinTheSlayer.json @@ -0,0 +1,28556 @@ +{ + "Results": [ + { + "AccountId": { + "$oid": "572b6e1a3ade7fa43b58d9c4" + }, + "DisplayName": "OrnsteinTheSlayer", + "PlayerLevel": 25, + "LoadOutPreset": { + "FocusSchool": "AP_DEFENSE", + "PresetIcon": "", + "Favorite": false, + "n": "Chroma", + "s": { + "ItemId": { + "$oid": "5df7d224a38e4ab6e136bc93" + }, + "mod": 0, + "cus": 0 + }, + "p": { + "ItemId": { + "$oid": "61174cde4781733b8404d36d" + }, + "mod": 0, + "cus": 0 + }, + "l": { + "ItemId": { + "$oid": "59b5d762283a00580250fd4c" + }, + "mod": 0, + "cus": 0 + }, + "m": { + "ItemId": { + "$oid": "59b27a332183db91ce02ead9" + }, + "mod": 0, + "cus": 0 + }, + "h": { + "ItemId": { + "$oid": "5f80b166fd9860411e5c4c73" + }, + "mod": 0, + "cus": 0 + } + }, + "LoadOutInventory": { + "WeaponSkins": [ + { + "ItemType": "/Lotus/Upgrades/Skins/Dragon/ChromaPrimeHelmet" + }, + { + "ItemType": "/Lotus/Upgrades/Skins/Sigils/SyndicateSigilPerrinSequenceK" + }, + { + "ItemType": "/Lotus/Upgrades/Skins/Effects/NarmerEvolvingEphemeraC" + } + ], + "Suits": [ + { + "ItemType": "/Lotus/Powersuits/Dragon/ChromaPrime", + "Configs": [ + { + "Skins": [ + "/Lotus/Upgrades/Skins/Dragon/ChromaPrimeHelmet", + "/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization", + "/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization", + "", + "", + "", + "/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization", + "/Lotus/Upgrades/Skins/Dragon/ChromaPrimeSkin", + "/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization", + "/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization", + "/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization", + "/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization", + "/Lotus/Upgrades/Skins/Sigils/SyndicateSigilPerrinSequenceK", + "", + "", + "", + "/Lotus/Upgrades/Skins/Effects/NarmerEvolvingEphemeraC" + ], + "pricol": { + "t0": -10461867, + "t1": -1644569, + "t2": -2228224, + "m0": -2544384, + "m1": -11443299, + "en": -2544384, + "e1": -11443299 + }, + "attcol": { + "t0": -10461867, + "t1": -1644569, + "t2": -2228224, + "t3": -2773927, + "m0": -2544384, + "m1": -11443299, + "en": -2544384, + "e1": -11443299 + }, + "syancol": { + "t0": -2763307, + "t1": -13881549, + "t2": -1, + "t3": -2773927, + "m0": -2763307, + "m1": -2544384, + "en": -2544384, + "e1": -2544384 + } + }, + { + "Skins": [ + "/Lotus/Upgrades/Skins/Dragon/ChromaPrimeHelmet", + "/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization", + "/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization", + "", + "", + "", + "/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization", + "/Lotus/Upgrades/Skins/Dragon/ChromaPrimeSkin" + ] + }, + { + "Skins": [ + "/Lotus/Upgrades/Skins/Dragon/ChromaPrimeHelmet", + "/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization", + "/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization", + "", + "", + "", + "/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization", + "/Lotus/Upgrades/Skins/Dragon/ChromaPrimeSkin" + ] + } + ], + "UpgradeVer": 101, + "Features": 3, + "InfestationDate": { + "$date": { + "$numberLong": "2147483647000" + } + }, + "XP": 36869209, + "Polarity": [ + { + "Slot": 2, + "Value": "AP_UMBRA" + }, + { + "Slot": 5, + "Value": "AP_UMBRA" + }, + { + "Slot": 1, + "Value": "AP_ATTACK" + }, + { + "Slot": 4, + "Value": "AP_UMBRA" + } + ], + "Polarized": 6, + "ArchonCrystalUpgrades": [ + { + "Color": "ACC_BLUE_MYTHIC", + "UpgradeType": "/Lotus/Upgrades/Invigorations/ArchonCrystalUpgrades/ArchonCrystalUpgradeWarframeArmourMaxMythic" + }, + { + "Color": "ACC_RED_MYTHIC", + "UpgradeType": "/Lotus/Upgrades/Invigorations/ArchonCrystalUpgrades/ArchonCrystalUpgradeWarframeAbilityStrengthMythic" + }, + { + "Color": "ACC_RED", + "UpgradeType": "/Lotus/Upgrades/Invigorations/ArchonCrystalUpgrades/ArchonCrystalUpgradeWarframeAbilityDuration" + }, + { + "Color": "ACC_YELLOW_MYTHIC", + "UpgradeType": "/Lotus/Upgrades/Invigorations/ArchonCrystalUpgrades/ArchonCrystalUpgradeWarframeGlobeEffectEnergyMythic" + }, + { + "Color": "ACC_PURPLE", + "UpgradeType": "/Lotus/Upgrades/Invigorations/ArchonCrystalUpgrades/ArchonCrystalUpgradeWarframeCritDamageBoost" + } + ], + "FocusLens": "/Lotus/Upgrades/Focus/TacticLensLua", + "ItemId": { + "$oid": "5df7d224a38e4ab6e136bc93" + } + } + ], + "Pistols": [ + { + "ItemType": "/Lotus/Weapons/Corpus/Pistols/CrpBriefcaseAkimbo/CrpBriefcaseAkimboPistol", + "Configs": [ + { + "Skins": ["", "", "/Lotus/Upgrades/Skins/HolsterCustomizations/DaggerLowerBack"], + "pricol": { + "t0": -10461867, + "t1": -1644569, + "t2": -2228224, + "t3": -2773927, + "m0": -2544384, + "m1": -11443299, + "en": -2544384, + "e1": -11443299 + } + }, + { + "Skins": ["", "", "/Lotus/Upgrades/Skins/HolsterCustomizations/DaggerLowerBack"], + "pricol": { + "t0": -1644569, + "t1": -13881549, + "t2": -1, + "t3": -2544384, + "m0": -2544384, + "m1": -11443299, + "en": -2544384, + "e1": -11443299 + } + }, + { + "Skins": ["", "", "/Lotus/Upgrades/Skins/HolsterCustomizations/DaggerLowerBack"], + "pricol": { + "t0": -13684672, + "t1": -7694178, + "t2": -7834208, + "t3": -4079167, + "m0": -10098433, + "m1": -12817248, + "en": -14897947, + "e1": -14897947 + } + } + ], + "UpgradeType": "/Lotus/Weapons/Grineer/KuvaLich/Upgrades/InnateDamageRandomMod", + "UpgradeFingerprint": { + "compat": "/Lotus/Weapons/Corpus/Pistols/CrpBriefcaseAkimbo/CrpBriefcaseAkimboPistol", + "buffs": [ + { + "Tag": "InnateRadDamage", + "Value": 27852160 + } + ] + }, + "ItemName": "/Lotus/Language/Weapons/CrpBriefcaseAkimboPistolName|CAELLIA NOB", + "Features": 35, + "UpgradeVer": 101, + "XP": 22047525, + "Polarity": [ + { + "Slot": 5, + "Value": "AP_ATTACK" + }, + { + "Slot": 6, + "Value": "AP_ATTACK" + }, + { + "Slot": 7, + "Value": "AP_ATTACK" + }, + { + "Slot": 3, + "Value": "AP_TACTIC" + } + ], + "Polarized": 4, + "ItemId": { + "$oid": "61174cde4781733b8404d36d" + } + } + ], + "LongGuns": [ + { + "ItemType": "/Lotus/Weapons/Corpus/LongGuns/CrpShotgun/CrpShotgun", + "Configs": [ + { + "pricol": { + "t0": -10461867, + "t1": -1644569, + "t2": -2228224, + "t3": -2773927, + "m0": -2544384, + "m1": -11443299, + "en": -2544384, + "e1": -11443299 + }, + "Skins": ["", "", "/Lotus/Upgrades/Skins/HolsterCustomizations/RifleUpperBack"] + }, + { + "Skins": ["", "", "/Lotus/Upgrades/Skins/HolsterCustomizations/RifleUpperBack"], + "pricol": { + "t0": -1, + "t1": -2544384, + "t2": -13881549, + "t3": -2179736, + "m0": -11443299, + "m1": -2544384, + "en": -2544384, + "e1": -2544384 + } + }, + { + "Skins": ["", "", "/Lotus/Upgrades/Skins/HolsterCustomizations/RifleUpperBack"], + "pricol": { + "t0": -1644569, + "t1": -13881549, + "t2": -1, + "t3": -2544384, + "m0": -2544384, + "m1": -11443299, + "en": -2544384, + "e1": -11443299 + } + }, + { + "pricol": { + "t0": -1402941, + "t1": -2157700, + "t2": -1743706, + "t3": -1260454, + "m0": -1472838, + "m1": -11443299, + "en": -1472838, + "e1": -1472838 + }, + "Skins": ["", "", "/Lotus/Upgrades/Skins/HolsterCustomizations/RifleUpperBack"] + } + ], + "UpgradeVer": 101, + "XP": 58906193, + "Polarized": 3, + "Polarity": [ + { + "Slot": 3, + "Value": "AP_ATTACK" + }, + { + "Slot": 6, + "Value": "AP_ATTACK" + }, + { + "Slot": 5, + "Value": "AP_ATTACK" + } + ], + "FocusLens": "/Lotus/Upgrades/Focus/DefenseLensLua", + "Features": 3, + "CustomizationSlotPurchases": 1, + "ItemId": { + "$oid": "59b5d762283a00580250fd4c" + } + } + ], + "Melee": [ + { + "ItemType": "/Lotus/Weapons/Corpus/Melee/Hammer/CorpusHammerWeapon", + "Configs": [ + { + "Skins": ["", "", "/Lotus/Upgrades/Skins/HolsterCustomizations/HeavyUpperBack"], + "pricol": { + "t0": -10461867, + "t1": -1644569, + "t2": -2228224, + "t3": -2773927, + "m0": -2544384, + "m1": -11443299, + "en": -2544384, + "e1": -11443299 + } + }, + { + "Skins": ["", "", "/Lotus/Upgrades/Skins/HolsterCustomizations/HeavyUpperBack"], + "pricol": { + "t0": -14736862, + "t1": -14736862, + "t2": -13684430, + "t3": -2228224, + "en": -2228224, + "m0": -2228224, + "m1": -2228224 + } + }, + { + "Skins": ["", "", "/Lotus/Upgrades/Skins/HolsterCustomizations/HeavyUpperBack"], + "pricol": { + "t0": -394759, + "t1": -394759, + "t2": -407222, + "t3": -394759, + "en": -467609, + "m0": -467609, + "m1": -467609 + } + } + ], + "UpgradeVer": 101, + "XP": 17072657, + "Polarized": 2, + "Polarity": [ + { + "Slot": 3, + "Value": "AP_ATTACK" + }, + { + "Slot": 6, + "Value": "AP_ATTACK" + } + ], + "FocusLens": "/Lotus/Upgrades/Focus/PowerLensGreater", + "Features": 35, + "ItemId": { + "$oid": "59b27a332183db91ce02ead9" + } + } + ], + "XPInfo": [ + { + "ItemType": "/Lotus/Weapons/Tenno/Rifle/StartingRifle", + "XP": 1435196 + }, + { + "ItemType": "/Lotus/Weapons/MK1Series/MK1Kunai", + "XP": 641435 + }, + { + "ItemType": "/Lotus/Powersuits/Excalibur/Excalibur", + "XP": 4319443 + }, + { + "ItemType": "/Lotus/Weapons/MK1Series/MK1Bo", + "XP": 119983 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/HeatSword/HeatLongSword", + "XP": 1017323 + }, + { + "ItemType": "/Lotus/Powersuits/Archwing/StandardJetPack/StandardJetPack", + "XP": 922887 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Archwing/Primary/FoldingMachineGun/ArchMachineGun", + "XP": 688801 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Archwing/Melee/Archsword/ArchSwordWeapon", + "XP": 4176133 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/GrineerPistol/GrnHeavyPistol", + "XP": 3527295 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Fist/FuraxWraith", + "XP": 669 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/CutlassAndPoignard/CutlassPoignardSwords", + "XP": 3845726 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Rifle/BurstRifle", + "XP": 4863475 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/CronusSword/CronusLongSword", + "XP": 496643 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/DualDagger/DualEtherDagger", + "XP": 451968 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistol/BurstPistol", + "XP": 647877 + }, + { + "ItemType": "/Lotus/Powersuits/Rhino/Rhino", + "XP": 11429658 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelPowersuits/CarrierPowerSuit", + "XP": 15270066 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelWeapons/SentShotgun", + "XP": 1411250 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/PrimeKatana/PrimeNikana", + "XP": 59292506 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/GrineerPistol/GrineerAkimboPistol", + "XP": 2856288 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelPowersuits/DethCubePowerSuit", + "XP": 1607182 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelWeapons/DethMachineRifle", + "XP": 23261095 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/LongGuns/GrnGorgSniperRifle/GrnGorgSniperRifle", + "XP": 1493092 + }, + { + "ItemType": "/Lotus/Powersuits/Paladin/Paladin", + "XP": 4370656 + }, + { + "ItemType": "/Lotus/Types/Game/KubrowPet/GuardKubrowPetPowerSuit", + "XP": 2079583 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Bows/PrimeHuntingBow", + "XP": 19125311 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Pistols/GrnTorpedoPistol/GrnTorpedoPistol", + "XP": 25516218 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Bows/StalkerBow", + "XP": 3003562 + }, + { + "ItemType": "/Lotus/Powersuits/Berserker/Berserker", + "XP": 9023327 + }, + { + "ItemType": "/Lotus/Types/Game/KubrowPet/HunterKubrowPetPowerSuit", + "XP": 32909399 + }, + { + "ItemType": "/Lotus/Powersuits/Volt/VoltPrime", + "XP": 19684359 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Pistols/WraithTwinVipers/WraithTwinVipers", + "XP": 7142999 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/StalkerTwo/StalkerTwoSmallSword", + "XP": 578419 + }, + { + "ItemType": "/Lotus/Powersuits/Dragon/Dragon", + "XP": 25433029 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelPowersuits/ShadePowerSuit", + "XP": 6259475 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelWeapons/BurstLaserPistol", + "XP": 5016343 + }, + { + "ItemType": "/Lotus/Powersuits/Archwing/StealthJetPack/StealthJetPack", + "XP": 6576510 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Polearms/PrimePolearmWeapon", + "XP": 1024014 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelPowersuits/PrimeCarrierPowerSuit", + "XP": 150829814 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelWeapons/PrimeSentShotgun", + "XP": 151516156 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/PrimeLex/PrimeLex", + "XP": 22591322 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Rifle/SemiAutoRifle", + "XP": 349707 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/PlasmaSword/PlasmaLongSword", + "XP": 516790 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelPowersuits/WyrmPowerSuit", + "XP": 305919 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelWeapons/LaserRifle", + "XP": 4967161 + }, + { + "ItemType": "/Lotus/Powersuits/Rhino/RhinoPrime", + "XP": 146227996 + }, + { + "ItemType": "/Lotus/Powersuits/Necro/Necro", + "XP": 2844033 + }, + { + "ItemType": "/Lotus/Powersuits/Loki/Loki", + "XP": 1393433 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/DrakeRifle/DrakeRifle", + "XP": 2078680 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Gauntlet/Gauntlet", + "XP": 1279866 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/PrimeVasto/PrimeVastoPistol", + "XP": 1103709 + }, + { + "ItemType": "/Lotus/Weapons/ClanTech/Chemical/RocketLauncher", + "XP": 2162036 + }, + { + "ItemType": "/Lotus/Powersuits/Sandman/Sandman", + "XP": 11733378 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/LongGuns/CrpBFG/CrpBFG", + "XP": 8980965 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/DualShortSword/DualShortSword", + "XP": 68849 + }, + { + "ItemType": "/Lotus/Powersuits/Frost/Frost", + "XP": 8862840 + }, + { + "ItemType": "/Lotus/Weapons/ClanTech/Energy/DeraVandal", + "XP": 1623494 + }, + { + "ItemType": "/Lotus/Weapons/Syndicates/SteelMeridian/Pistols/SMMarelok", + "XP": 13289477 + }, + { + "ItemType": "/Lotus/Weapons/MK1Series/MK1Strun", + "XP": 30886 + }, + { + "ItemType": "/Lotus/Powersuits/Mag/Mag", + "XP": 1011970 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/PrimeBurston/PrimeBurston", + "XP": 5496960 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/KatanaAndWakizashi/Katana", + "XP": 121139 + }, + { + "ItemType": "/Lotus/Powersuits/Trinity/TrinityPrime", + "XP": 5441135 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Rifle/TennoSniperRifle", + "XP": 473030 + }, + { + "ItemType": "/Lotus/Powersuits/MonkeyKing/MonkeyKing", + "XP": 4109172 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelPowersuits/MeleePetPowerSuit", + "XP": 24114066 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelWeapons/SentGlaiveWeapon", + "XP": 7547500 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Melee/GrineerJetPoweredPolearm/GrineerJetPolearm", + "XP": 49241947 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/LongGuns/GrineerFlakCannon/FlakCannon", + "XP": 859992 + }, + { + "ItemType": "/Lotus/Weapons/ClanTech/Chemical/FlameThrower", + "XP": 1859259 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Scythe/EtherScytheWeapon", + "XP": 14832 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/DarkSword/DarkSwordDaggerHybridWeapon", + "XP": 86103 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/StalkerTwo/StalkerTwoGreatSword", + "XP": 503636 + }, + { + "ItemType": "/Lotus/Powersuits/Magician/Magician", + "XP": 46910199 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/Pistols/CrpHandRL/CorpusHandRocketLauncher", + "XP": 745296 + }, + { + "ItemType": "/Lotus/Weapons/Syndicates/CephalonSuda/Pistols/CSDroidArray", + "XP": 453094 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Archwing/Melee/ArchHammer/ArchHammer", + "XP": 2040993 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Archwing/Primary/Railgun/ArchRailgun", + "XP": 4192779 + }, + { + "ItemType": "/Lotus/Powersuits/Archwing/PrimeJetPack/PrimeJetPack", + "XP": 980210 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Archwing/Melee/ArchScythe/ArchScythe", + "XP": 3221654 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Archwing/Primary/RepurposedGrineerAntiAircraftGun/ArchGRNAAGun", + "XP": 553015 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Axe/PrimeScindo/PrimeScindoWeapon", + "XP": 11955589 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/PrimeSoma/PrimeSomaRifle", + "XP": 11082941 + }, + { + "ItemType": "/Lotus/Powersuits/Harlequin/Harlequin", + "XP": 5008008 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Gunblade/TnoGunblade", + "XP": 5460275 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Melee/GrineerTylAxeAndBoar/RegorAxeShield", + "XP": 2495430 + }, + { + "ItemType": "/Lotus/Powersuits/Mag/MagPrime", + "XP": 20781877 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/SwordsAndBoards/MeleeContestWinnerOne/TennoSwordShield", + "XP": 972623 + }, + { + "ItemType": "/Lotus/Powersuits/Nezha/Nezha", + "XP": 1153927 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Gauntlet/BrawlerKnuckles/BrawlerKnuckles", + "XP": 1074423 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/Magnum/Magnum", + "XP": 147246 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Akimbo/DualMagnus", + "XP": 555843 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/Pistols/CorpusHandShotgun/CorpusHandCannon", + "XP": 466320 + }, + { + "ItemType": "/Lotus/Types/Game/KubrowPet/AdventurerKubrowPetPowerSuit", + "XP": 2386967 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Axe/DualAxeWeapon", + "XP": 25108 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Melee/GrnDualFireAxe/GrnDualFireAxe", + "XP": 65603 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/SundialGun/SundialPistol", + "XP": 520723 + }, + { + "ItemType": "/Lotus/Weapons/Syndicates/RedVeil/Pistols/RVBallistica", + "XP": 1033326 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/GrineerPistol/GrnScopedPistolPlayer", + "XP": 452887 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/WraithLatron/WraithLatron", + "XP": 557763 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/LongGuns/GrineerSniperRifle/GrnSniperRifle", + "XP": 466980 + }, + { + "ItemType": "/Lotus/Powersuits/Ninja/AshPrime", + "XP": 79978509 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Dagger/DarkDagger", + "XP": 530746 + }, + { + "ItemType": "/Lotus/Weapons/Cephalon/Melee/Hammer/CephHammerWeapon", + "XP": 1873465 + }, + { + "ItemType": "/Lotus/Weapons/VoidTrader/PrismaSkana", + "XP": 636928 + }, + { + "ItemType": "/Lotus/Powersuits/Fairy/Fairy", + "XP": 2798396 + }, + { + "ItemType": "/Lotus/Weapons/Syndicates/SteelMeridian/LongGuns/SMHek", + "XP": 4317280 + }, + { + "ItemType": "/Lotus/Powersuits/Jade/NyxPrime", + "XP": 4194043 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Melee/GrineerMachetteAndCleaver/DualCleaverWeapon", + "XP": 308581 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Glaives/LightGlaive/LightGlaiveWeapon", + "XP": 178740 + }, + { + "ItemType": "/Lotus/Weapons/Syndicates/RedVeil/Bows/RVCernos", + "XP": 7260579 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/PrimeVectis/PrimeVectisRifle", + "XP": 9566805 + }, + { + "ItemType": "/Lotus/Types/Game/KubrowPet/RetrieverKubrowPetPowerSuit", + "XP": 1307569 + }, + { + "ItemType": "/Lotus/Powersuits/Ranger/Ranger", + "XP": 9034674 + }, + { + "ItemType": "/Lotus/Powersuits/Archwing/DemolitionJetPack/DemolitionJetPack", + "XP": 5547328 + }, + { + "ItemType": "/Lotus/Weapons/Syndicates/RedVeil/Melee/RVDarkDagger", + "XP": 12168666 + }, + { + "ItemType": "/Lotus/Types/Game/KubrowPet/FurtiveKubrowPetPowerSuit", + "XP": 19536747 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/PrimeTigris/PrimeTigris", + "XP": 41320409 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/LongGuns/GrnGrenadeLauncher/GrnGrenadeLauncher", + "XP": 5303981 + }, + { + "ItemType": "/Lotus/Powersuits/Banshee/Banshee", + "XP": 916218 + }, + { + "ItemType": "/Lotus/Powersuits/Saryn/SarynPrime", + "XP": 29842525 + }, + { + "ItemType": "/Lotus/Powersuits/Cowgirl/Cowgirl", + "XP": 5762332 + }, + { + "ItemType": "/Lotus/Powersuits/AntiMatter/NovaPrime", + "XP": 14486974 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Scythe/StalkerScytheWeapon", + "XP": 1713419 + }, + { + "ItemType": "/Lotus/Weapons/Syndicates/SteelMeridian/Melee/SMSydon", + "XP": 610216 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/GreatSword/TennoGreatSword", + "XP": 176175 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/PrimeGalatine/PrimeGalatine", + "XP": 94413723 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/ThrowingWeapons/LiDagger/LiDagger", + "XP": 984790 + }, + { + "ItemType": "/Lotus/Powersuits/Trapper/TrapperPrime", + "XP": 3286875 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/PrimeFragor/PrimeFragor", + "XP": 2141216 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Melee/GrnQueenSceptre/GrnQueenSceptreWeapon", + "XP": 468615 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/ThrowingWeapons/StalkerKunai", + "XP": 703238 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Glaives/TeshinGlaive/TnTeshinGlaiveWep", + "XP": 1504993 + }, + { + "ItemType": "/Lotus/Powersuits/Necro/NekrosPrime", + "XP": 21949837 + }, + { + "ItemType": "/Lotus/Powersuits/Brawler/Brawler", + "XP": 1893838 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/Pistols/CrpElectroMag/CrpElectroMag", + "XP": 1510426 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/LongGuns/GrnCannon/GrnCannonWeapon", + "XP": 1619882 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Claws/TennoClaws", + "XP": 452408 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Nunchaku/Nunchaku/Nunchaku", + "XP": 68150 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Pistols/GrnQueenGuardDualPistol/GrnQueenGuardDualPistols", + "XP": 1869174 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/PersianMachete/DjinnMachete", + "XP": 547148 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelPowersuits/GubberPowerSuit", + "XP": 4960786 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelWeapons/SentBioWeapon", + "XP": 3434521 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/PrimeAkstiletto/PrimeAkstiletto", + "XP": 77334171 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Shotgun/PrimeBoar", + "XP": 475640 + }, + { + "ItemType": "/Lotus/Weapons/VoidTrader/PrismaGrakata", + "XP": 500225 + }, + { + "ItemType": "/Lotus/Powersuits/Archwing/SupportJetPack/SupportJetPack", + "XP": 1006846 + }, + { + "ItemType": "/Lotus/Weapons/Syndicates/CephalonSuda/LongGuns/CSSimulor", + "XP": 11338987 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Scythe/ReaperWeapon", + "XP": 1250763 + }, + { + "ItemType": "/Lotus/Powersuits/YinYang/YinYang", + "XP": 23782936 + }, + { + "ItemType": "/Lotus/Types/Game/CatbrowPet/MirrorCatbrowPetPowerSuit", + "XP": 6907338 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Rifle/LatronPrime", + "XP": 1060275 + }, + { + "ItemType": "/Lotus/Powersuits/Berserker/ValkyrPrime", + "XP": 10068726 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Bows/PrimeCernos/PrimeCernos", + "XP": 751744 + }, + { + "ItemType": "/Lotus/Powersuits/Tengu/Tengu", + "XP": 1847309 + }, + { + "ItemType": "/Lotus/Powersuits/Ember/EmberPrime", + "XP": 11131619 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/LongGuns/CrpFreezeRay/CrpFreezeRayRifle", + "XP": 577636 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/LongGuns/ChainLightningGun/ChainLightningRifle", + "XP": 497040 + }, + { + "ItemType": "/Lotus/Weapons/ClanTech/Bio/BioWeapon", + "XP": 494482 + }, + { + "ItemType": "/Lotus/Powersuits/Infestation/Infestation", + "XP": 91341847 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Glaives/PrimeGlaive/PrimeGlaiveWeapon", + "XP": 7797958 + }, + { + "ItemType": "/Lotus/Weapons/Infested/Melee/InfWFAccompanyingSparring/InfestedKogake", + "XP": 44154798 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/PrimeSicarus/PrimeSicarusPistol", + "XP": 802837 + }, + { + "ItemType": "/Lotus/Types/Game/KubrowPet/ChargerKubrowPetPowerSuit", + "XP": 75472052 + }, + { + "ItemType": "/Lotus/Weapons/Infested/Melee/Swords/Mios/Mios", + "XP": 500319 + }, + { + "ItemType": "/Lotus/Powersuits/Frost/FrostPrime", + "XP": 2308473 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/Melee/CrpTonfa/CrpTonfa", + "XP": 914104 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Shotgun/DoubleBarrelShotgun", + "XP": 538489 + }, + { + "ItemType": "/Lotus/Weapons/Syndicates/PerrinSequence/LongGuns/PSPenta", + "XP": 3913589 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Pistols/GrineerHandShotgun/GrineerHandCannon", + "XP": 861094 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/LongGuns/CrpShockRifle/QuantaVandal", + "XP": 1448580 + }, + { + "ItemType": "/Lotus/Weapons/Infested/Pistols/InfVomitGun/InfVomitGunWep", + "XP": 473790 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Akimbo/AkLexPrimePistols", + "XP": 3271987 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Pistols/GrineerMicrowavegun/GrnMicrowavePistol", + "XP": 12696157 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/PrimeVenKa/PrimeVenkaClaws", + "XP": 3304732 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelPowersuits/TnSentinelCrossPowerSuit", + "XP": 1052020 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelWeapons/Gremlin", + "XP": 996230 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/Pistols/CrpAirPistol/CrpAirPistolArray", + "XP": 455316 + }, + { + "ItemType": "/Lotus/Powersuits/Pirate/Pirate", + "XP": 4860668 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/TnoRapier/TnoRapier", + "XP": 451140 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistol/Pistol", + "XP": 1051304 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistol/CrossBow", + "XP": 510873 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Pistols/GrineerCrossbow/GrineerGooGun", + "XP": 544753 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Akimbo/AkimboBolto", + "XP": 101674 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/TigrisRedeemerSetPistol/TnoBladedPistols", + "XP": 592791 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/TennoSai/TennoSais", + "XP": 934263 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/TnoLeverAction/TnoLeverActionRifle", + "XP": 1195660 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/SunDialAxe/SundialAxeWeapon", + "XP": 4173016 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/ThrowingWeapons/PrimeThrowingStar/PrimeHikou", + "XP": 3520130 + }, + { + "ItemType": "/Lotus/Types/Game/CatbrowPet/CheshireCatbrowPetPowerSuit", + "XP": 28118628 + }, + { + "ItemType": "/Lotus/Weapons/Syndicates/ArbitersOfHexis/Melee/AHBoltace", + "XP": 595876 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Maces/PaladinMace/PaladinMaceWeapon", + "XP": 27784 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Hammer/IceHammer/IceHammer", + "XP": 818616 + }, + { + "ItemType": "/Lotus/Weapons/ClanTech/Chemical/FlameThrowerWraith", + "XP": 8284895 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/LongGuns/GrnFlameSpear/GrnFlameSpear", + "XP": 904533 + }, + { + "ItemType": "/Lotus/Weapons/ClanTech/Energy/Railgun", + "XP": 660764 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Rifle/BratonPrime", + "XP": 709441 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/LongGuns/Spears/Railgun/CorpusRailgun", + "XP": 625989 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/DexFuris/DexFuris", + "XP": 467684 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/DexTheSecond/DexTheSecond", + "XP": 541890 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/DexTheThird/DexTheThird", + "XP": 476324 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Rifle/VandalSniperRifle", + "XP": 501623 + }, + { + "ItemType": "/Lotus/Powersuits/Bard/Bard", + "XP": 1100878 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/TnBardPistol/TnBardPistolGun", + "XP": 1180879 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/TnBardRifle/TnBardRifle", + "XP": 504244 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelPowersuits/PrimeHeliosPowerSuit", + "XP": 369021326 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelWeapons/DeconstructorPrime/PrimeHeliosGlaiveWeapon", + "XP": 217025463 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/LongGuns/GrineerSniperRifle/VulkarWraith", + "XP": 1828118 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelPowersuits/PrismaShadePowerSuit", + "XP": 4427962 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelWeapons/PrismaBurstLaserPistol", + "XP": 1941332 + }, + { + "ItemType": "/Lotus/Weapons/ClanTech/Energy/CrpHeavyRifle", + "XP": 74459 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/Pistols/CrpChargeGun/CrpChargeGun", + "XP": 518913 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/LongGuns/Machinegun/SupraVandal", + "XP": 4633627 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/LongGuns/WraithGorgon/WraithGorgon", + "XP": 618251 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Archwing/Melee/Archswordandshield/ArchSwordShield", + "XP": 4027274 + }, + { + "ItemType": "/Lotus/Weapons/Infested/Melee/InfEmbolistScythe/InfestedScythe", + "XP": 737242 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/AllNew1hSG/AllNew1hSG", + "XP": 15050900 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Melee/GrineerCombatKnife/GrineerCombatKnife", + "XP": 1276333 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Melee/GrineerMachetteAndCleaver/Machete", + "XP": 138024 + }, + { + "ItemType": "/Lotus/Powersuits/Banshee/BansheePrime", + "XP": 3389743 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/ThreeLeaf/ThreeLeaf", + "XP": 1250725 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Archwing/Primary/FoldingMachineGun/ArchMachineGunVandal", + "XP": 1768069 + }, + { + "ItemType": "/Lotus/Powersuits/Priest/Priest", + "XP": 13043055 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Melee/GrineerMachetteAndCleaver/WraithMacheteWeapon", + "XP": 622251 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/TnPriestPistolScope/TnPriestPistolWeapon", + "XP": 590638 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/TnPriestSpear/TnPriestSpearGun", + "XP": 3674805 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/PrimeBoltor/PrimeBoltor", + "XP": 2741870 + }, + { + "ItemType": "/Lotus/Weapons/VoidTrader/VTDetron", + "XP": 3935678 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Gauntlet/PrimeAnkyros/PrimeAnkyros", + "XP": 3752373 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/PrimeSilvaAegis/PrimeSilvaAegis", + "XP": 5317849 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/CronusSword/PrimeCronusLongSword", + "XP": 1634521 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/TnGuandoPistol/TnGuandoPistolGun", + "XP": 2897578 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Polearms/TnGuandaoPolearm/TnGuandaoPolearmWeapon", + "XP": 11007936 + }, + { + "ItemType": "/Lotus/Powersuits/Ninja/Ninja", + "XP": 906004 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/Melee/Whip/CorpusWhipWeapon", + "XP": 843007 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Melee/GrnKusarigama/GrnKusarigamaWeapon", + "XP": 11598120 + }, + { + "ItemType": "/Lotus/Powersuits/Jade/Jade", + "XP": 908616 + }, + { + "ItemType": "/Lotus/Powersuits/AntiMatter/Anti", + "XP": 953050 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Melee/GrineerWhip/GrineerWhip", + "XP": 486164 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/TnoPrmryXbow/TnoPrmryXbowWeapon", + "XP": 487328 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/TennoUzi/TennoUzi", + "XP": 475707 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Scythe/ParisScythe/ParisScythe", + "XP": 570756 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Shotgun/FullAutoShotgun", + "XP": 482946 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/ThrowingWeapons/StickyBomb/StickyBombs", + "XP": 484392 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/Melee/KickAndPunch/KickPunchWeapon", + "XP": 479879 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Bows/AsymetricalBow/AsymetricalBow", + "XP": 581468 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/ThrowingWeapons/U18ThrowingKnives/U18throwingknives", + "XP": 696018 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Glaives/Boomerang/BoomerangWeapon", + "XP": 668862 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Rifle/HeavyRifle", + "XP": 525389 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/SawnOffShotgun/TennoHandShotgun", + "XP": 516191 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Rifle/TennoAR", + "XP": 161829 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/GrineerPistol/GrineerLightPistol", + "XP": 756185 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/Bow/Longbow/CrpBow", + "XP": 11230054 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/Melee/KickAndPunch/PrismaObex", + "XP": 492734 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/HarlequinGun/HarlequinPistols", + "XP": 542044 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Melee/GrineerHalberd/GrnHalberd", + "XP": 589544 + }, + { + "ItemType": "/Lotus/Powersuits/Volt/Volt", + "XP": 1031882 + }, + { + "ItemType": "/Lotus/Powersuits/Trinity/Trinity", + "XP": 900014 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Staff/GrnStaff", + "XP": 463224 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Staff/Staff", + "XP": 505556 + }, + { + "ItemType": "/Lotus/Weapons/MK1Series/MK1Paris", + "XP": 484738 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Archwing/Melee/GrnArchHand/GrnArchHandWeapon", + "XP": 471016 + }, + { + "ItemType": "/Lotus/Weapons/Infested/LongGuns/InfWFAccompanyingPri/InfestedBurstRifle", + "XP": 1367574 + }, + { + "ItemType": "/Lotus/Powersuits/Paladin/PaladinPrime", + "XP": 1025203 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Pistols/GrnKohmPistol/GrnKohmPistol", + "XP": 1204246 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Rifle/Rifle", + "XP": 32151 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/Melee/Hammer/CorpusHammerWeapon", + "XP": 18133217 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/FiveShotSniper/FiveShotSniper", + "XP": 465734 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/LongGuns/CrpShotgun/CrpShotgun", + "XP": 94571837 + }, + { + "ItemType": "/Lotus/Weapons/Infested/Pistols/InfestedDartPistol/InfestedDartPistol", + "XP": 825422 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/Pistols/SniperPistol/CrpScopeGun", + "XP": 4529957 + }, + { + "ItemType": "/Lotus/Powersuits/Ember/Ember", + "XP": 911796 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/PrimeSybaris/PrimeSybarisRifle", + "XP": 455033 + }, + { + "ItemType": "/Lotus/Weapons/Infested/Pistols/InfProximityStars/InfProximityStars", + "XP": 1189341 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelPowersuits/ArcDronePowerSuit", + "XP": 1149633 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelWeapons/SentElecRailgun", + "XP": 1330473 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/LoginPrimary/SundialRifle", + "XP": 470998 + }, + { + "ItemType": "/Lotus/Powersuits/Trapper/Trapper", + "XP": 911700 + }, + { + "ItemType": "/Lotus/Powersuits/Pirate/HydroidPrime", + "XP": 3703980 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/PrimeNamiSkyla/PrimeNamiSkyla", + "XP": 888121 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Akimbo/DualVastos", + "XP": 52439 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Melee/GrnEgyptSwd/GrnEgyptSwdWeapon", + "XP": 3818160 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/TnGlassShotgun/TnGlassShotgunGun", + "XP": 675605 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/ThrowingWeapons/GlassKunai/GlassKunaiWeapon", + "XP": 630703 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Melee/GrnEgyptSwd/DualGrnEgyptSwdWeapon", + "XP": 1793774 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/LongGuns/LaserAimRifle/LaserAimRifle", + "XP": 476966 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Hammer/GlassHammer/GlassHammer", + "XP": 472927 + }, + { + "ItemType": "/Lotus/Powersuits/Glass/Glass", + "XP": 978418 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/PrimeBallistica/PrimeBallistica", + "XP": 512047 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/PrimeDualKamas/PrimeDualKamas", + "XP": 486908 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/LongGuns/CorpusUMP/CorpusUMP", + "XP": 608358 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/TnSMG/TnSMGWeapon", + "XP": 783024 + }, + { + "ItemType": "/Lotus/Weapons/Syndicates/CephalonSuda/Melee/CSHeliocor", + "XP": 453716 + }, + { + "ItemType": "/Lotus/Weapons/Syndicates/CephalonSuda/Pistols/CSSynoidGammacor", + "XP": 1419363 + }, + { + "ItemType": "/Lotus/Weapons/Sentients/OperatorAmplifiers/Set1/Barrel/SentAmpSet1BarrelPartC", + "XP": 3497599 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Polearms/TnHalberdPolearm/TnHalberdPolearmWeapon", + "XP": 489016 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/LongGuns/GrnFourBarrelRifle/GrnFourBarrelRifleWeapon", + "XP": 468129 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/TnHeavyShotgun/TnHeavyShotgunGun", + "XP": 4038376 + }, + { + "ItemType": "/Lotus/Powersuits/Saryn/Saryn", + "XP": 950236 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Pistols/GrnUzi/GrnUziWeapon", + "XP": 869003 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistol/HandShotGun", + "XP": 253898 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Warfan/WarfanWeapon", + "XP": 477531 + }, + { + "ItemType": "/Lotus/Powersuits/Harlequin/MiragePrime", + "XP": 4514250 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelPowersuits/PrimeWyrmPowerSuit", + "XP": 2025679 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelWeapons/PrimeLaserRifle", + "XP": 4077175 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/LongGuns/GrineerLeverActionRifle/GLARifle", + "XP": 529924 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/LongSword/LongSword", + "XP": 518967 + }, + { + "ItemType": "/Lotus/Powersuits/Loki/LokiPrime", + "XP": 1207729 + }, + { + "ItemType": "/Lotus/Weapons/Ostron/Melee/ModularMeleeInfested/Tips/InfestedTipTwo", + "XP": 486468 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/SwordsAndBoards/SundialSwordBoard/SundialBoardSword", + "XP": 768400 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/LongGuns/BurstRifle/GrnBurstRifle", + "XP": 528119 + }, + { + "ItemType": "/Lotus/Powersuits/Khora/Khora", + "XP": 2316047 + }, + { + "ItemType": "/Lotus/Powersuits/Khora/Kavat/KhoraKavatPowerSuit", + "XP": 1365599 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/LongGuns/GrineerAssaultRifle/GrnAssaultRifle", + "XP": 540939 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Pistols/GrineerLeverActionPistol/GLAPistol", + "XP": 1208217 + }, + { + "ItemType": "/Lotus/Powersuits/Excalibur/ExcaliburUmbra", + "XP": 2582454 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/UmbraKatana/UmbraKatana", + "XP": 503144 + }, + { + "ItemType": "/Lotus/Powersuits/Tengu/ZephyrPrime", + "XP": 957508 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/DoubleBarrelShotgun/TennoDoubleBarrelShotgun", + "XP": 850477 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/GreatSword/GreatSword", + "XP": 474576 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/TnRevolverRifle/TnRevolverRifleGun", + "XP": 557026 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Shotgun/QuadShotgun", + "XP": 480006 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/ThrowingWeapons/TennoStars", + "XP": 621872 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/PrimeTiberon/PrimeTiberonRifle", + "XP": 532455 + }, + { + "ItemType": "/Lotus/Powersuits/Revenant/Revenant", + "XP": 3765735 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/ConclaveLeverPistol/ConclaveLeverPistol", + "XP": 537870 + }, + { + "ItemType": "/Lotus/Weapons/Sentients/OperatorAmplifiers/Set1/Barrel/SentAmpSet1BarrelPartA", + "XP": 459553 + }, + { + "ItemType": "/Lotus/Weapons/Orokin/BallasSword/BallasSwordWeapon", + "XP": 578000 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/ThrowingWeapons/Kunai", + "XP": 532479 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/BrassKnuckles/BrassKnuckles", + "XP": 506260 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/LongGuns/CrpFreezeRay/Vandal/CrpFreezeRayVandalRifle", + "XP": 524746 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/Pistols/CorpusModularPistol/Vandal/CrpLaserPistolVandal", + "XP": 690872 + }, + { + "ItemType": "/Lotus/Powersuits/Wisp/Wisp", + "XP": 929605 + }, + { + "ItemType": "/Lotus/Powersuits/Magician/LimboPrime", + "XP": 1989393 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/SapientPistol/SapientPistol", + "XP": 9816193 + }, + { + "ItemType": "/Lotus/Powersuits/Runner/Runner", + "XP": 21010779 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/SapientPrimary/SapientPrimaryWeapon", + "XP": 2573495 + }, + { + "ItemType": "/Lotus/Weapons/Syndicates/PerrinSequence/Melee/PSLecta", + "XP": 2080161 + }, + { + "ItemType": "/Lotus/Types/Game/CatbrowPet/VampireCatbrowPetPowerSuit", + "XP": 3203163 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/RubicoPrime/RubicoPrimeWeapon", + "XP": 1713501 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/TnTwoHandedKatana/TnTwoHandedKatana", + "XP": 1443976 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Archwing/Primary/TnShieldframeArchGun/TnShieldFrameArchGun", + "XP": 3686794 + }, + { + "ItemType": "/Lotus/Powersuits/Brawler/AtlasPrime", + "XP": 2090932 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelPowersuits/PrimeDethCubePowerSuit", + "XP": 11298186 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelWeapons/PrimeDethMachineRifle", + "XP": 5390021 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/PrimeTekko/PrimeTekko", + "XP": 1689897 + }, + { + "ItemType": "/Lotus/Powersuits/MonkeyKing/WukongPrime", + "XP": 1549294 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Rifle/SniperRifle", + "XP": 600777 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/PrimeGram/PrimeGram", + "XP": 33032416 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Axe/AxeWeapon", + "XP": 461765 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/KuvaLich/LongGuns/Kohm/KuvaKohm", + "XP": 1693620 + }, + { + "ItemType": "/Lotus/Powersuits/Dragon/ChromaPrime", + "XP": 36869209 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Archwing/Primary/ArchBurstGun/ArchBurstGun", + "XP": 68263 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/KuvaLich/LongGuns/Karak/KuvaKarak", + "XP": 450000 + }, + { + "ItemType": "/Lotus/Powersuits/Devourer/Devourer", + "XP": 1759967 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Bows/GrnBow/GrnBowWeapon", + "XP": 1316263 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Melee/GrnKuvaLichScythe/GrnKuvaLichScytheWeapon", + "XP": 578000 + }, + { + "ItemType": "/Lotus/Weapons/Sentients/Shedu/SheduHeavyWeapon", + "XP": 740650 + }, + { + "ItemType": "/Lotus/Powersuits/YinYang/EquinoxPrime", + "XP": 1240085 + }, + { + "ItemType": "/Lotus/Weapons/Sentients/SentRifleNewWar/SentRifleNewWarGun", + "XP": 1740960 + }, + { + "ItemType": "/Lotus/Powersuits/Cowgirl/MesaPrime", + "XP": 1062643 + }, + { + "ItemType": "/Lotus/Types/Friendly/Pets/MoaPets/MoaPetParts/MoaPetHeadPara", + "XP": 1843144 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/DualKamas/SingleKama", + "XP": 487568 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/Melee/Glaive/CrpGhostCatcherGlaive/CrpGhostCatcherGlaive", + "XP": 2019511 + }, + { + "ItemType": "/Lotus/Powersuits/Garuda/Garuda", + "XP": 993260 + }, + { + "ItemType": "/Lotus/Powersuits/IronFrame/IronFrame", + "XP": 10335030 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Gunblade/RedeemerPrime/RedeemerPrimeWep", + "XP": 480648 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/HeavyWeapons/GrnHeavyGrenadeLauncher", + "XP": 578000 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/TnJetTurbine/TnJetTurbinePistolWeapon", + "XP": 1353334 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/TnRailjackGreatKatana/TnRailJackGreatKatanaWeapon", + "XP": 543936 + }, + { + "ItemType": "/Lotus/Powersuits/EntratiMech/NechroTech", + "XP": 9946396 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/ThrowingWeapons/PrimeLiDagger/PrimeLiDagger", + "XP": 2068944 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/PrimeStradavar/PrimeStradavarGun", + "XP": 904091 + }, + { + "ItemType": "/Lotus/Powersuits/Pacifist/Pacifist", + "XP": 928567 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/SwordsAndBoards/PacifistShieldAndSword/PacifistShieldSword", + "XP": 775954 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Archwing/Primary/ThanoTechArchLongGun/ThanoTechLongGun", + "XP": 24715616 + }, + { + "ItemType": "/Lotus/Powersuits/Alchemist/Alchemist", + "XP": 5133162 + }, + { + "ItemType": "/Lotus/Powersuits/EntratiMech/ThanoTech", + "XP": 900000 + }, + { + "ItemType": "/Lotus/Types/Friendly/Pets/MoaPets/MoaPetComponents/HextraWeapon", + "XP": 59993 + }, + { + "ItemType": "/Lotus/Types/Sentinels/SentinelPowersuits/RadarPowerSuit", + "XP": 60448 + }, + { + "ItemType": "/Lotus/Types/Friendly/Pets/CreaturePets/PharaohPredatorKubrowPetPowerSuit", + "XP": 7211488 + }, + { + "ItemType": "/Lotus/Powersuits/BrokenFrame/BrokenFrame", + "XP": 1057974 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/GarudaCrossbow/GarudaCrossbow", + "XP": 570524 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/LongGuns/CrpShapeBlast/CrpShapeBlastShotgun", + "XP": 1388691 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Swords/KrisDagger/KrisDagger", + "XP": 1895644 + }, + { + "ItemType": "/Lotus/Powersuits/Fairy/TitaniaPrime", + "XP": 954262 + }, + { + "ItemType": "/Lotus/Types/Game/CrewShip/RailJack/DefaultHarness", + "XP": 2713430 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/LongGuns/GrnSpark/GrnSparkRifle", + "XP": 758015 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/TnWispRifle/TnWispRifle", + "XP": 768526 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Melee/GrnBoomerang/GrnBoomerang", + "XP": 659691 + }, + { + "ItemType": "/Lotus/Weapons/Infested/LongGuns/InfCrpShockSwarm/InfCrpShockSwarmRifle", + "XP": 519188 + }, + { + "ItemType": "/Lotus/Weapons/Infested/LongGuns/QuantaFullyInfested/InfQuantaRifle", + "XP": 494051 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Akimbo/AkimboViperPistols", + "XP": 892767 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Melee/GunBlade/GrnGunBlade/GrnGunblade", + "XP": 790503 + }, + { + "ItemType": "/Lotus/Types/Vehicles/Hoverboard/HoverboardParts/PartComponents/HoverboardSolarisA/HoverboardSolarisADeck", + "XP": 406742 + }, + { + "ItemType": "/Lotus/Powersuits/Odalisk/Odalisk", + "XP": 912217 + }, + { + "ItemType": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetMeleeWeaponIS", + "XP": 6217563 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/Pistols/CrpBriefcaseAkimbo/CrpBriefcaseAkimboPistol", + "XP": 722000 + }, + { + "ItemType": "/Lotus/Powersuits/Wraith/Wraith", + "XP": 1702627 + }, + { + "ItemType": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetParts/ZanukaPetPartHeadB", + "XP": 14742344 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/Pistols/CrpIgniterPistol/CrpIgniterPistol", + "XP": 450000 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/BoardExec/Secondary/CrpBECycron/CrpBECycron", + "XP": 450000 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/BoardExec/Secondary/CrpBEDetron/CrpBEDetron", + "XP": 450000 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/TnOdaliskSmg/TnOdaliskSmgPistol", + "XP": 514305 + }, + { + "ItemType": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetMeleeWeaponPS", + "XP": 595716 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/BoardExec/Primary/CrpBEArcaPlasmor/CrpBEArcaPlasmor", + "XP": 722000 + }, + { + "ItemType": "/Lotus/Powersuits/Yareli/Yareli", + "XP": 1069956 + }, + { + "ItemType": "/Lotus/Powersuits/Ranger/IvaraPrime", + "XP": 925777 + }, + { + "ItemType": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetMeleeWeaponIP", + "XP": 10250134 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Pistols/QuillDartgun/QuillDartGunWeapon", + "XP": 893993 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/Melee/GrnGhoulSaw/GrnGhoulSawPlayer", + "XP": 549644 + }, + { + "ItemType": "/Lotus/Weapons/Grineer/LongGuns/GrineerAssaultRifle/TwinGrakatas", + "XP": 785691 + }, + { + "ItemType": "/Lotus/Weapons/Operator/Pistols/DrifterPistol/DrifterPistolPlayerWeapon", + "XP": 27239 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/OperatorAmplifiers/Set1/Barrel/CorpAmpSet1BarrelPartB", + "XP": 1580120 + }, + { + "ItemType": "/Lotus/Powersuits/Hoplite/Hoplite", + "XP": 1116258 + }, + { + "ItemType": "/Lotus/Powersuits/Werewolf/Werewolf", + "XP": 960236 + }, + { + "ItemType": "/Lotus/Powersuits/Geode/Geode", + "XP": 1357115 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Archwing/Melee/ExaltedArchScythe/ExaltedAWScytheWeapon", + "XP": 1237586 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/TnoLotusPodShotgun/TnoLotusPodShotgun", + "XP": 1398150 + }, + { + "ItemType": "/Lotus/Weapons/Operator/Melee/DrifterTazer/DrifterTazerPlayerWep", + "XP": 420634 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Bows/Omicrus/OmicrusPlayerWep", + "XP": 464724 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/RevenantShotgun/RevenantShotgun", + "XP": 463649 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/LongGuns/TnQuadSniper/TnQuadSniper", + "XP": 1135064 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Melee/Axe/WolfFrameAxeWeapon", + "XP": 867495 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Grimoire/TnGrimoire", + "XP": 3995747 + }, + { + "ItemType": "/Lotus/Weapons/Tenno/Zariman/LongGuns/PumpShotgun/ZarimanPumpShotgun", + "XP": 884645 + }, + { + "ItemType": "/Lotus/Weapons/Corpus/BoardExec/Primary/CrpBETetra/CrpBETetra", + "XP": 450000 + }, + { + "ItemType": "/Lotus/Powersuits/Pagemaster/Pagemaster", + "XP": 1237772 + } + ] + }, + "GuildId": { + "$oid": "56a6ba0a06c56f3fbb7b2d55" + }, + "GuildName": "Project YoRHa#992", + "GuildTier": 1, + "GuildXp": 700500, + "GuildClass": 11, + "GuildEmblem": true, + "AllianceId": { + "$oid": "5e63d734cb0ed62b281a74b6" + }, + "PlayerSkills": { + "LPP_SPACE": 237891, + "LPS_PILOTING": 10, + "LPS_ENGINEERING": 9, + "LPS_GUNNERY": 9, + "LPS_TACTICAL": 8, + "LPS_COMMAND": 8, + "LPP_DRIFTER": 61000, + "LPS_DRIFT_RIDING": 2, + "LPS_DRIFT_COMBAT": 2, + "LPS_DRIFT_OPPORTUNITY": 2, + "LPS_DRIFT_ENDURANCE": 2 + }, + "ChallengeProgress": [ + { + "Name": "Earn1000000Credits", + "Progress": 1000000 + }, + { + "Name": "Earn100000Credits", + "Progress": 100000 + }, + { + "Name": "Earn10000Credits", + "Progress": 10000 + }, + { + "Name": "Earn1000Credits", + "Progress": 1000 + }, + { + "Name": "EarnCreditsHidden", + "Progress": 95556488 + }, + { + "Name": "NoWitnesses", + "Progress": 100 + }, + { + "Name": "Play100Hours", + "Progress": 360000 + }, + { + "Name": "Play10Hours", + "Progress": 36000 + }, + { + "Name": "Play2Hours", + "Progress": 7200 + }, + { + "Name": "PlayHoursHidden", + "Progress": 8634938 + }, + { + "Name": "Solve1000Ciphers", + "Progress": 1000 + }, + { + "Name": "Solve100Ciphers", + "Progress": 100 + }, + { + "Name": "Solve10Ciphers", + "Progress": 10 + }, + { + "Name": "Solve1Cipher", + "Progress": 1 + }, + { + "Name": "SolveCiphersHidden", + "Progress": 6657 + }, + { + "Name": "WeaponRank2", + "Progress": 1 + }, + { + "Name": "Find1000Mods", + "Progress": 1000 + }, + { + "Name": "Find100Mods", + "Progress": 100 + }, + { + "Name": "Find1Mod", + "Progress": 1 + }, + { + "Name": "Find20Mods", + "Progress": 20 + }, + { + "Name": "FindModsHidden", + "Progress": 107718 + }, + { + "Name": "WarframeRank2", + "Progress": 1 + }, + { + "Name": "ApplyMod", + "Progress": 1 + }, + { + "Name": "Swordsman", + "Progress": 10 + }, + { + "Name": "HatsOffToYou", + "Progress": 200 + }, + { + "Name": "Craft10Items", + "Progress": 10 + }, + { + "Name": "Craft1Item", + "Progress": 1 + }, + { + "Name": "Craft20Items", + "Progress": 20 + }, + { + "Name": "CraftItemsHidden", + "Progress": 2513 + }, + { + "Name": "Parry1000Shots", + "Progress": 1000 + }, + { + "Name": "Killer", + "Progress": 30 + }, + { + "Name": "SolveCipherUnder5Seconds", + "Progress": 1 + }, + { + "Name": "PlayerRank1", + "Progress": 1 + }, + { + "Name": "TreasureHunter", + "Progress": 1 + }, + { + "Name": "Kill100InMission", + "Progress": 1 + }, + { + "Name": "PoleWeaponMastery1", + "Progress": 3 + }, + { + "Name": "PoleWeaponProficiency1", + "Progress": 1 + }, + { + "Name": "SHOOT_PROJECTILE", + "Progress": 13333 + }, + { + "Name": "SpeedKill", + "Progress": 3 + }, + { + "Name": "Looter", + "Progress": 4 + }, + { + "Name": "RifleMastery1", + "Progress": 5 + }, + { + "Name": "RifleProficiency1", + "Progress": 1 + }, + { + "Name": "Hacker", + "Progress": 1 + }, + { + "Name": "TheCameraAdds100Pounds", + "Progress": 150 + }, + { + "Name": "ShurikenMastery1", + "Progress": 3 + }, + { + "Name": "ShurikenProficiency1", + "Progress": 1 + }, + { + "Name": "Power", + "Progress": 5 + }, + { + "Name": "Apply4Mods", + "Progress": 1 + }, + { + "Name": "FuseMods", + "Progress": 1 + }, + { + "Name": "CustomizeWarframeColor", + "Progress": 1 + }, + { + "Name": "BladeMastery1", + "Progress": 5 + }, + { + "Name": "BladeProficiency1", + "Progress": 1 + }, + { + "Name": "IntoTheVoid", + "Progress": 10 + }, + { + "Name": "ControlFreak", + "Progress": 1 + }, + { + "Name": "Revive1000Allies", + "Progress": 1000 + }, + { + "Name": "Revive100Allies", + "Progress": 100 + }, + { + "Name": "Revive10Allies", + "Progress": 10 + }, + { + "Name": "Revive1Ally", + "Progress": 1 + }, + { + "Name": "ReviveAlliesHidden", + "Progress": 6445 + }, + { + "Name": "Headhunter", + "Progress": 10 + }, + { + "Name": "RifleMastery2", + "Progress": 5 + }, + { + "Name": "RifleProficiency2", + "Progress": 1 + }, + { + "Name": "BladeMastery2", + "Progress": 5 + }, + { + "Name": "BladeProficiency2", + "Progress": 1 + }, + { + "Name": "DarkSectors", + "Progress": 5 + }, + { + "Name": "Mercenary", + "Progress": 100000 + }, + { + "Name": "ShurikenMastery2", + "Progress": 3 + }, + { + "Name": "ShurikenProficiency2", + "Progress": 1 + }, + { + "Name": "PlayerRank2", + "Progress": 1 + }, + { + "Name": "SaviourOfSedna", + "Progress": 1 + }, + { + "Name": "Alchemist", + "Progress": 10 + }, + { + "Name": "Sell10000Credits", + "Progress": 10000 + }, + { + "Name": "SellItem", + "Progress": 1 + }, + { + "Name": "SellItemsHidden", + "Progress": 19633442 + }, + { + "Name": "BladeMastery3", + "Progress": 5 + }, + { + "Name": "BladeProficiency3", + "Progress": 1 + }, + { + "Name": "RifleMastery3", + "Progress": 5 + }, + { + "Name": "RifleProficiency3", + "Progress": 1 + }, + { + "Name": "ShurikenMastery3", + "Progress": 3 + }, + { + "Name": "ShurikenProficiency3", + "Progress": 1 + }, + { + "Name": "Uber", + "Progress": 1 + }, + { + "Name": "Stealth", + "Progress": 10 + }, + { + "Name": "PistolMastery1", + "Progress": 5 + }, + { + "Name": "PistolProficiency1", + "Progress": 1 + }, + { + "Name": "SaviourOfVenus", + "Progress": 1 + }, + { + "Name": "PlayerRank3", + "Progress": 1 + }, + { + "Name": "SaviourOfJupiter", + "Progress": 1 + }, + { + "Name": "SaviourOfPhobos", + "Progress": 1 + }, + { + "Name": "SaviourOfEuropa", + "Progress": 1 + }, + { + "Name": "SaviourOfNeptune", + "Progress": 1 + }, + { + "Name": "PistolMastery2", + "Progress": 5 + }, + { + "Name": "PistolProficiency2", + "Progress": 1 + }, + { + "Name": "PistolMastery3", + "Progress": 5 + }, + { + "Name": "PistolProficiency3", + "Progress": 1 + }, + { + "Name": "RideTheWave", + "Progress": 1 + }, + { + "Name": "SaviourOfMercury", + "Progress": 1 + }, + { + "Name": "SaviourOfMars", + "Progress": 1 + }, + { + "Name": "WhatANightmare", + "Progress": 10 + }, + { + "Name": "PolarizeThis", + "Progress": 1 + }, + { + "Name": "DaggerMastery1", + "Progress": 3 + }, + { + "Name": "DaggerProficiency1", + "Progress": 1 + }, + { + "Name": "PolarizeThat", + "Progress": 1 + }, + { + "Name": "SaviourOfSaturn", + "Progress": 1 + }, + { + "Name": "KillPhorid", + "Progress": 1 + }, + { + "Name": "DaggerMastery2", + "Progress": 3 + }, + { + "Name": "DaggerProficiency2", + "Progress": 1 + }, + { + "Name": "DaggerMastery3", + "Progress": 3 + }, + { + "Name": "DaggerProficiency3", + "Progress": 1 + }, + { + "Name": "PlayerRank4", + "Progress": 1 + }, + { + "Name": "Own2Warframes", + "Progress": 1 + }, + { + "Name": "Own1Sentinel", + "Progress": 1 + }, + { + "Name": "SentinelMastery1", + "Progress": 3 + }, + { + "Name": "SentinelProficiency1", + "Progress": 1 + }, + { + "Name": "EggTimer", + "Progress": 1 + }, + { + "Name": "SentinelMastery2", + "Progress": 3 + }, + { + "Name": "SentinelProficiency2", + "Progress": 1 + }, + { + "Name": "SentinelMastery3", + "Progress": 3 + }, + { + "Name": "SentinelProficiency3", + "Progress": 1 + }, + { + "Name": "PlayerRank5", + "Progress": 1 + }, + { + "Name": "SaviourOfCeres", + "Progress": 1 + }, + { + "Name": "TennoAndHooch", + "Progress": 10 + }, + { + "Name": "BowMastery1", + "Progress": 2 + }, + { + "Name": "BowProficiency1", + "Progress": 1 + }, + { + "Name": "BowMastery2", + "Progress": 2 + }, + { + "Name": "BowProficiency2", + "Progress": 1 + }, + { + "Name": "BowMastery3", + "Progress": 2 + }, + { + "Name": "BowProficiency3", + "Progress": 1 + }, + { + "Name": "Rifleman", + "Progress": 30 + }, + { + "Name": "PlayerRank6", + "Progress": 1 + }, + { + "Name": "HiveFive", + "Progress": 5 + }, + { + "Name": "SyndicateNLScarfChallenge", + "Progress": 1 + }, + { + "Name": "TheSwordAlone", + "Progress": 10 + }, + { + "Name": "WithoutAHitch", + "Progress": 1 + }, + { + "Name": "PlayerRank7", + "Progress": 1 + }, + { + "Name": "SaviourOfPluto", + "Progress": 1 + }, + { + "Name": "SaviourOfUranus", + "Progress": 1 + }, + { + "Name": "SaviourOfEarth", + "Progress": 1 + }, + { + "Name": "PlayerRank8", + "Progress": 1 + }, + { + "Name": "MummyQuestKillCrewman", + "Progress": 50 + }, + { + "Name": "Own5Warframes", + "Progress": 1 + }, + { + "Name": "MummyQuestKillRailgunMoa", + "Progress": 20 + }, + { + "Name": "MummyQuestKillJuggernaut", + "Progress": 5 + }, + { + "Name": "BrawlerMastery1", + "Progress": 3 + }, + { + "Name": "BrawlerProficiency1", + "Progress": 1 + }, + { + "Name": "PlayerRank9", + "Progress": 1 + }, + { + "Name": "Own10Warframes", + "Progress": 1 + }, + { + "Name": "ShotgunMastery1", + "Progress": 2 + }, + { + "Name": "ShotgunMastery2", + "Progress": 2 + }, + { + "Name": "ShotgunMastery3", + "Progress": 2 + }, + { + "Name": "PistolMaster", + "Progress": 20 + }, + { + "Name": "HeavyWeaponMastery1", + "Progress": 2 + }, + { + "Name": "HeavyWeaponMastery2", + "Progress": 2 + }, + { + "Name": "HeavyWeaponMastery3", + "Progress": 2 + }, + { + "Name": "HeavyWeaponProficiency1", + "Progress": 1 + }, + { + "Name": "HeavyWeaponProficiency2", + "Progress": 1 + }, + { + "Name": "HeavyWeaponProficiency3", + "Progress": 1 + }, + { + "Name": "ShotgunProficiency1", + "Progress": 1 + }, + { + "Name": "PlayerRank10", + "Progress": 1 + }, + { + "Name": "ShotgunProficiency2", + "Progress": 1 + }, + { + "Name": "ShotgunProficiency3", + "Progress": 1 + }, + { + "Name": "CJCompleteQuest", + "Progress": 1 + }, + { + "Name": "EMCompleteQuest", + "Progress": 1 + }, + { + "Name": "EVCompleteQuest", + "Progress": 1 + }, + { + "Name": "JECompleteQuest", + "Progress": 1 + }, + { + "Name": "JSCompleteQuest", + "Progress": 1 + }, + { + "Name": "NPCompleteQuest", + "Progress": 1 + }, + { + "Name": "UNCompleteQuest", + "Progress": 1 + }, + { + "Name": "VMKillEximus", + "Progress": 10 + }, + { + "Name": "EVApplyMod", + "Progress": 1 + }, + { + "Name": "EMGetKills", + "Progress": 150 + }, + { + "Name": "EMSabotageInjectors", + "Progress": 3 + }, + { + "Name": "EVCollectMods", + "Progress": 20 + }, + { + "Name": "EMPlayAlert", + "Progress": 1 + }, + { + "Name": "VMKillBossJackal", + "Progress": 1 + }, + { + "Name": "VMRescueHostage", + "Progress": 1 + }, + { + "Name": "VMDefenseWaves", + "Progress": 1 + }, + { + "Name": "EVKillEximus", + "Progress": 3 + }, + { + "Name": "EVUpgradeMod", + "Progress": 1 + }, + { + "Name": "MCGetKills", + "Progress": 300 + }, + { + "Name": "MCKillBossKril", + "Progress": 1 + }, + { + "Name": "MCKillBossSergeant", + "Progress": 1 + }, + { + "Name": "NPInterceptionBeacons", + "Progress": 1 + }, + { + "Name": "JECraftSpecter", + "Progress": 1 + }, + { + "Name": "CJSurvivalTime", + "Progress": 1 + }, + { + "Name": "SUVoidTears", + "Progress": 3 + }, + { + "Name": "MCVoidProjectionUpgrade", + "Progress": 1 + }, + { + "Name": "MPSupportInvasion", + "Progress": 1 + }, + { + "Name": "MPSupportInvasionGrineer", + "Progress": 1 + }, + { + "Name": "JECraftMRWeapon", + "Progress": 1 + }, + { + "Name": "MPVoidTears", + "Progress": 3 + }, + { + "Name": "PSGetKills", + "Progress": 10 + }, + { + "Name": "PSCraftMRWeapon", + "Progress": 1 + }, + { + "Name": "PEVoidTears", + "Progress": 3 + }, + { + "Name": "MPSupportInvasionCorpus", + "Progress": 1 + }, + { + "Name": "MPGetKills", + "Progress": 1 + }, + { + "Name": "JSSpyExtractions", + "Progress": 1 + }, + { + "Name": "EMGatherResource", + "Progress": 500 + }, + { + "Name": "PEKillBossDerelict", + "Progress": 1 + }, + { + "Name": "SUCraftDerelict", + "Progress": 1 + }, + { + "Name": "MPCephFragments", + "Progress": 5 + }, + { + "Name": "SUKillBossSargasRuk", + "Progress": 1 + }, + { + "Name": "UNKillBossTylRegor", + "Progress": 1 + }, + { + "Name": "UNMeleeOnly", + "Progress": 5 + }, + { + "Name": "UNFindCaches", + "Progress": 1 + }, + { + "Name": "NPKillBossHyena", + "Progress": 1 + }, + { + "Name": "PSPrincipleMods", + "Progress": 1 + }, + { + "Name": "PSPrincipleModsAgility", + "Progress": 1 + }, + { + "Name": "PSPrincipleModsEndurance", + "Progress": 1 + }, + { + "Name": "PSKillBossVayHek", + "Progress": 1 + }, + { + "Name": "CJKillBossLechKril", + "Progress": 1 + }, + { + "Name": "JSKillBossAladV", + "Progress": 1 + }, + { + "Name": "JECompleteVoidMission", + "Progress": 1 + }, + { + "Name": "PSPrincipleModsCunning", + "Progress": 1 + }, + { + "Name": "PSPrincipleModsCollaboration", + "Progress": 1 + }, + { + "Name": "PSPrincipleModsPower", + "Progress": 1 + }, + { + "Name": "EMGatherResourceReward", + "Progress": 0 + }, + { + "Name": "PlayerRank11", + "Progress": 1 + }, + { + "Name": "EVCollectModsRewards", + "Progress": 0 + }, + { + "Name": "OnHitPistolCondition", + "Progress": 0 + }, + { + "Name": "OnHeadshotPistolCondition", + "Progress": 0 + }, + { + "Name": "OnHitRifleCondition", + "Progress": 0 + }, + { + "Name": "OnKillRifleCondition", + "Progress": 0 + }, + { + "Name": "OnKillPistolCondition", + "Progress": 0 + }, + { + "Name": "EMCompleteMercuryNode", + "Progress": 1 + }, + { + "Name": "OnWeaponProcCondition", + "Progress": 0 + }, + { + "Name": "PSPrincipleModsStealth", + "Progress": 0 + }, + { + "Name": "CJKillProsecutor", + "Progress": 1 + }, + { + "Name": "JSKillBossRaptor", + "Progress": 1 + }, + { + "Name": "PlayerRank12", + "Progress": 1 + }, + { + "Name": "NPSpyDataExtractions", + "Progress": 1 + }, + { + "Name": "PEDefenseWaves", + "Progress": 1 + }, + { + "Name": "StyleKill", + "Progress": 5 + }, + { + "Name": "OnMeleeChargeAttackCondition", + "Progress": 0 + }, + { + "Name": "PlayerRank13", + "Progress": 1 + }, + { + "Name": "PoleWeaponMastery2", + "Progress": 3 + }, + { + "Name": "PoleWeaponProficiency2", + "Progress": 1 + }, + { + "Name": "PoleWeaponMastery3", + "Progress": 3 + }, + { + "Name": "PoleWeaponProficiency3", + "Progress": 1 + }, + { + "Name": "SMSydonSpecialCondition", + "Progress": 0 + }, + { + "Name": "RandomizedKill", + "Progress": 60 + }, + { + "Name": "Mercenary2", + "Progress": 5 + }, + { + "Name": "HighPerfectDefense", + "Progress": 1 + }, + { + "Name": "RandomizedWallClingKillstreak", + "Progress": 12 + }, + { + "Name": "PlayerRank14", + "Progress": 1 + }, + { + "Name": "RandomizedStyleKill", + "Progress": 24 + }, + { + "Name": "BrawlerMastery2", + "Progress": 3 + }, + { + "Name": "BrawlerProficiency2", + "Progress": 1 + }, + { + "Name": "BrawlerMastery3", + "Progress": 3 + }, + { + "Name": "BrawlerProficiency3", + "Progress": 1 + }, + { + "Name": "RandomizedFinisherKill", + "Progress": 25 + }, + { + "Name": "RandomizedFindRareMedallions", + "Progress": 16 + }, + { + "Name": "RandomizedHeadshot", + "Progress": 18 + }, + { + "Name": "HighExterminationUndetected", + "Progress": 1 + }, + { + "Name": "OnMeleeChannelKill", + "Progress": 0 + }, + { + "Name": "PlayerRank15", + "Progress": 1 + }, + { + "Name": "TennoOfAllTrades", + "Progress": 1 + }, + { + "Name": "IndexQuestB", + "Progress": 1 + }, + { + "Name": "InfestedKogakeProcCondition", + "Progress": 0 + }, + { + "Name": "PSPrincipleModsSpeed", + "Progress": 0 + }, + { + "Name": "InfVomitGunProcCondition", + "Progress": 0 + }, + { + "Name": "PlayerRank16", + "Progress": 1 + }, + { + "Name": "OnEnergyPickupCondition", + "Progress": 0 + }, + { + "Name": "OnHeadshotRifleCondition", + "Progress": 0 + }, + { + "Name": "HighSurvivalPacifist", + "Progress": 1 + }, + { + "Name": "RandomizedFindCaches", + "Progress": 3 + }, + { + "Name": "PlayerRank17", + "Progress": 1 + }, + { + "Name": "OctaviasAnthem", + "Progress": 1 + }, + { + "Name": "RandomizedKillSentients", + "Progress": 6 + }, + { + "Name": "LimitedSynthesis", + "Progress": 1 + }, + { + "Name": "HighSoloInterceptionHobbled", + "Progress": 1 + }, + { + "Name": "PlayerRank18", + "Progress": 1 + }, + { + "Name": "TheWarWithin", + "Progress": 1 + }, + { + "Name": "Kaboom", + "Progress": 1 + }, + { + "Name": "CombatSpecialist", + "Progress": 3 + }, + { + "Name": "Liberator", + "Progress": 10 + }, + { + "Name": "RandomizedHeadshotGlide", + "Progress": 3 + }, + { + "Name": "PlayerRank19", + "Progress": 1 + }, + { + "Name": "SustainMeleeComboThree", + "Progress": 1 + }, + { + "Name": "CorpusHammerWeaponKillCondition", + "Progress": 0 + }, + { + "Name": "OnHitPistolNoDotsCondition", + "Progress": 0 + }, + { + "Name": "PlayerRank20", + "Progress": 1 + }, + { + "Name": "Marathoner", + "Progress": 100000 + }, + { + "Name": "SharpShooter", + "Progress": 1 + }, + { + "Name": "PestControl", + "Progress": 100 + }, + { + "Name": "TombLooter", + "Progress": 12 + }, + { + "Name": "TombLooter6", + "Progress": 1 + }, + { + "Name": "ChampionOfThePeople", + "Progress": 10 + }, + { + "Name": "TombLooter2", + "Progress": 1 + }, + { + "Name": "TombLooter3", + "Progress": 1 + }, + { + "Name": "SayasVigil", + "Progress": 1 + }, + { + "Name": "TombLooter8", + "Progress": 1 + }, + { + "Name": "MasterAngler", + "Progress": 10 + }, + { + "Name": "TombLooter11", + "Progress": 1 + }, + { + "Name": "ByDawnsEarlyLight", + "Progress": 1 + }, + { + "Name": "TombLooter1", + "Progress": 1 + }, + { + "Name": "FromOnHigh", + "Progress": 100 + }, + { + "Name": "TombLooter4", + "Progress": 1 + }, + { + "Name": "TombLooter10", + "Progress": 1 + }, + { + "Name": "TombLooter9", + "Progress": 1 + }, + { + "Name": "TombLooter12", + "Progress": 1 + }, + { + "Name": "TombLooter5", + "Progress": 1 + }, + { + "Name": "TombLooter7", + "Progress": 1 + }, + { + "Name": "PlainsProspector", + "Progress": 100 + }, + { + "Name": "ForgedInFire", + "Progress": 1 + }, + { + "Name": "OnDamageCondition", + "Progress": 0 + }, + { + "Name": "TheGreatEidolonHunt", + "Progress": 1 + }, + { + "Name": "OnScannedMeleeChannelKill", + "Progress": 0 + }, + { + "Name": "PlayerRank21", + "Progress": 1 + }, + { + "Name": "OnCritCondition", + "Progress": 0 + }, + { + "Name": "OnHitCondition", + "Progress": 0 + }, + { + "Name": "RandomizedLongRangeSniper", + "Progress": 12 + }, + { + "Name": "OnBulletOrDoubleJumpCondition", + "Progress": 0 + }, + { + "Name": "OnHeadshotCondition", + "Progress": 0 + }, + { + "Name": "RandomizedSkiffArcher", + "Progress": 11 + }, + { + "Name": "ThisIsWhatYouAre", + "Progress": 1 + }, + { + "Name": "TheSacrifice", + "Progress": 1 + }, + { + "Name": "RandomizedKillFallingPilots", + "Progress": 3 + }, + { + "Name": "MarkedEnemyDown", + "Progress": 1 + }, + { + "Name": "RRFireKillDeathSquad", + "Progress": 3 + }, + { + "Name": "RRFireResourceContribution", + "Progress": 30 + }, + { + "Name": "RRFireStructureContribution", + "Progress": 5 + }, + { + "Name": "RRFireScanEnemies", + "Progress": 1 + }, + { + "Name": "RandomizedKillPassengers", + "Progress": 13 + }, + { + "Name": "UntouchableIncursion", + "Progress": 1 + }, + { + "Name": "WeeklyChallengeKillFaction", + "Progress": 500 + }, + { + "Name": "OrbVallisExplorer", + "Progress": 30 + }, + { + "Name": "OrbVallisExplorer9", + "Progress": 1 + }, + { + "Name": "KDriven", + "Progress": 125917 + }, + { + "Name": "Hang10", + "Progress": 1 + }, + { + "Name": "BountyHunter", + "Progress": 1 + }, + { + "Name": "SeasonWeeklyHardKillEximus", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyKillEnemies", + "Progress": 31 + }, + { + "Name": "SeasonWeeklySanctuaryOnslaught", + "Progress": 0 + }, + { + "Name": "SeasonDailyKillEnemiesWithCorrosive", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyKillEximus", + "Progress": 17 + }, + { + "Name": "OrbVallisExplorer16", + "Progress": 1 + }, + { + "Name": "SeasonDailyKillEnemiesWithMagnetic", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyCatchRarePlainsFish", + "Progress": 0 + }, + { + "Name": "SeasonDailyKillEnemiesWithAbilities", + "Progress": 0 + }, + { + "Name": "SeasonDailyKillEnemiesWithSecondary", + "Progress": 20 + }, + { + "Name": "SeasonDailyCompleteMission", + "Progress": 1 + }, + { + "Name": "OrbVallisExplorer6", + "Progress": 1 + }, + { + "Name": "SeasonDailyKillEnemiesWithRadiation", + "Progress": 27 + }, + { + "Name": "OrbVallisExplorer8", + "Progress": 1 + }, + { + "Name": "SeasonDailyCodexScan", + "Progress": 0 + }, + { + "Name": "SeasonDailyKillEnemies", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyCompleteMobileDefense", + "Progress": 0 + }, + { + "Name": "SeasonDailyDeployGlyph", + "Progress": 0 + }, + { + "Name": "SeasonWeeklySabotageCaches", + "Progress": 0 + }, + { + "Name": "SeasonDailyKillEnemiesWithHeadshots", + "Progress": 4 + }, + { + "Name": "SeasonDailyOpenLockers", + "Progress": 0 + }, + { + "Name": "SeasonDailyKillEnemiesWithBlast", + "Progress": 150 + }, + { + "Name": "SeasonDailyCollectCredits", + "Progress": 15000 + }, + { + "Name": "SeasonDailyKillEnemiesWithPrimary", + "Progress": 150 + }, + { + "Name": "SeasonWeeklyHardUnlockRelics", + "Progress": 8 + }, + { + "Name": "SeasonDailyBulletJump", + "Progress": 150 + }, + { + "Name": "SeasonWeeklyHardKillEnemies", + "Progress": 1500 + }, + { + "Name": "SeasonDailyKillEnemiesWithMelee", + "Progress": 23 + }, + { + "Name": "PlayerRank22", + "Progress": 1 + }, + { + "Name": "SeasonDailyKillEnemiesWithViral", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyHardEliteSanctuaryOnslaught", + "Progress": 0 + }, + { + "Name": "SeasonDailyTransmuteMods", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyCompleteSyndicateMissions", + "Progress": 0 + }, + { + "Name": "SeasonDailyInteractWithPet", + "Progress": 0 + }, + { + "Name": "SeasonDailyKillEnemiesWithPoison", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyCompleteDisruptionConduits", + "Progress": 10 + }, + { + "Name": "SeasonDailyPickUpEnergy", + "Progress": 20 + }, + { + "Name": "SeasonWeeklyCompleteRescue", + "Progress": 0 + }, + { + "Name": "SeasonDailyKillEnemiesWithFinishers", + "Progress": 10 + }, + { + "Name": "SeasonWeeklyUnlockRelics", + "Progress": 3 + }, + { + "Name": "SeasonWeeklyCompleteKuva", + "Progress": 0 + }, + { + "Name": "SeasonDailyPickUpMedallion", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyCompleteExterminate", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyCompleteCapture", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyHardCompleteSortie", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyHardLuaPuzzles", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyCompleteClemMission", + "Progress": 0 + }, + { + "Name": "SeasonDailyDeployAirSupport", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyKillThumper", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyUseForma", + "Progress": 0 + }, + { + "Name": "OrbVallisExplorer0", + "Progress": 1 + }, + { + "Name": "OrbVallisHunter", + "Progress": 2 + }, + { + "Name": "SeasonWeeklyPerfectAnimalCapture", + "Progress": 0 + }, + { + "Name": "OrbVallisExplorer5", + "Progress": 1 + }, + { + "Name": "SeasonDailyAimGlide", + "Progress": 15 + }, + { + "Name": "OrbVallisExplorer13", + "Progress": 1 + }, + { + "Name": "OrbVallisExplorer11", + "Progress": 1 + }, + { + "Name": "OrbVallisExplorer2", + "Progress": 1 + }, + { + "Name": "OrbVallisExplorer3", + "Progress": 1 + }, + { + "Name": "SeasonWeeklyMineRarePlainsResources", + "Progress": 0 + }, + { + "Name": "FriendlyNeighborhoodTenno", + "Progress": 10 + }, + { + "Name": "OrbVallisExplorer22", + "Progress": 1 + }, + { + "Name": "SeasonDailyKillEnemiesWithFire", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyCompleteSabotage", + "Progress": 0 + }, + { + "Name": "OrbVallisExplorer1", + "Progress": 1 + }, + { + "Name": "OrbVallisExplorer12", + "Progress": 1 + }, + { + "Name": "OrbVallisExplorer25", + "Progress": 1 + }, + { + "Name": "OrbVallisExplorer27", + "Progress": 1 + }, + { + "Name": "OrbVallisExplorer7", + "Progress": 1 + }, + { + "Name": "OrbVallisExplorer28", + "Progress": 1 + }, + { + "Name": "SeasonDailyKillEnemiesWithElectricity", + "Progress": 6 + }, + { + "Name": "SeasonDailyPickUpMods", + "Progress": 8 + }, + { + "Name": "OrbVallisExplorer15", + "Progress": 1 + }, + { + "Name": "OrbVallisExplorer17", + "Progress": 1 + }, + { + "Name": "OrbVallisExplorer19", + "Progress": 1 + }, + { + "Name": "OrbVallisExplorer20", + "Progress": 1 + }, + { + "Name": "OrbVallisExplorer4", + "Progress": 1 + }, + { + "Name": "OrbVallisExplorer18", + "Progress": 1 + }, + { + "Name": "SeasonWeeklyHardKuvaSurvivalNoCapsules", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyUnlockDragonVaults", + "Progress": 0 + }, + { + "Name": "IndexWinStreakInMission", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyHardIndexWinStreak", + "Progress": 0 + }, + { + "Name": "OrbVallisExplorer14", + "Progress": 1 + }, + { + "Name": "OrbVallisExplorer21", + "Progress": 1 + }, + { + "Name": "OrbVallisExplorer24", + "Progress": 1 + }, + { + "Name": "SeasonDailySlideKills", + "Progress": 1 + }, + { + "Name": "SeasonWeeklySimarisScan", + "Progress": 0 + }, + { + "Name": "SeasonDailyKillEnemiesWithGas", + "Progress": 150 + }, + { + "Name": "SeasonWeeklyVenusBounties", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyHardExterminateNoAlarm", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyPickUpRareMods", + "Progress": 0 + }, + { + "Name": "TheAbyssGazesIntoYou", + "Progress": 1 + }, + { + "Name": "WereGonnaNeedaBiggerBoat", + "Progress": 1 + }, + { + "Name": "ThatWhichKillsUsMakesUsStronger", + "Progress": 1 + }, + { + "Name": "SeasonWeeklyCompleteTreasures", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyCompleteSortie", + "Progress": 0 + }, + { + "Name": "MoneyCantBuyHappiness", + "Progress": 1 + }, + { + "Name": "The8FoldPath", + "Progress": 1 + }, + { + "Name": "OrbVallisExplorer23", + "Progress": 1 + }, + { + "Name": "SeasonDailyPlayEmote", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyHardCompleteNightmareMissions", + "Progress": 0 + }, + { + "Name": "SomeAssemblyRequired", + "Progress": 1 + }, + { + "Name": "SeasonDailyKillEnemiesWithFreeze", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyHardFriendsProfitTaker", + "Progress": 1 + }, + { + "Name": "IUsedToBullseyeKuakas", + "Progress": 100 + }, + { + "Name": "PlayerRank23", + "Progress": 1 + }, + { + "Name": "ImTheCaptainNow", + "Progress": 1 + }, + { + "Name": "SeasonWeeklyCompleteAssassination", + "Progress": 3 + }, + { + "Name": "SeasonDailySolveCiphers", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyCompleteNightmareMissions", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyCompleteSpy", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyHardFriendsDefense", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyHardKillSilverGroveSpecters", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyPlainsBounties", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyMineRareVenusResources", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyCatchRareVenusFish", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyHardFastCapture", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyKillArchgunEnemies", + "Progress": 0 + }, + { + "Name": "OrbVallisExplorer26", + "Progress": 1 + }, + { + "Name": "OrbVallisExplorer29", + "Progress": 1 + }, + { + "Name": "MoaMoneyMoaProblems", + "Progress": 1 + }, + { + "Name": "OrbVallisExplorer10", + "Progress": 1 + }, + { + "Name": "SeasonWeeklyHardKillExploiterOrb", + "Progress": 0 + }, + { + "Name": "SeasonDailyDeploySpecter", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyDestroyCrewshipArtillery", + "Progress": 1 + }, + { + "Name": "SeasonWeeklyHardRailjackMissions", + "Progress": 8 + }, + { + "Name": "SeasonWeeklyHardFriendsSurvival", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyHardSpyManualNoAlarms", + "Progress": 0 + }, + { + "Name": "SeasonDailyDonateLeverian", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyRailjackMissions", + "Progress": 0 + }, + { + "Name": "SeasonDailyPlaceMarker", + "Progress": 0 + }, + { + "Name": "SeasonDailyCompleteMissionPrimary", + "Progress": 0 + }, + { + "Name": "SeasonDailySuspendFiveEnemies", + "Progress": 0 + }, + { + "Name": "RandomizedFlyingHeadshotSeries", + "Progress": 8 + }, + { + "Name": "SeasonDailyCompleteMissionMelee", + "Progress": 0 + }, + { + "Name": "SeasonDailyVisitFeaturedDojo", + "Progress": 0 + }, + { + "Name": "GrandTheftDargyn", + "Progress": 458 + }, + { + "Name": "SeasonWeeklyHardKillRopalolyst", + "Progress": 0 + }, + { + "Name": "MapricoFruitCollect", + "Progress": 50 + }, + { + "Name": "PlayerRank24", + "Progress": 1 + }, + { + "Name": "SeasonWeeklyBoardingPartyNoDamage", + "Progress": 1 + }, + { + "Name": "SeasonWeeklyIsolationBounties", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyKillEnemiesInMech", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyHardCollectUniqueResources", + "Progress": 15 + }, + { + "Name": "CommandRank10", + "Progress": 8 + }, + { + "Name": "CompleteAllCorpusProxima", + "Progress": 23 + }, + { + "Name": "YareliAirSpinTrickChallenge", + "Progress": 0 + }, + { + "Name": "OrbVallisRacer", + "Progress": 6 + }, + { + "Name": "OrbVallisRacer20", + "Progress": 1 + }, + { + "Name": "YareliAirFrontsideRolloutChallenge", + "Progress": 0 + }, + { + "Name": "OrbVallisRacer18", + "Progress": 1 + }, + { + "Name": "YareliTrickChainScoreChallenge1", + "Progress": 0 + }, + { + "Name": "OrbVallisRacer11", + "Progress": 1 + }, + { + "Name": "OrbVallisRacer22", + "Progress": 1 + }, + { + "Name": "YareliAirTimeChallenge", + "Progress": 0 + }, + { + "Name": "YareliTrickChainTimeChallenge", + "Progress": 0 + }, + { + "Name": "OrbVallisRacer2", + "Progress": 1 + }, + { + "Name": "YareliTenComboChallenge", + "Progress": 0 + }, + { + "Name": "OrbVallisRacer15", + "Progress": 1 + }, + { + "Name": "PlayerRank25", + "Progress": 1 + }, + { + "Name": "CraftAnySoPWeapon", + "Progress": 1 + }, + { + "Name": "SentEvoEphemeraRankOne", + "Progress": 250000 + }, + { + "Name": "SeasonWeeklyLoyalty", + "Progress": 5000 + }, + { + "Name": "SeasonWeeklyHardRiseOfTheMachine", + "Progress": 4 + }, + { + "Name": "SeasonWeeklyHardFallenAngel", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyEternalGuardian", + "Progress": 0 + }, + { + "Name": "SentEvoEphemeraRankTwo", + "Progress": 500000 + }, + { + "Name": "SeasonDailyDeathFromAbove", + "Progress": 10 + }, + { + "Name": "SeasonDailyCollectHundredResources", + "Progress": 1500 + }, + { + "Name": "EVCompleteSayasVigil", + "Progress": 1 + }, + { + "Name": "MCCompleteQuest", + "Progress": 1 + }, + { + "Name": "PSCompleteQuest", + "Progress": 1 + }, + { + "Name": "SeasonWeeklyPermanentKillEnemies3", + "Progress": 440 + }, + { + "Name": "SeasonWeeklyPermanentKillEximus3", + "Progress": 16 + }, + { + "Name": "SeasonWeeklyPermanentCompleteMissions3", + "Progress": 5 + }, + { + "Name": "SeasonDailyMercyKill", + "Progress": 1 + }, + { + "Name": "SeasonWeeklyPermanentCompleteMissions4", + "Progress": 10 + }, + { + "Name": "SeasonWeeklyPermanentKillEnemies4", + "Progress": 500 + }, + { + "Name": "SeasonWeeklyPermanentKillEximus4", + "Progress": 30 + }, + { + "Name": "SeasonWeeklyHardKillEnemiesSteelPath", + "Progress": 299 + }, + { + "Name": "SeasonWeeklyPermanentKillEnemies5", + "Progress": 500 + }, + { + "Name": "SeasonWeeklyPermanentKillEximus5", + "Progress": 30 + }, + { + "Name": "SeasonWeeklyPermanentCompleteMissions5", + "Progress": 15 + }, + { + "Name": "SeasonWeeklyPermanentKillEnemies6", + "Progress": 500 + }, + { + "Name": "SeasonWeeklyPermanentCompleteMissions6", + "Progress": 15 + }, + { + "Name": "SeasonWeeklyPermanentKillEximus6", + "Progress": 30 + }, + { + "Name": "SeasonWeeklyHardAntiquarian", + "Progress": 4 + }, + { + "Name": "SeasonWeeklyPermanentCompleteMissions7", + "Progress": 15 + }, + { + "Name": "SeasonWeeklyPermanentKillEnemies7", + "Progress": 500 + }, + { + "Name": "SeasonWeeklyPermanentKillEximus7", + "Progress": 30 + }, + { + "Name": "ZarimanShotgunChallengeA", + "Progress": 100 + }, + { + "Name": "SeasonWeeklyRailjackHijackDestroyThree", + "Progress": 3 + }, + { + "Name": "SeasonWeeklyPermanentKillEnemies8", + "Progress": 500 + }, + { + "Name": "SeasonWeeklyPermanentKillEximus8", + "Progress": 30 + }, + { + "Name": "SeasonWeeklyPermanentCompleteMissions8", + "Progress": 15 + }, + { + "Name": "SeasonWeeklyHardTheManyMadeWhole", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyPermanentCompleteMissions9", + "Progress": 10 + }, + { + "Name": "SeasonWeeklyPermanentKillEnemies9", + "Progress": 500 + }, + { + "Name": "SeasonWeeklyPermanentKillEximus9", + "Progress": 30 + }, + { + "Name": "SeasonWeeklyPermanentCompleteMissions10", + "Progress": 15 + }, + { + "Name": "SeasonWeeklyPermanentKillEnemies10", + "Progress": 500 + }, + { + "Name": "SeasonWeeklyPermanentKillEximus10", + "Progress": 30 + }, + { + "Name": "SeasonWeeklyKillEnemiesWithHeadshots", + "Progress": 100 + }, + { + "Name": "SeasonWeeklyPermanentCompleteMissions11", + "Progress": 15 + }, + { + "Name": "SeasonWeeklyPermanentKillEnemies11", + "Progress": 500 + }, + { + "Name": "SeasonWeeklyPermanentKillEximus11", + "Progress": 30 + }, + { + "Name": "SeasonWeeklyPermanentCompleteMissions12", + "Progress": 15 + }, + { + "Name": "SeasonWeeklyPermanentKillEnemies12", + "Progress": 500 + }, + { + "Name": "SeasonWeeklyPermanentKillEximus12", + "Progress": 30 + }, + { + "Name": "SeasonDailyCompleteMissionSecondary", + "Progress": 0 + }, + { + "Name": "SeasonWeeklyPermanentCompleteMissions13", + "Progress": 15 + }, + { + "Name": "SeasonWeeklyPermanentKillEnemies13", + "Progress": 500 + }, + { + "Name": "SeasonWeeklyPermanentKillEximus13", + "Progress": 30 + }, + { + "Name": "SeasonWeeklyPermanentKillEnemies17", + "Progress": 92 + }, + { + "Name": "SeasonWeeklyPermanentCompleteMissions17", + "Progress": 3 + }, + { + "Name": "SeasonWeeklyPermanentKillEximus17", + "Progress": 10 + }, + { + "Name": "SeasonWeeklyPermanentCompleteMissions18", + "Progress": 15 + }, + { + "Name": "SeasonWeeklyPermanentKillEnemies18", + "Progress": 500 + }, + { + "Name": "SeasonWeeklyPermanentKillEximus18", + "Progress": 30 + }, + { + "Name": "VMCompleteQuestVox", + "Progress": 1 + }, + { + "Name": "SeasonDailyBuildersTouch", + "Progress": 1 + }, + { + "Name": "SeasonWeeklyPermanentKillEnemies19", + "Progress": 500 + }, + { + "Name": "SeasonWeeklyPermanentCompleteMissions19", + "Progress": 7 + }, + { + "Name": "SeasonWeeklyPermanentKillEximus19", + "Progress": 30 + } + ], + "DeathMarks": [], + "Harvestable": false, + "DeathSquadable": false, + "Created": { + "$date": { + "$numberLong": "1462464026233" + } + }, + "MigratedToConsole": false, + "Missions": [ + { + "Completes": 16, + "Tier": 1, + "Tag": "SolNode103" + }, + { + "Completes": 26, + "Tier": 1, + "Tag": "SolNode23" + }, + { + "Completes": 4, + "Tag": "SolNode71" + }, + { + "Completes": 28, + "Tier": 1, + "Tag": "SolNode2" + }, + { + "Completes": 4, + "Tag": "SolNode35" + }, + { + "Completes": 31, + "Tier": 1, + "Tag": "SolNode12" + }, + { + "Completes": 40, + "Tag": "SolNode58" + }, + { + "Completes": 12, + "Tier": 1, + "Tag": "SolNode223" + }, + { + "Completes": 16, + "Tag": "SolNode106" + }, + { + "Completes": 24, + "Tag": "SolNode41" + }, + { + "Completes": 31, + "Tier": 1, + "Tag": "SolNode63" + }, + { + "Completes": 9, + "Tier": 1, + "Tag": "SolNode85" + }, + { + "Completes": 90, + "Tier": 1, + "Tag": "SolNode27" + }, + { + "Completes": 2, + "Tag": "ClanNode8" + }, + { + "Completes": 30, + "Tag": "SolNode14" + }, + { + "Completes": 25, + "Tier": 1, + "Tag": "SolNode89" + }, + { + "Completes": 38, + "Tag": "SolNode59" + }, + { + "Completes": 34, + "Tier": 1, + "Tag": "SolNode75" + }, + { + "Completes": 20, + "Tier": 1, + "Tag": "SolNode224" + }, + { + "Completes": 51, + "Tier": 1, + "Tag": "SolNode128" + }, + { + "Completes": 26, + "Tier": 1, + "Tag": "SolNode79" + }, + { + "Completes": 37, + "Tier": 1, + "Tag": "SolNode39" + }, + { + "Completes": 24, + "Tier": 1, + "Tag": "SolNode15" + }, + { + "Completes": 51, + "Tier": 1, + "Tag": "SolNode26" + }, + { + "Completes": 23, + "Tier": 1, + "Tag": "SolNode107" + }, + { + "Completes": 2, + "Tag": "SolNode54" + }, + { + "Completes": 27, + "Tag": "SolNode46" + }, + { + "Completes": 26, + "Tier": 1, + "Tag": "SolNode61" + }, + { + "Completes": 25, + "Tier": 1, + "Tag": "SolNode109" + }, + { + "Completes": 4, + "Tag": "SolNode222" + }, + { + "Completes": 12, + "Tier": 1, + "Tag": "SolNode903" + }, + { + "Completes": 26, + "Tag": "SolNode36" + }, + { + "Completes": 22, + "Tier": 1, + "Tag": "SolNode225" + }, + { + "Completes": 9, + "Tag": "SolNode904" + }, + { + "Completes": 29, + "Tag": "SolNode68" + }, + { + "Completes": 31, + "Tier": 1, + "Tag": "SolNode119" + }, + { + "Completes": 6, + "Tag": "SolNode221" + }, + { + "Completes": 1, + "Tag": "SolNode901" + }, + { + "Completes": 3, + "Tag": "SolNode115" + }, + { + "Completes": 3, + "Tag": "ClanNode9" + }, + { + "Completes": 26, + "Tier": 1, + "Tag": "SolNode22" + }, + { + "Completes": 22, + "Tag": "SolNode65" + }, + { + "Completes": 49, + "Tier": 1, + "Tag": "SolNode123" + }, + { + "Completes": 21, + "Tier": 1, + "Tag": "SolNode66" + }, + { + "Completes": 22, + "Tag": "SolNode45" + }, + { + "Completes": 36, + "Tier": 1, + "Tag": "SolNode101" + }, + { + "Completes": 10, + "Tier": 1, + "Tag": "SolNode902" + }, + { + "Completes": 55, + "Tier": 1, + "Tag": "SolNode104" + }, + { + "Completes": 8, + "Tier": 1, + "Tag": "SolNode28" + }, + { + "Completes": 43, + "Tag": "SolNode53" + }, + { + "Completes": 35, + "Tag": "SolNode210" + }, + { + "Completes": 42, + "Tag": "SolNode127" + }, + { + "Completes": 242, + "Tag": "SolNode146" + }, + { + "Completes": 38, + "Tag": "SolNode126" + }, + { + "Completes": 30, + "Tag": "SolNode74" + }, + { + "Completes": 7, + "Tier": 1, + "Tag": "SolNode130" + }, + { + "Completes": 52, + "Tag": "SolNode131" + }, + { + "Completes": 2, + "Tag": "SolNode133" + }, + { + "Completes": 27, + "Tag": "SolNode135" + }, + { + "Completes": 29, + "Tag": "SolNode140" + }, + { + "Completes": 14, + "Tag": "SolNode147" + }, + { + "Completes": 10, + "Tier": 1, + "Tag": "SolNode94" + }, + { + "Completes": 23, + "Tier": 1, + "Tag": "SolNode226" + }, + { + "Completes": 2, + "Tag": "SolNode227" + }, + { + "Completes": 17, + "Tier": 1, + "Tag": "SolNode108" + }, + { + "Completes": 18, + "Tag": "SolNode16" + }, + { + "Completes": 51, + "Tag": "SolNode99" + }, + { + "Completes": 21, + "Tag": "SolNode11" + }, + { + "Completes": 36, + "Tag": "SolNode113" + }, + { + "Completes": 27, + "Tag": "SolNode30" + }, + { + "Completes": 36, + "Tag": "SolNode905" + }, + { + "Completes": 114, + "Tag": "SolNode125" + }, + { + "Completes": 50, + "Tag": "SolNode100" + }, + { + "Completes": 23, + "Tag": "SolNode10" + }, + { + "Completes": 39, + "Tag": "SolNode73" + }, + { + "Completes": 51, + "Tag": "SolNode121" + }, + { + "Completes": 40, + "Tag": "SolNode97" + }, + { + "Completes": 5, + "Tag": "SolNode87" + }, + { + "Completes": 15, + "Tag": "SolNode25" + }, + { + "Completes": 34, + "Tag": "SolNode88" + }, + { + "Completes": 52, + "Tag": "SolNode42" + }, + { + "Completes": 2, + "Tag": "SolNode47" + }, + { + "Completes": 2, + "Tag": "SolNode91" + }, + { + "Completes": 11, + "Tag": "SolNode44" + }, + { + "Completes": 1, + "Tag": "SolNode37" + }, + { + "Completes": 5, + "Tier": 1, + "Tag": "ClanNode2" + }, + { + "Completes": 4, + "Tier": 1, + "Tag": "ClanNode0" + }, + { + "Completes": 1, + "Tag": "SolNode7" + }, + { + "Completes": 2, + "Tag": "SolNode110" + }, + { + "Completes": 55, + "Tag": "SolNode20" + }, + { + "Completes": 14, + "Tag": "SolNode906" + }, + { + "Completes": 2, + "Tag": "SolNode86" + }, + { + "Completes": 39, + "Tag": "SolNode93" + }, + { + "Completes": 22, + "Tag": "SolNode67" + }, + { + "Completes": 3, + "Tag": "SolNode55" + }, + { + "Completes": 30, + "Tag": "SolNode32" + }, + { + "Completes": 34, + "Tag": "SolNode70" + }, + { + "Completes": 52, + "Tag": "SolNode19" + }, + { + "Completes": 26, + "Tag": "SolNode82" + }, + { + "Completes": 19, + "Tag": "SolNode18" + }, + { + "Completes": 213, + "Tag": "SolNode96" + }, + { + "Completes": 2, + "Tag": "SolNode80" + }, + { + "Completes": 50, + "Tag": "SolNode78" + }, + { + "Completes": 16, + "Tag": "SolNode31" + }, + { + "Completes": 12, + "Tag": "SolNode50" + }, + { + "Completes": 2, + "Tag": "SolNode117" + }, + { + "Completes": 3, + "Tag": "SolNode95" + }, + { + "Completes": 36, + "Tag": "SettlementNode1" + }, + { + "Completes": 40, + "Tag": "SolNode6" + }, + { + "Completes": 34, + "Tag": "SolNode49" + }, + { + "Completes": 41, + "Tag": "SolNode1" + }, + { + "Completes": 34, + "Tag": "SolNode17" + }, + { + "Completes": 35, + "Tag": "SolNode62" + }, + { + "Completes": 10, + "Tag": "ClanNode22" + }, + { + "Completes": 42, + "Tag": "SolNode177" + }, + { + "Completes": 23, + "Tag": "SolNode190" + }, + { + "Completes": 27, + "Tag": "SolNode184" + }, + { + "Completes": 1, + "Tag": "SolNode182" + }, + { + "Completes": 117, + "Tag": "SolNode181" + }, + { + "Completes": 12, + "Tag": "SolNode183" + }, + { + "Completes": 74, + "Tag": "SolNode187" + }, + { + "Completes": 1, + "Tag": "SettlementNode6" + }, + { + "Completes": 2, + "Tag": "SettlementNode4" + }, + { + "Completes": 34, + "Tag": "SettlementNode2" + }, + { + "Completes": 44, + "Tag": "SolNode193" + }, + { + "Completes": 52, + "Tag": "SolNode144" + }, + { + "Completes": 3, + "Tag": "ClanNode13" + }, + { + "Completes": 2, + "Tier": 1, + "Tag": "ClanNode3" + }, + { + "Completes": 1, + "Tag": "SolNode90" + }, + { + "Completes": 1, + "Tag": "SolNode13" + }, + { + "Completes": 39, + "Tag": "SolNode69" + }, + { + "Completes": 1, + "Tag": "SettlementNode16" + }, + { + "Completes": 29, + "Tag": "SolNode305" + }, + { + "Completes": 1, + "Tag": "SolNode120" + }, + { + "Completes": 212, + "Tag": "SolNode300" + }, + { + "Completes": 24, + "Tag": "SolNode43" + }, + { + "Completes": 339, + "Tag": "ClanNode25" + }, + { + "Completes": 4, + "Tag": "ClanNode24" + }, + { + "Completes": 28, + "Tag": "SolNode907" + }, + { + "Completes": 1, + "Tag": "SolNode29" + }, + { + "Completes": 34, + "Tag": "SettlementNode12" + }, + { + "Completes": 6, + "Tag": "SettlementNode10" + }, + { + "Completes": 2, + "Tag": "SettlementNode18" + }, + { + "Completes": 50, + "Tag": "SolNode203" + }, + { + "Completes": 56, + "Tag": "SettlementNode3" + }, + { + "Completes": 49, + "Tag": "SolNode304" + }, + { + "Completes": 21, + "Tag": "SolNode307" + }, + { + "Completes": 1, + "Tag": "SolNode178" + }, + { + "Completes": 12, + "Tag": "SolNode180" + }, + { + "Completes": 2, + "Tag": "SolNode194" + }, + { + "Completes": 27, + "Tag": "SolNode199" + }, + { + "Completes": 51, + "Tag": "SolNode122" + }, + { + "Completes": 1, + "Tag": "SolNode116" + }, + { + "Completes": 2, + "Tag": "SolNode77" + }, + { + "Completes": 1, + "Tag": "SolNode124" + }, + { + "Completes": 69, + "Tag": "SolNode102" + }, + { + "Completes": 33, + "Tag": "SolNode38" + }, + { + "Completes": 13, + "Tag": "SolNode34" + }, + { + "Completes": 11, + "Tag": "ClanNode17" + }, + { + "Completes": 2, + "Tag": "SolNode202" + }, + { + "Completes": 99, + "Tag": "SolNode908" + }, + { + "Completes": 76, + "Tag": "SolNode51" + }, + { + "Completes": 33, + "Tag": "SolNode118" + }, + { + "Completes": 17, + "Tag": "SolNode84" + }, + { + "Completes": 28, + "Tag": "SolNode57" + }, + { + "Completes": 1, + "Tag": "SolNode112" + }, + { + "Completes": 5, + "Tag": "SolNode114" + }, + { + "Completes": 1, + "Tag": "SolNode52" + }, + { + "Completes": 8, + "Tag": "SolNode83" + }, + { + "Completes": 3, + "Tag": "SolNode33" + }, + { + "Completes": 3, + "Tag": "SolNode9" + }, + { + "Completes": 1, + "Tag": "SolNode150" + }, + { + "Completes": 4, + "Tag": "SolNode98" + }, + { + "Completes": 29, + "Tag": "SolNode105" + }, + { + "Completes": 2, + "Tag": "SolNode151" + }, + { + "Completes": 1, + "Tag": "SolNode165" + }, + { + "Completes": 45, + "Tag": "SolNode166" + }, + { + "Completes": 11, + "Tag": "SolNode160" + }, + { + "Completes": 20, + "Tag": "SolNode175" + }, + { + "Completes": 4, + "Tag": "SolNode169" + }, + { + "Completes": 47, + "Tier": 1, + "Tag": "SolNode24" + }, + { + "Completes": 2, + "Tag": "SolNode40" + }, + { + "Completes": 2, + "Tag": "SolNode207" + }, + { + "Completes": 27, + "Tag": "SolNode302" + }, + { + "Completes": 38, + "Tag": "SolNode216" + }, + { + "Completes": 32, + "Tag": "SolNode56" + }, + { + "Completes": 1, + "Tag": "SolNode208" + }, + { + "Completes": 29, + "Tag": "SolNode211" + }, + { + "Completes": 2, + "Tag": "SettlementNode9" + }, + { + "Completes": 1, + "Tag": "SolNode111" + }, + { + "Completes": 2, + "Tag": "SolNode5" + }, + { + "Completes": 45, + "Tag": "SolNode64" + }, + { + "Completes": 1, + "Tag": "SolNode3" + }, + { + "Completes": 4, + "Tag": "SolNode60" + }, + { + "Completes": 70, + "Tag": "SolNode4" + }, + { + "Completes": 1, + "Tag": "SolNode8" + }, + { + "Completes": 32, + "Tag": "SolNode48" + }, + { + "Completes": 43, + "Tag": "SolNode76" + }, + { + "Completes": 2, + "Tag": "SolNode92" + }, + { + "Completes": 66, + "Tag": "SolNode81" + }, + { + "Completes": 80, + "Tag": "SolNode21" + }, + { + "Completes": 57, + "Tag": "SolNode72" + }, + { + "Completes": 23, + "Tag": "SettlementNode11" + }, + { + "Completes": 1, + "Tag": "SettlementNode8" + }, + { + "Completes": 45, + "Tag": "SettlementNode20" + }, + { + "Completes": 1, + "Tag": "SolNode219" + }, + { + "Completes": 26, + "Tag": "SolNode204" + }, + { + "Completes": 2, + "Tag": "SettlementNode19" + }, + { + "Completes": 86, + "Tag": "SolNode306" + }, + { + "Completes": 2, + "Tag": "SolNode143" + }, + { + "Completes": 1, + "Tag": "SolNode163" + }, + { + "Completes": 1, + "Tag": "SettlementNode5" + }, + { + "Completes": 1, + "Tag": "SettlementNode7" + }, + { + "Completes": 38, + "Tag": "SolNode139" + }, + { + "Completes": 1, + "Tag": "SolNode145" + }, + { + "Completes": 35, + "Tag": "SolNode205" + }, + { + "Completes": 30, + "Tag": "SolNode212" + }, + { + "Completes": 2, + "Tag": "SolNode206" + }, + { + "Completes": 31, + "Tag": "SolNode220" + }, + { + "Completes": 14, + "Tag": "SolNode301" + }, + { + "Completes": 2, + "Tag": "SolNode159" + }, + { + "Completes": 1, + "Tag": "SolNode156" + }, + { + "Completes": 1, + "Tag": "SolNode155" + }, + { + "Completes": 34, + "Tag": "SolNode149" + }, + { + "Completes": 1, + "Tag": "SolNode158" + }, + { + "Completes": 5, + "Tag": "SolNode186" + }, + { + "Completes": 39, + "Tag": "SolNode188" + }, + { + "Completes": 187, + "Tag": "SolNode195" + }, + { + "Completes": 1, + "Tag": "SolNode148" + }, + { + "Completes": 42, + "Tag": "SolNode141" + }, + { + "Completes": 15, + "Tag": "SolNode192" + }, + { + "Completes": 39, + "Tag": "SettlementNode15" + }, + { + "Completes": 1, + "Tag": "SolNode170" + }, + { + "Completes": 30, + "Tag": "SolNode167" + }, + { + "Completes": 23, + "Tag": "SolNode172" + }, + { + "Completes": 1, + "Tag": "SettlementNode17" + }, + { + "Completes": 1, + "Tag": "EarthToMarsJunction" + }, + { + "Completes": 2, + "Tier": 1, + "Tag": "VenusToMercuryJunction" + }, + { + "Completes": 2, + "Tier": 1, + "Tag": "EarthToVenusJunction" + }, + { + "Completes": 28, + "Tag": "SolNode410" + }, + { + "Completes": 8, + "Tag": "ClanNode12" + }, + { + "Completes": 35, + "Tag": "SolNode209" + }, + { + "Completes": 55, + "Tag": "SolNode407" + }, + { + "Completes": 14, + "Tag": "SolNode191" + }, + { + "Completes": 98, + "Tag": "SolNode185" + }, + { + "Completes": 19, + "Tag": "SolNode162" + }, + { + "Completes": 21, + "Tag": "SolNode173" + }, + { + "Completes": 21, + "Tag": "SolNode406" + }, + { + "Completes": 55, + "Tag": "SolNode400" + }, + { + "Completes": 23, + "Tag": "SolNode217" + }, + { + "Completes": 11, + "Tag": "SolNode701" + }, + { + "Completes": 1, + "Tag": "SaturnToUranusJunction" + }, + { + "Completes": 1, + "Tag": "UranusToNeptuneJunction" + }, + { + "Completes": 1, + "Tag": "NeptuneToPlutoJunction" + }, + { + "Completes": 28, + "Tag": "SolNode403" + }, + { + "Completes": 67, + "Tag": "SolNode404" + }, + { + "Completes": 44, + "Tag": "SolNode138" + }, + { + "Completes": 1, + "Tag": "CeresToJupiterJunction" + }, + { + "Completes": 1, + "Tag": "JupiterToSaturnJunction" + }, + { + "Completes": 1, + "Tag": "JupiterToEuropaJunction" + }, + { + "Completes": 5, + "Tag": "SolNode411" + }, + { + "Completes": 76, + "Tag": "SolNode405" + }, + { + "Completes": 33, + "Tag": "SolNode132" + }, + { + "Completes": 25, + "Tag": "SolNode401" + }, + { + "Completes": 34, + "Tag": "SolNode189" + }, + { + "Completes": 4, + "Tag": "ClanNode23" + }, + { + "Completes": 19, + "Tag": "SolNode153" + }, + { + "Completes": 718, + "Tag": "ClanNode18" + }, + { + "Completes": 3, + "Tag": "ClanNode7" + }, + { + "Completes": 14, + "Tag": "SolNode412" + }, + { + "Completes": 31, + "Tag": "SettlementNode14" + }, + { + "Completes": 35, + "Tag": "SolNode215" + }, + { + "Completes": 16, + "Tag": "SolNode137" + }, + { + "Completes": 54, + "Tag": "SolNode171" + }, + { + "Completes": 32, + "Tag": "SolNode164" + }, + { + "Completes": 64, + "Tag": "SolNode409" + }, + { + "Completes": 6, + "Tier": 1, + "Tag": "ClanNode1" + }, + { + "Completes": 1, + "Tag": "PlutoToSednaJunction" + }, + { + "Completes": 1, + "Tag": "PlutoToErisJunction" + }, + { + "Completes": 1, + "Tag": "MarsToPhobosJunction" + }, + { + "Completes": 1, + "Tag": "MarsToCeresJunction" + }, + { + "Completes": 1, + "Tag": "ClanNode4" + }, + { + "Completes": 3, + "Tag": "SolNode705" + }, + { + "Completes": 21, + "Tag": "SolNode402" + }, + { + "Completes": 11, + "Tag": "SolNode214" + }, + { + "Completes": 3, + "Tag": "ClanNode11" + }, + { + "Completes": 20, + "Tag": "SolNode196" + }, + { + "Completes": 1, + "Tag": "EventNode9" + }, + { + "Completes": 1, + "Tag": "SolNode136" + }, + { + "Completes": 26, + "Tag": "EventNode3" + }, + { + "Completes": 19, + "Tag": "EventNode0" + }, + { + "Completes": 16, + "Tag": "EventNode761" + }, + { + "Completes": 7, + "Tag": "EventNode762" + }, + { + "Completes": 9, + "Tag": "EventNode763" + }, + { + "Completes": 10, + "Tag": "EventNode2" + }, + { + "Completes": 6, + "Tag": "EventNode24" + }, + { + "Completes": 6, + "Tag": "EventNode25" + }, + { + "Completes": 34, + "Tag": "SolNode746" + }, + { + "Completes": 8, + "Tag": "SolNode741" + }, + { + "Completes": 5, + "Tag": "SolNode743" + }, + { + "Completes": 8, + "Tag": "SolNode742" + }, + { + "Completes": 11, + "Tag": "SolNode747" + }, + { + "Completes": 25, + "Tag": "SolNode748" + }, + { + "Completes": 9, + "Tag": "SolNode745" + }, + { + "Completes": 99, + "Tag": "SolNode744" + }, + { + "Completes": 22, + "Tag": "SolNode408" + }, + { + "Completes": 5, + "Tag": "SolNode764" + }, + { + "Completes": 38, + "Tag": "SolNode763" + }, + { + "Completes": 30, + "Tag": "SolNode707" + }, + { + "Completes": 10, + "Tag": "SolNode711" + }, + { + "Completes": 3, + "Tag": "EventNode1" + }, + { + "Completes": 3, + "Tag": "SolNode712" + }, + { + "Completes": 2, + "Tag": "EventNode26" + }, + { + "Completes": 23, + "Tag": "SolNode706" + }, + { + "Completes": 10, + "Tag": "ClanNode16" + }, + { + "Completes": 33, + "Tag": "EventNode5" + }, + { + "Completes": 30, + "Tag": "EventNode8" + }, + { + "Completes": 2, + "Tag": "SolNode713" + }, + { + "Completes": 4, + "Tag": "ClanNode10" + }, + { + "Completes": 70, + "Tag": "SolNode762" + }, + { + "Completes": 5, + "Tag": "SolNode761" + }, + { + "Completes": 1, + "RewardsCooldownTime": { + "$date": { + "$numberLong": "1505001600000" + } + }, + "Tag": "/Lotus/Types/Keys/RaidKeys/Raid01Stage01KeyItem" + }, + { + "Completes": 1, + "RewardsCooldownTime": { + "$date": { + "$numberLong": "1505001600000" + } + }, + "Tag": "/Lotus/Types/Keys/RaidKeys/Raid01Stage02KeyItem" + }, + { + "Completes": 1, + "RewardsCooldownTime": { + "$date": { + "$numberLong": "1505001600000" + } + }, + "Tag": "/Lotus/Types/Keys/RaidKeys/Raid01Stage03KeyItem" + }, + { + "Completes": 262, + "Tier": 1, + "Tag": "CetusHub4" + }, + { + "Completes": 565, + "Tier": 1, + "Tag": "SolNode228" + }, + { + "Completes": 3, + "Tag": "ClanNode5" + }, + { + "Completes": 1, + "Tag": "EventNode27" + }, + { + "Completes": 61, + "Tag": "SolNode802" + }, + { + "Completes": 20, + "Tag": "SolNode801" + }, + { + "Completes": 3, + "Tag": "SolNode708" + }, + { + "Completes": 1, + "Tag": "EventNode18" + }, + { + "Completes": 1, + "Tag": "EarthHUB" + }, + { + "Completes": 270, + "Tier": 1, + "Tag": "SolNode129" + }, + { + "Completes": 114, + "Tier": 1, + "Tag": "SolarisUnitedHub1" + }, + { + "Completes": 1, + "Tag": "ClanNode6" + }, + { + "Completes": 1, + "Tag": "EventNode30" + }, + { + "Completes": 1, + "Tag": "EventNode31" + }, + { + "Completes": 35, + "Tag": "EventNode32" + }, + { + "Completes": 7, + "Tag": "EventNode33" + }, + { + "Completes": 8, + "Tag": "SolNode740" + }, + { + "Completes": 1, + "Tag": "ClanNode21" + }, + { + "Completes": 1, + "Tag": "ClanNode19" + }, + { + "Completes": 1, + "Tag": "EventNode34" + }, + { + "Completes": 2, + "Tag": "EventNode35" + }, + { + "Completes": 1, + "Tag": "ClanNode14" + }, + { + "Completes": 3, + "Tag": "SolNode710" + }, + { + "Completes": 1, + "Tag": "SolNode709" + }, + { + "Completes": 6, + "Tag": "SolNode308" + }, + { + "Completes": 2, + "Tag": "NightwaveDerelictMobDefMars" + }, + { + "Completes": 3, + "Tag": "NightwaveDerelictDefensePluto" + }, + { + "Completes": 3, + "Tag": "NightwaveDerelictSurvivalCeres" + }, + { + "Completes": 1, + "Tag": "NightwaveDerelictSabotageNeptune" + }, + { + "Completes": 1, + "Tag": "NightwaveDerelictSabotageJupiter" + }, + { + "Completes": 2, + "Tag": "NightwaveDerelictAssassinateNeptune" + }, + { + "Completes": 1, + "Tag": "ClanNode15" + }, + { + "Completes": 1, + "Tag": "ClanNode20" + }, + { + "Completes": 1, + "Tag": "CrewBattleNode556" + }, + { + "Completes": 16, + "Tag": "CrewBattleNode506" + }, + { + "Completes": 6, + "Tag": "CrewBattleNode520" + }, + { + "Completes": 4, + "Tag": "CrewBattleNode508" + }, + { + "Completes": 8, + "Tag": "CrewBattleNode518" + }, + { + "Completes": 2, + "Tag": "CrewBattleNode507" + }, + { + "Completes": 6, + "Tag": "CrewBattleNode517" + }, + { + "Completes": 4, + "Tag": "CrewBattleNode522" + }, + { + "Completes": 6, + "Tag": "CrewBattleNode519" + }, + { + "Completes": 2, + "Tag": "CrewBattleNode509" + }, + { + "Completes": 14, + "Tag": "CrewBattleNode534" + }, + { + "Completes": 10, + "Tag": "CrewBattleNode533" + }, + { + "Completes": 11, + "Tag": "CrewBattleNode501" + }, + { + "Completes": 16, + "Tag": "CrewBattleNode532" + }, + { + "Completes": 43, + "Tag": "CrewBattleNode535" + }, + { + "Completes": 40, + "Tag": "CrewBattleNode530" + }, + { + "Completes": 18, + "Tag": "CrewBattleNode531" + }, + { + "Completes": 8, + "Tag": "CrewBattleNode550" + }, + { + "Completes": 9, + "Tag": "CrewBattleNode552" + }, + { + "Completes": 14, + "Tag": "CrewBattleNode554" + }, + { + "Completes": 4, + "Tag": "CrewBattleNode502" + }, + { + "Completes": 11, + "Tag": "CrewBattleNode551" + }, + { + "Completes": 25, + "Tag": "CrewBattleNode510" + }, + { + "Completes": 1, + "Tag": "/Lotus/Types/Keys/TestKeyRailjackSentientExterminatePoi1Radar" + }, + { + "Completes": 1, + "Tag": "CrewShipGenericTunnel" + }, + { + "Completes": 12, + "Tag": "CrewBattleNode553" + }, + { + "Completes": 11, + "Tag": "CrewBattleNode555" + }, + { + "Completes": 7, + "Tag": "CrewBattleNode505" + }, + { + "Completes": 133, + "Tier": 1, + "Tag": "SolNode229" + }, + { + "Completes": 40, + "Tier": 1, + "Tag": "DeimosHub" + }, + { + "Completes": 3, + "Tag": "EventNode17" + }, + { + "Completes": 5, + "Tag": "EventNode28" + }, + { + "Completes": 2, + "Tag": "CrewBattleNode503" + }, + { + "Completes": 2, + "Tag": "CrewBattleNode511" + }, + { + "Completes": 2, + "Tag": "CrewBattleNode512" + }, + { + "Completes": 2, + "Tag": "CrewBattleNode514" + }, + { + "Completes": 2, + "Tag": "CrewBattleNode513" + }, + { + "Completes": 2, + "Tag": "CrewBattleNode504" + }, + { + "Completes": 17, + "Tag": "CrewBattleNode516" + }, + { + "Completes": 10, + "Tag": "CrewBattleNode527" + }, + { + "Completes": 28, + "Tag": "CrewBattleNode521" + }, + { + "Completes": 2, + "Tag": "CrewBattleNode523" + }, + { + "Completes": 5, + "Tag": "CrewBattleNode524" + }, + { + "Completes": 2, + "Tag": "CrewBattleNode526" + }, + { + "Completes": 2, + "Tag": "CrewBattleNode528" + }, + { + "Completes": 8, + "Tag": "CrewBattleNode529" + }, + { + "Completes": 2, + "Tag": "CrewBattleNode536" + }, + { + "Completes": 6, + "Tag": "CrewBattleNode538" + }, + { + "Completes": 6, + "Tag": "CrewBattleNode539" + }, + { + "Completes": 2, + "Tag": "CrewBattleNode540" + }, + { + "Completes": 1, + "Tag": "CrewBattleNode541" + }, + { + "Completes": 2, + "Tag": "CrewBattleNode542" + }, + { + "Completes": 12, + "Tag": "CrewBattleNode558" + }, + { + "Completes": 9, + "Tag": "SolNode231" + }, + { + "Completes": 5, + "Tag": "SolNode230" + }, + { + "Completes": 1, + "Tag": "SolNode232" + }, + { + "Completes": 4, + "Tag": "SolNode309" + }, + { + "Completes": 7, + "Tag": "SolNode310" + }, + { + "Completes": 1, + "Tag": "SolNode450" + }, + { + "Completes": 4, + "Tag": "SolNode233" + }, + { + "Completes": 5, + "Tag": "SolNode235" + }, + { + "Completes": 1, + "Tag": "SolNode236" + }, + { + "Completes": 1, + "Tag": "CrewBattleNode543" + }, + { + "Completes": 4, + "Tier": 1, + "Tag": "EntratiLabHub" + }, + { + "Completes": 13, + "Tag": "SolNode717" + }, + { + "Completes": 11, + "Tag": "SolNode715" + }, + { + "Completes": 3, + "Tag": "SolNode716" + }, + { + "Completes": 2, + "Tag": "SolNode718" + }, + { + "Completes": 11, + "Tag": "SolNode719" + }, + { + "Completes": 14, + "Tag": "SolNode720" + }, + { + "Completes": 1, + "Tag": "SolNode237" + }, + { + "Completes": 6, + "Tag": "SolNode721" + } + ], + "Affiliations": [ + { + "Tag": "NewLokaSyndicate", + "Standing": 71000, + "Title": 2 + }, + { + "Tag": "CephalonSudaSyndicate", + "Standing": -71000, + "Title": -2 + }, + { + "Tag": "SteelMeridianSyndicate", + "Standing": -71000, + "Title": -2 + }, + { + "Tag": "PerrinSyndicate", + "Standing": 372000, + "Title": 5 + }, + { + "Tag": "RedVeilSyndicate", + "Standing": -71000, + "Title": -2 + }, + { + "Tag": "ArbitersSyndicate", + "Standing": -71000, + "Title": -2 + }, + { + "Tag": "LibrarySyndicate", + "Standing": 23648, + "Title": 0 + }, + { + "Tag": "ConclaveSyndicate", + "Standing": 19401, + "Title": 1 + }, + { + "Tag": "CetusSyndicate", + "Standing": 340664, + "Title": 5 + }, + { + "Tag": "QuillsSyndicate", + "Standing": 261500, + "Title": 5 + }, + { + "Tag": "EventSyndicate", + "Standing": 6300, + "Title": 3 + }, + { + "Tag": "VentKidsSyndicate", + "Standing": 21287, + "Title": 1 + }, + { + "Tag": "SolarisSyndicate", + "Standing": 303111, + "Title": 5 + }, + { + "Tag": "RadioLegionSyndicate", + "Standing": 13900, + "Title": 1 + }, + { + "Tag": "RadioLegionIntermissionSyndicate", + "Standing": 1000, + "Title": 0 + }, + { + "Tag": "RadioLegion2Syndicate", + "Standing": 172550, + "Title": 17 + }, + { + "Tag": "VoxSyndicate", + "Standing": 240000, + "Title": 5 + }, + { + "Tag": "RadioLegionIntermission2Syndicate", + "Standing": 320500, + "Title": 31 + }, + { + "Tag": "RadioLegion3Syndicate", + "Standing": 383300, + "Title": 38 + }, + { + "Tag": "EntratiSyndicate", + "Standing": 240000, + "Title": 4 + }, + { + "Tag": "NecraloidSyndicate", + "Standing": 100000, + "Title": 3 + }, + { + "Tag": "RadioLegionIntermission3Syndicate", + "Standing": 10500, + "Title": 0 + }, + { + "Tag": "RadioLegionIntermission4Syndicate", + "Standing": 80500, + "Title": 7 + }, + { + "Tag": "RadioLegionIntermission5Syndicate", + "Standing": 4000, + "Title": 0 + }, + { + "Tag": "ZarimanSyndicate", + "Standing": 71000, + "Title": 3 + }, + { + "Tag": "KahlSyndicate", + "Standing": 1, + "Title": 1 + }, + { + "Tag": "RadioLegionIntermission6Syndicate", + "Standing": 6500, + "Title": 0 + }, + { + "Tag": "RadioLegionIntermission7Syndicate", + "Standing": 35500, + "Title": 3 + }, + { + "Tag": "RadioLegionIntermission8Syndicate", + "Standing": 2000, + "Title": 0 + }, + { + "Tag": "RadioLegionIntermission9Syndicate", + "Standing": 240000, + "Title": 23 + }, + { + "Tag": "EntratiLabSyndicate", + "Standing": 156000, + "Title": 4 + } + ], + "DailyAffiliation": 28500, + "DailyAffiliationPvp": 28500, + "DailyAffiliationLibrary": 28500, + "DailyAffiliationCetus": 28500, + "DailyAffiliationQuills": 28500, + "DailyAffiliationSolaris": 28500, + "DailyAffiliationVentkids": 28500, + "DailyAffiliationVox": 28500, + "DailyAffiliationEntrati": 28500, + "DailyAffiliationNecraloid": 28500, + "DailyAffiliationZariman": 28500, + "DailyAffiliationKahl": 28500, + "DailyAffiliationCavia": 28500, + "DailyFocus": 375000, + "OperatorLoadOuts": [ + { + "Skins": [ + "/Lotus/Upgrades/Skins/Operator/Heads/FemaleHeadD", + "/Lotus/Upgrades/Skins/Operator/Bodies/FemaleBody", + "/Lotus/Upgrades/Skins/Operator/Hair/HairI", + "", + "", + "/Lotus/Upgrades/Skins/Operator/Hoods/UmbraScarfHood", + "/Lotus/Upgrades/Skins/Operator/BodySuits/BodySuitC", + "/Lotus/Upgrades/Skins/Operator/Sleeves/NoSleeves", + "/Lotus/Upgrades/Skins/Operator/Leggings/LeggingsD", + "/Lotus/Upgrades/Skins/Voices/OperatorVoiceCItem", + "/Lotus/Upgrades/Skins/Operator/Skirts/NoSkirt", + "/Lotus/Upgrades/Skins/Operator/AnimationSets/UnairuAnims", + "", + "/Lotus/Upgrades/Skins/Operator/Heads/FemaleHeadE", + "", + "", + "/Lotus/Upgrades/Skins/Effects/NarmerEvolvingEphemeraA" + ], + "pricol": { + "t0": -668226, + "t1": -1531454, + "t2": -11443299, + "t3": -11443299, + "en": -11443299 + }, + "eyecol": { + "t0": 16008960, + "t1": 5333917, + "t2": -28742, + "t3": 14232832, + "en": 5333917 + }, + "facial": { + "t0": -13881549, + "t1": -4539718, + "t2": -4539718, + "t3": -2544384 + }, + "sigcol": { + "t0": 4211267, + "t1": 312030080, + "en": -2130724224 + }, + "OperatorAmp": { + "$oid": "000000000000000000000000" + }, + "Upgrades": ["5a984fab283a002a196c1d86", "5a984fa52183dba92a258545"], + "AbilityOverride": { + "Ability": "", + "Index": 0 + }, + "cloth": { + "t0": -13881549, + "t1": -11443299, + "t2": -15657962, + "t3": -11443299, + "en": -768256, + "e1": -11443299 + } + } + ], + "UnlockedOperator": true, + "UnlockedAlignment": true, + "Alignment": { + "Wisdom": 12, + "Alignment": -0.030555557 + } + } + ], + "TechProjects": [], + "XpComponents": [], + "XpCacheExpiryDate": { + "$date": { + "$numberLong": "1712258215000" + } + }, + "Stats": { + "MissionsCompleted": 12183, + "MissionsQuit": 1383, + "MissionsFailed": 406, + "MissionsInterrupted": 233, + "MissionsDumped": 14, + "PickupCount": 1664615, + "Weapons": [ + { + "fired": 3120, + "kills": 530, + "equipTime": 14790.6066171, + "xp": 119983, + "assists": 19, + "type": "/Lotus/Weapons/MK1Series/MK1Bo" + }, + { + "fired": 25227, + "hits": 10684, + "kills": 1001, + "headshots": 147, + "equipTime": 38353.30237989999, + "xp": 1435196, + "assists": 225, + "type": "/Lotus/Weapons/Tenno/Rifle/StartingRifle" + }, + { + "fired": 1297, + "hits": 483, + "kills": 105, + "headshots": 5, + "equipTime": 10949.644900399999, + "xp": 641435, + "assists": 15, + "type": "/Lotus/Weapons/MK1Series/MK1Kunai" + }, + { + "fired": 34102, + "kills": 4882, + "equipTime": 73670.73553979999, + "xp": 1017323, + "assists": 384, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/HeatSword/HeatLongSword" + }, + { + "fired": 13866, + "kills": 2, + "equipTime": 20312.38659189999, + "assists": 2, + "type": "/Lotus/Powersuits/Excalibur/DoomSword" + }, + { + "fired": 20360, + "kills": 5852, + "equipTime": 96489.99309099991, + "xp": 4176133, + "assists": 295, + "type": "/Lotus/Weapons/Tenno/Archwing/Melee/Archsword/ArchSwordWeapon" + }, + { + "fired": 67969, + "hits": 16726, + "kills": 431, + "headshots": 13, + "equipTime": 28390.5583702, + "xp": 688801, + "assists": 134, + "type": "/Lotus/Weapons/Tenno/Archwing/Primary/FoldingMachineGun/ArchMachineGun" + }, + { + "fired": 1976, + "hits": 809, + "kills": 105, + "headshots": 14, + "equipTime": 23843.76810740001, + "xp": 3527295, + "assists": 134, + "type": "/Lotus/Weapons/Grineer/GrineerPistol/GrnHeavyPistol" + }, + { + "fired": 229, + "kills": 19, + "equipTime": 237.97948, + "xp": 669, + "type": "/Lotus/Weapons/Tenno/Melee/Fist/FuraxWraith" + }, + { + "fired": 44078, + "kills": 7415, + "equipTime": 114516.27859949997, + "xp": 3845726, + "assists": 448, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/CutlassAndPoignard/CutlassPoignardSwords" + }, + { + "fired": 20471, + "hits": 8022, + "kills": 613, + "headshots": 120, + "equipTime": 34767.35483800001, + "xp": 4863475, + "assists": 387, + "type": "/Lotus/Weapons/Tenno/Rifle/BurstRifle" + }, + { + "fired": 20372, + "hits": 5004, + "equipTime": 24939.016350199978, + "type": "/Lotus/Weapons/Tenno/Pistol/ScannerPistol" + }, + { + "fired": 1806, + "kills": 209, + "equipTime": 6416.4364793, + "xp": 496643, + "assists": 35, + "type": "/Lotus/Weapons/Tenno/Melee/CronusSword/CronusLongSword" + }, + { + "fired": 2388, + "kills": 525, + "equipTime": 12797.703434900002, + "xp": 451968, + "assists": 77, + "type": "/Lotus/Weapons/Tenno/Melee/DualDagger/DualEtherDagger" + }, + { + "fired": 396, + "hits": 166, + "kills": 3, + "equipTime": 2345.8770322, + "xp": 647877, + "assists": 12, + "type": "/Lotus/Weapons/Tenno/Pistol/BurstPistol" + }, + { + "fired": 416062, + "kills": 89487, + "headshots": 4, + "equipTime": 1705648.5895080029, + "xp": 59292506, + "assists": 3388, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/PrimeKatana/PrimeNikana" + }, + { + "fired": 4238, + "hits": 1631, + "kills": 33, + "headshots": 3, + "equipTime": 18789.6345777, + "xp": 2856288, + "assists": 79, + "type": "/Lotus/Weapons/Grineer/GrineerPistol/GrineerAkimboPistol" + }, + { + "fired": 10954, + "hits": 868, + "equipTime": 30581.863240400045, + "type": "/Lotus/Weapons/Tenno/Pistol/LibraryScannerPistol" + }, + { + "fired": 6582, + "hits": 1999, + "kills": 211, + "headshots": 20, + "equipTime": 6377.539762100001, + "xp": 1493092, + "assists": 37, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrnGorgSniperRifle/GrnGorgSniperRifle" + }, + { + "fired": 13860, + "hits": 3589, + "kills": 32, + "headshots": 2, + "equipTime": 3971.7065380000004, + "type": "/Lotus/Weapons/Operator/VoidBubble" + }, + { + "fired": 3608, + "hits": 1798, + "kills": 1198, + "headshots": 150, + "equipTime": 48050.268617100024, + "xp": 19125311, + "assists": 132, + "type": "/Lotus/Weapons/Tenno/Bows/PrimeHuntingBow" + }, + { + "fired": 19313, + "hits": 4558, + "kills": 8987, + "headshots": 61, + "equipTime": 188085.14584160005, + "xp": 25516218, + "assists": 2086, + "type": "/Lotus/Weapons/Grineer/Pistols/GrnTorpedoPistol/GrnTorpedoPistol" + }, + { + "fired": 782, + "hits": 294, + "kills": 170, + "headshots": 22, + "equipTime": 11729.204814899995, + "xp": 3003562, + "assists": 32, + "type": "/Lotus/Weapons/Tenno/Bows/StalkerBow" + }, + { + "fired": 63903, + "kills": 14, + "equipTime": 55714.3049341, + "assists": 5, + "type": "/Lotus/Powersuits/Berserker/BerserkerMelee" + }, + { + "fired": 77373, + "hits": 28055, + "kills": 2397, + "headshots": 360, + "equipTime": 115183.60825519994, + "xp": 7142999, + "assists": 586, + "type": "/Lotus/Weapons/Grineer/Pistols/WraithTwinVipers/WraithTwinVipers" + }, + { + "fired": 1605, + "kills": 238, + "equipTime": 4865.0360908, + "xp": 578419, + "assists": 65, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/StalkerTwo/StalkerTwoSmallSword" + }, + { + "fired": 4471, + "kills": 1607, + "equipTime": 16833.3329711, + "xp": 1024014, + "assists": 210, + "type": "/Lotus/Weapons/Tenno/Melee/Polearms/PrimePolearmWeapon" + }, + { + "fired": 10981, + "hits": 4936, + "kills": 1869, + "headshots": 222, + "equipTime": 186755.18197829984, + "xp": 22591322, + "assists": 316, + "type": "/Lotus/Weapons/Tenno/Pistols/PrimeLex/PrimeLex" + }, + { + "fired": 493, + "hits": 250, + "kills": 10, + "equipTime": 1108.8622878, + "xp": 349707, + "assists": 11, + "type": "/Lotus/Weapons/Tenno/Rifle/SemiAutoRifle" + }, + { + "fired": 1281, + "kills": 82, + "equipTime": 6553.7337449, + "xp": 516790, + "assists": 82, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/PlasmaSword/PlasmaLongSword" + }, + { + "fired": 11560, + "kills": 1791, + "equipTime": 14059.5458939, + "xp": 1279866, + "assists": 124, + "type": "/Lotus/Weapons/Tenno/Melee/Gauntlet/Gauntlet" + }, + { + "fired": 11785, + "hits": 5095, + "kills": 565, + "headshots": 90, + "equipTime": 19111.713638600006, + "xp": 2078680, + "assists": 104, + "type": "/Lotus/Weapons/Tenno/LongGuns/DrakeRifle/DrakeRifle" + }, + { + "fired": 594, + "hits": 195, + "kills": 68, + "headshots": 10, + "equipTime": 7391.8755651, + "xp": 1103709, + "assists": 7, + "type": "/Lotus/Weapons/Tenno/Pistols/PrimeVasto/PrimeVastoPistol" + }, + { + "fired": 5143, + "hits": 307, + "kills": 5093, + "headshots": 8, + "equipTime": 49472.297981200005, + "xp": 2162036, + "assists": 279, + "type": "/Lotus/Weapons/ClanTech/Chemical/RocketLauncher" + }, + { + "fired": 9280, + "hits": 3044, + "kills": 4947, + "headshots": 223, + "equipTime": 143946.88840250002, + "xp": 8980965, + "assists": 468, + "type": "/Lotus/Weapons/Corpus/LongGuns/CrpBFG/CrpBFG" + }, + { + "fired": 517, + "kills": 52, + "equipTime": 2179.9506191, + "xp": 68849, + "assists": 16, + "type": "/Lotus/Weapons/Tenno/Melee/DualShortSword/DualShortSword" + }, + { + "fired": 7289, + "hits": 2992, + "kills": 330, + "headshots": 29, + "equipTime": 4766.6274434000015, + "xp": 1623494, + "assists": 91, + "type": "/Lotus/Weapons/ClanTech/Energy/DeraVandal" + }, + { + "fired": 15612, + "hits": 7035, + "kills": 3339, + "headshots": 455, + "equipTime": 148112.80924420003, + "xp": 13289477, + "assists": 366, + "type": "/Lotus/Weapons/Syndicates/SteelMeridian/Pistols/SMMarelok" + }, + { + "fired": 156, + "hits": 135, + "kills": 2, + "equipTime": 1170.5475629999999, + "xp": 30886, + "assists": 17, + "type": "/Lotus/Weapons/MK1Series/MK1Strun" + }, + { + "fired": 14538, + "hits": 5720, + "kills": 800, + "headshots": 120, + "equipTime": 23242.238537200014, + "xp": 5496960, + "assists": 124, + "type": "/Lotus/Weapons/Tenno/LongGuns/PrimeBurston/PrimeBurston" + }, + { + "fired": 244, + "kills": 14, + "equipTime": 1037.797784, + "xp": 121139, + "assists": 10, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/KatanaAndWakizashi/Katana" + }, + { + "fired": 323, + "hits": 197, + "kills": 147, + "headshots": 26, + "equipTime": 5593.2965517, + "xp": 473030, + "assists": 13, + "type": "/Lotus/Weapons/Tenno/Rifle/TennoSniperRifle" + }, + { + "fired": 192424, + "kills": 63311, + "headshots": 92, + "equipTime": 615756.9795696994, + "xp": 49241947, + "assists": 7950, + "type": "/Lotus/Weapons/Grineer/Melee/GrineerJetPoweredPolearm/GrineerJetPolearm" + }, + { + "fired": 478, + "hits": 369, + "kills": 56, + "headshots": 5, + "equipTime": 2662.4820808, + "xp": 859992, + "assists": 77, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrineerFlakCannon/FlakCannon" + }, + { + "fired": 44, + "kills": 3, + "equipTime": 190.18134, + "xp": 14832, + "assists": 2, + "type": "/Lotus/Weapons/Tenno/Melee/Scythe/EtherScytheWeapon" + }, + { + "fired": 945, + "kills": 160, + "equipTime": 5391.7451587, + "assists": 6, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/DarkSword/DarkSwordDaggerDuals" + }, + { + "fired": 27, + "kills": 2, + "equipTime": 119.8976774, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/DarkSword/DarkSwordDaggerSingle" + }, + { + "fired": 401, + "kills": 31, + "equipTime": 2085.644665, + "assists": 13, + "type": "/Lotus/Weapons/Corpus/Melee/KickAndPunch/BareKnucklesWeapon" + }, + { + "fired": 2877, + "kills": 1007, + "headshots": 2, + "equipTime": 23226.568887600006, + "xp": 503636, + "assists": 122, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/StalkerTwo/StalkerTwoGreatSword" + }, + { + "fired": 182, + "hits": 45, + "kills": 76, + "headshots": 2, + "equipTime": 11210.228440099998, + "xp": 745296, + "assists": 66, + "type": "/Lotus/Weapons/Corpus/Pistols/CrpHandRL/CorpusHandRocketLauncher" + }, + { + "fired": 4791, + "hits": 1742, + "kills": 11, + "headshots": 2, + "equipTime": 1843.8326759999995, + "xp": 453094, + "assists": 16, + "type": "/Lotus/Weapons/Syndicates/CephalonSuda/Pistols/CSDroidArray" + }, + { + "fired": 7978, + "kills": 1844, + "equipTime": 31749.137616099993, + "xp": 2040993, + "assists": 66, + "type": "/Lotus/Weapons/Tenno/Archwing/Melee/ArchHammer/ArchHammer" + }, + { + "fired": 14723, + "hits": 3778, + "kills": 1220, + "headshots": 29, + "equipTime": 86391.09768360002, + "xp": 4192779, + "assists": 71, + "type": "/Lotus/Weapons/Tenno/Archwing/Primary/Railgun/ArchRailgun" + }, + { + "fired": 8598, + "kills": 3912, + "equipTime": 56601.858227099954, + "xp": 3221654, + "assists": 60, + "type": "/Lotus/Weapons/Tenno/Archwing/Melee/ArchScythe/ArchScythe" + }, + { + "fired": 13922, + "hits": 3125, + "kills": 635, + "headshots": 26, + "equipTime": 23941.317707399998, + "xp": 553015, + "assists": 167, + "type": "/Lotus/Weapons/Tenno/Archwing/Primary/RepurposedGrineerAntiAircraftGun/ArchGRNAAGun" + }, + { + "fired": 42766, + "kills": 16360, + "headshots": 2, + "equipTime": 207796.13482329983, + "xp": 11955589, + "assists": 1659, + "type": "/Lotus/Weapons/Tenno/Melee/Axe/PrimeScindo/PrimeScindoWeapon" + }, + { + "fired": 535329, + "hits": 171090, + "kills": 19807, + "headshots": 3542, + "equipTime": 350593.87959449977, + "xp": 11082941, + "assists": 2638, + "type": "/Lotus/Weapons/Tenno/LongGuns/PrimeSoma/PrimeSomaRifle" + }, + { + "fired": 7977, + "kills": 1547, + "headshots": 58, + "equipTime": 176267.1828388999, + "xp": 5460275, + "assists": 157, + "type": "/Lotus/Weapons/Tenno/Melee/Gunblade/TnoGunblade" + }, + { + "fired": 35756, + "kills": 7644, + "equipTime": 73027.30835939999, + "xp": 2495430, + "assists": 613, + "type": "/Lotus/Weapons/Grineer/Melee/GrineerTylAxeAndBoar/RegorAxeShield" + }, + { + "fired": 6908, + "kills": 1242, + "equipTime": 20116.3486006, + "xp": 972623, + "assists": 119, + "type": "/Lotus/Weapons/Tenno/Melee/SwordsAndBoards/MeleeContestWinnerOne/TennoSwordShield" + }, + { + "fired": 1129, + "kills": 141, + "equipTime": 3343.4467511999997, + "xp": 1074423, + "assists": 19, + "type": "/Lotus/Weapons/Tenno/Melee/Gauntlet/BrawlerKnuckles/BrawlerKnuckles" + }, + { + "fired": 64, + "hits": 13, + "kills": 3, + "headshots": 2, + "equipTime": 313.6992636, + "xp": 147246, + "type": "/Lotus/Weapons/Tenno/Pistols/Magnum/Magnum" + }, + { + "fired": 441, + "hits": 157, + "kills": 22, + "headshots": 7, + "equipTime": 1183.811028, + "xp": 555843, + "assists": 3, + "type": "/Lotus/Weapons/Tenno/Akimbo/DualMagnus" + }, + { + "fired": 2443, + "equipTime": 2763.0684979999996, + "type": "/Lotus/Powersuits/MonkeyKing/MonkeyKingStaff" + }, + { + "fired": 30, + "hits": 26, + "equipTime": 486.34734000000003, + "xp": 466320, + "assists": 1, + "type": "/Lotus/Weapons/Corpus/Pistols/CorpusHandShotgun/CorpusHandCannon" + }, + { + "fired": 202, + "hits": 47, + "equipTime": 106.114565, + "xp": 525389, + "assists": 2, + "type": "/Lotus/Weapons/Tenno/Rifle/HeavyRifle" + }, + { + "fired": 66, + "kills": 9, + "equipTime": 835.5412650000001, + "xp": 25108, + "assists": 1, + "type": "/Lotus/Weapons/Tenno/Melee/Axe/DualAxeWeapon" + }, + { + "fired": 430, + "kills": 73, + "equipTime": 969.0135484, + "xp": 65603, + "assists": 4, + "type": "/Lotus/Weapons/Grineer/Melee/GrnDualFireAxe/GrnDualFireAxe" + }, + { + "fired": 445, + "hits": 109, + "kills": 11, + "headshots": 1, + "equipTime": 2210.6725736, + "xp": 520723, + "assists": 38, + "type": "/Lotus/Weapons/Tenno/Pistols/SundialGun/SundialPistol" + }, + { + "fired": 440, + "hits": 197, + "kills": 22, + "equipTime": 7884.689369099999, + "xp": 1033326, + "assists": 7, + "type": "/Lotus/Weapons/Syndicates/RedVeil/Pistols/RVBallistica" + }, + { + "fired": 78, + "hits": 43, + "kills": 8, + "headshots": 1, + "equipTime": 2285.7331909, + "xp": 452887, + "assists": 2, + "type": "/Lotus/Weapons/Grineer/GrineerPistol/GrnScopedPistolPlayer" + }, + { + "fired": 2030, + "hits": 871, + "kills": 262, + "headshots": 39, + "equipTime": 5319.733590399997, + "xp": 557763, + "assists": 31, + "type": "/Lotus/Weapons/Tenno/LongGuns/WraithLatron/WraithLatron" + }, + { + "fired": 318, + "hits": 165, + "kills": 156, + "headshots": 14, + "equipTime": 3515.8783329999997, + "xp": 466980, + "assists": 6, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrineerSniperRifle/GrnSniperRifle" + }, + { + "fired": 1374, + "kills": 182, + "equipTime": 17221.919704300002, + "xp": 530746, + "assists": 14, + "type": "/Lotus/Weapons/Tenno/Melee/Dagger/DarkDagger" + }, + { + "fired": 11291, + "kills": 3693, + "headshots": 7, + "equipTime": 44062.66846980002, + "xp": 1873465, + "assists": 408, + "type": "/Lotus/Weapons/Cephalon/Melee/Hammer/CephHammerWeapon" + }, + { + "fired": 1397, + "kills": 231, + "headshots": 2, + "equipTime": 15355.353013400003, + "xp": 636928, + "assists": 29, + "type": "/Lotus/Weapons/VoidTrader/PrismaSkana" + }, + { + "fired": 9940, + "hits": 3417, + "kills": 4, + "equipTime": 17849.5039825, + "assists": 1, + "type": "/Lotus/Weapons/Tenno/Archwing/Primary/FairyArchwingPistols/FairyArchwingPistols" + }, + { + "fired": 2492, + "equipTime": 20521.91874120001, + "type": "/Lotus/Powersuits/Fairy/FlightSword" + }, + { + "fired": 9541, + "hits": 5977, + "kills": 3723, + "headshots": 523, + "equipTime": 90490.4882045, + "xp": 4317280, + "assists": 348, + "type": "/Lotus/Weapons/Syndicates/SteelMeridian/LongGuns/SMHek" + }, + { + "fired": 400, + "kills": 42, + "equipTime": 7101.938538, + "xp": 308581, + "assists": 10, + "type": "/Lotus/Weapons/Grineer/Melee/GrineerMachetteAndCleaver/DualCleaverWeapon" + }, + { + "fired": 622, + "hits": 9, + "kills": 62, + "headshots": 1, + "equipTime": 5999.3172621, + "xp": 178740, + "assists": 7, + "type": "/Lotus/Weapons/Tenno/Melee/Glaives/LightGlaive/LightGlaiveWeapon" + }, + { + "fired": 9503, + "hits": 7125, + "kills": 5910, + "headshots": 680, + "equipTime": 102935.77586810003, + "xp": 7260579, + "assists": 129, + "type": "/Lotus/Weapons/Syndicates/RedVeil/Bows/RVCernos" + }, + { + "fired": 6975, + "hits": 4795, + "kills": 4292, + "headshots": 673, + "equipTime": 84560.1687018, + "xp": 9566805, + "assists": 650, + "type": "/Lotus/Weapons/Tenno/LongGuns/PrimeVectis/PrimeVectisRifle" + }, + { + "fired": 213, + "hits": 310, + "equipTime": 1669.3731360000002, + "xp": 4554501, + "type": "/Lotus/Powersuits/Ranger/ExaltedBow" + }, + { + "fired": 8473, + "kills": 2358, + "headshots": 3, + "equipTime": 281002.51396120014, + "xp": 12168666, + "assists": 97, + "type": "/Lotus/Weapons/Syndicates/RedVeil/Melee/RVDarkDagger" + }, + { + "fired": 55818, + "hits": 31925, + "kills": 25314, + "headshots": 3099, + "equipTime": 451618.13841360004, + "xp": 41320409, + "assists": 2276, + "type": "/Lotus/Weapons/Tenno/LongGuns/PrimeTigris/PrimeTigris" + }, + { + "fired": 8372, + "hits": 1221, + "kills": 9227, + "headshots": 31, + "equipTime": 46935.929328100014, + "xp": 5303981, + "assists": 664, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrnGrenadeLauncher/GrnGrenadeLauncher" + }, + { + "fired": 55174, + "hits": 54884, + "equipTime": 9891.078556199998, + "type": "/Lotus/Powersuits/Cowgirl/SlingerPistols" + }, + { + "fired": 8705, + "kills": 2455, + "headshots": 8, + "equipTime": 63605.351535799986, + "xp": 1713419, + "assists": 371, + "type": "/Lotus/Weapons/Tenno/Melee/Scythe/StalkerScytheWeapon" + }, + { + "fired": 61, + "equipTime": 2004.0146974000002, + "type": "/Lotus/Weapons/Corpus/LongGuns/CrpBFG/ConclaveBFG" + }, + { + "fired": 3717, + "kills": 1163, + "headshots": 8, + "equipTime": 18949.77687979999, + "xp": 610216, + "assists": 41, + "type": "/Lotus/Weapons/Syndicates/SteelMeridian/Melee/SMSydon" + }, + { + "fired": 719, + "kills": 269, + "equipTime": 1673.487252, + "xp": 176175, + "assists": 96, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/GreatSword/TennoGreatSword" + }, + { + "fired": 182012, + "kills": 83542, + "headshots": 34, + "equipTime": 1161906.5149652015, + "xp": 94413723, + "assists": 7967, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/PrimeGalatine/PrimeGalatine" + }, + { + "fired": 53, + "hits": 8, + "equipTime": 3257.6519428, + "xp": 984790, + "type": "/Lotus/Weapons/Tenno/ThrowingWeapons/LiDagger/LiDagger" + }, + { + "fired": 11320, + "kills": 3241, + "equipTime": 40142.49111139998, + "xp": 2141216, + "assists": 340, + "type": "/Lotus/Weapons/Tenno/Melee/PrimeFragor/PrimeFragor" + }, + { + "fired": 21917, + "hits": 5438, + "kills": 124, + "headshots": 15, + "equipTime": 104003.18163320009, + "assists": 55, + "type": "/Lotus/Types/Friendly/Tenno/OperatorBeamWeapon" + }, + { + "fired": 296, + "equipTime": 105501.38451949994, + "assists": 17, + "type": "/Lotus/Types/Friendly/Tenno/OperatorMeleeWeapon" + }, + { + "fired": 1135, + "kills": 251, + "equipTime": 6215.5208680000005, + "xp": 468615, + "assists": 39, + "type": "/Lotus/Weapons/Grineer/Melee/GrnQueenSceptre/GrnQueenSceptreWeapon" + }, + { + "fired": 290, + "hits": 183, + "kills": 38, + "headshots": 7, + "equipTime": 5437.6698197000005, + "xp": 703238, + "assists": 6, + "type": "/Lotus/Weapons/Tenno/ThrowingWeapons/StalkerKunai" + }, + { + "fired": 3009, + "hits": 91, + "kills": 724, + "headshots": 40, + "equipTime": 38015.5547702, + "xp": 1504993, + "assists": 45, + "type": "/Lotus/Weapons/Tenno/Melee/Glaives/TeshinGlaive/TnTeshinGlaiveWep" + }, + { + "fired": 12988, + "hits": 2498, + "kills": 2284, + "headshots": 42, + "equipTime": 20977.8600996, + "xp": 1510426, + "assists": 243, + "type": "/Lotus/Weapons/Corpus/Pistols/CrpElectroMag/CrpElectroMag" + }, + { + "fired": 2709, + "hits": 399, + "kills": 2544, + "headshots": 18, + "equipTime": 19608.653115900004, + "xp": 1619882, + "assists": 379, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrnCannon/GrnCannonWeapon" + }, + { + "fired": 459, + "hits": 6, + "equipTime": 3710.1452600000002, + "type": "/Lotus/Types/Friendly/Tenno/OperatorBeamWeaponDisabled" + }, + { + "fired": 5, + "hits": 2, + "type": "/Lotus/Types/Enemies/Orokin/Special/OrokinGoldenMawMeleeWeapon" + }, + { + "fired": 1695, + "kills": 207, + "equipTime": 4317.335011, + "xp": 452408, + "assists": 65, + "type": "/Lotus/Weapons/Tenno/Melee/Claws/TennoClaws" + }, + { + "fired": 630, + "kills": 192, + "equipTime": 1020.85812, + "xp": 68150, + "assists": 10, + "type": "/Lotus/Weapons/Tenno/Melee/Nunchaku/Nunchaku/Nunchaku" + }, + { + "fired": 1210, + "hits": 970, + "kills": 682, + "headshots": 121, + "equipTime": 14415.5023751, + "xp": 1869174, + "assists": 141, + "type": "/Lotus/Weapons/Grineer/Pistols/GrnQueenGuardDualPistol/GrnQueenGuardDualPistols" + }, + { + "fired": 434, + "kills": 65, + "equipTime": 4551.587948, + "xp": 547148, + "assists": 27, + "type": "/Lotus/Weapons/Tenno/Melee/PersianMachete/DjinnMachete" + }, + { + "fired": 298321, + "hits": 116321, + "kills": 19526, + "headshots": 3229, + "equipTime": 485681.86578449974, + "xp": 77334171, + "assists": 3126, + "type": "/Lotus/Weapons/Tenno/Pistols/PrimeAkstiletto/PrimeAkstiletto" + }, + { + "fired": 693, + "hits": 468, + "kills": 153, + "headshots": 44, + "equipTime": 2156.1850687, + "xp": 475640, + "assists": 43, + "type": "/Lotus/Weapons/Tenno/Shotgun/PrimeBoar" + }, + { + "fired": 1503, + "hits": 517, + "kills": 11, + "headshots": 1, + "equipTime": 611.8999016000001, + "xp": 500225, + "assists": 8, + "type": "/Lotus/Weapons/VoidTrader/PrismaGrakata" + }, + { + "fired": 39836, + "kills": 19820, + "equipTime": 100129.67982720007, + "xp": 11338987, + "assists": 1870, + "type": "/Lotus/Weapons/Syndicates/CephalonSuda/LongGuns/CSSimulor" + }, + { + "fired": 1996, + "kills": 400, + "equipTime": 30221.753353, + "xp": 1250763, + "assists": 39, + "type": "/Lotus/Weapons/Tenno/Melee/Scythe/ReaperWeapon" + }, + { + "fired": 370, + "hits": 185, + "kills": 56, + "headshots": 13, + "equipTime": 1472.6128146000003, + "xp": 1060275, + "assists": 4, + "type": "/Lotus/Weapons/Tenno/Rifle/LatronPrime" + }, + { + "fired": 277, + "hits": 363, + "kills": 147, + "headshots": 19, + "equipTime": 5308.534762199999, + "xp": 751744, + "assists": 6, + "type": "/Lotus/Weapons/Tenno/Bows/PrimeCernos/PrimeCernos" + }, + { + "fired": 380, + "equipTime": 8403.511186599997, + "type": "/Lotus/Weapons/Tenno/Melee/Scythe/ParisScythe/VariantXmasScythe" + }, + { + "fired": 2866, + "hits": 65, + "equipTime": 8403.7872682, + "type": "/Lotus/Weapons/Tenno/ThrowingWeapons/VariantSnowBalls" + }, + { + "fired": 565, + "hits": 81, + "kills": 211, + "headshots": 1, + "equipTime": 3978.7713148000003, + "xp": 494482, + "assists": 168, + "type": "/Lotus/Weapons/ClanTech/Bio/BioWeapon" + }, + { + "fired": 23262, + "hits": 262, + "kills": 6713, + "headshots": 21, + "equipTime": 236462.74049739982, + "xp": 7797958, + "assists": 325, + "type": "/Lotus/Weapons/Tenno/Melee/Glaives/PrimeGlaive/PrimeGlaiveWeapon" + }, + { + "fired": 82709, + "kills": 30562, + "headshots": 234, + "equipTime": 633910.2241374995, + "xp": 44154798, + "assists": 1431, + "type": "/Lotus/Weapons/Infested/Melee/InfWFAccompanyingSparring/InfestedKogake" + }, + { + "fired": 984, + "hits": 512, + "kills": 64, + "headshots": 10, + "equipTime": 9002.0497682, + "xp": 802837, + "assists": 21, + "type": "/Lotus/Weapons/Tenno/Pistols/PrimeSicarus/PrimeSicarusPistol" + }, + { + "fired": 3804, + "kills": 1012, + "equipTime": 9331.98734, + "xp": 500319, + "assists": 84, + "type": "/Lotus/Weapons/Infested/Melee/Swords/Mios/Mios" + }, + { + "fired": 2327, + "kills": 481, + "equipTime": 29133.420536900012, + "xp": 914104, + "assists": 77, + "type": "/Lotus/Weapons/Corpus/Melee/CrpTonfa/CrpTonfa" + }, + { + "fired": 52, + "hits": 21, + "kills": 1, + "equipTime": 224.486603, + "xp": 538489, + "assists": 3, + "type": "/Lotus/Weapons/Tenno/Shotgun/DoubleBarrelShotgun" + }, + { + "fired": 5409, + "hits": 205, + "kills": 3637, + "headshots": 14, + "equipTime": 43745.8222508, + "xp": 3913589, + "assists": 274, + "type": "/Lotus/Weapons/Syndicates/PerrinSequence/LongGuns/PSPenta" + }, + { + "fired": 2524, + "hits": 1623, + "kills": 638, + "headshots": 224, + "equipTime": 17203.8547468, + "xp": 861094, + "assists": 138, + "type": "/Lotus/Weapons/Grineer/Pistols/GrineerHandShotgun/GrineerHandCannon" + }, + { + "fired": 9941, + "hits": 3216, + "kills": 712, + "headshots": 13, + "equipTime": 4929.373773999999, + "xp": 1448580, + "assists": 289, + "type": "/Lotus/Weapons/Corpus/LongGuns/CrpShockRifle/QuantaVandal" + }, + { + "fired": 411, + "hits": 156, + "kills": 27, + "headshots": 4, + "equipTime": 1124.003816, + "xp": 473790, + "assists": 11, + "type": "/Lotus/Weapons/Infested/Pistols/InfVomitGun/InfVomitGunWep" + }, + { + "fired": 4819, + "hits": 2279, + "kills": 762, + "headshots": 128, + "equipTime": 32326.640247199994, + "xp": 3271987, + "assists": 96, + "type": "/Lotus/Weapons/Tenno/Akimbo/AkLexPrimePistols" + }, + { + "fired": 10892, + "kills": 1857, + "headshots": 36, + "equipTime": 44585.057788099984, + "xp": 3304732, + "assists": 195, + "type": "/Lotus/Weapons/Tenno/Melee/PrimeVenKa/PrimeVenkaClaws" + }, + { + "fired": 98, + "hits": 11, + "equipTime": 561.873525, + "type": "/Lotus/Weapons/Tenno/ThrowingWeapons/VariantTennoStars" + }, + { + "fired": 34, + "equipTime": 561.873499, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/KatanaAndWakizashi/VariantKatana" + }, + { + "fired": 25, + "kills": 9, + "equipTime": 832.9963570000001, + "xp": 455316, + "assists": 3, + "type": "/Lotus/Weapons/Corpus/Pistols/CrpAirPistol/CrpAirPistolArray" + }, + { + "fired": 392, + "kills": 61, + "equipTime": 10464.430260000003, + "xp": 451140, + "assists": 1, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/TnoRapier/TnoRapier" + }, + { + "fired": 265, + "hits": 119, + "kills": 2, + "equipTime": 394.03430799999995, + "xp": 1051304, + "assists": 12, + "type": "/Lotus/Weapons/Tenno/Pistol/Pistol" + }, + { + "fired": 503, + "hits": 135, + "kills": 12, + "headshots": 4, + "equipTime": 1208.7808529, + "xp": 510873, + "assists": 12, + "type": "/Lotus/Weapons/Tenno/Pistol/CrossBow" + }, + { + "fired": 315, + "kills": 5, + "equipTime": 2306.7249060999998, + "xp": 544753, + "assists": 45, + "type": "/Lotus/Weapons/Grineer/Pistols/GrineerCrossbow/GrineerGooGun" + }, + { + "fired": 742, + "hits": 136, + "kills": 50, + "headshots": 16, + "equipTime": 978.1219254000001, + "xp": 101674, + "assists": 5, + "type": "/Lotus/Weapons/Tenno/Akimbo/AkimboBolto" + }, + { + "fired": 161, + "hits": 43, + "kills": 10, + "headshots": 3, + "equipTime": 293.4534187, + "xp": 592791, + "assists": 6, + "type": "/Lotus/Weapons/Tenno/Pistols/TigrisRedeemerSetPistol/TnoBladedPistols" + }, + { + "fired": 908, + "kills": 273, + "equipTime": 7507.656856, + "xp": 934263, + "assists": 29, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/TennoSai/TennoSais" + }, + { + "fired": 38, + "hits": 10, + "kills": 1, + "equipTime": 212.256955, + "xp": 1195660, + "assists": 1, + "type": "/Lotus/Weapons/Tenno/LongGuns/TnoLeverAction/TnoLeverActionRifle" + }, + { + "fired": 6972, + "hits": 22, + "kills": 11262, + "headshots": 2, + "equipTime": 84309.66542260008, + "xp": 4173016, + "assists": 2264, + "type": "/Lotus/Weapons/Tenno/Melee/SunDialAxe/SundialAxeWeapon" + }, + { + "fired": 4478, + "hits": 1206, + "kills": 258, + "headshots": 12, + "equipTime": 27876.502944000003, + "xp": 3520130, + "assists": 57, + "type": "/Lotus/Weapons/Tenno/ThrowingWeapons/PrimeThrowingStar/PrimeHikou" + }, + { + "fired": 3084, + "kills": 654, + "equipTime": 18935.3175601, + "xp": 595876, + "assists": 74, + "type": "/Lotus/Weapons/Syndicates/ArbitersOfHexis/Melee/AHBoltace" + }, + { + "fired": 75, + "kills": 40, + "equipTime": 740.387792, + "xp": 27784, + "type": "/Lotus/Weapons/Tenno/Melee/Maces/PaladinMace/PaladinMaceWeapon" + }, + { + "fired": 1416, + "kills": 203, + "equipTime": 4332.289325999999, + "xp": 818616, + "assists": 225, + "type": "/Lotus/Weapons/Tenno/Melee/Hammer/IceHammer/IceHammer" + }, + { + "fired": 1289, + "hits": 63, + "kills": 626, + "headshots": 42, + "equipTime": 10465.6360011, + "xp": 904533, + "assists": 70, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrnFlameSpear/GrnFlameSpear" + }, + { + "fired": 540, + "hits": 300, + "kills": 87, + "headshots": 16, + "equipTime": 11514.722624699998, + "xp": 660764, + "assists": 36, + "type": "/Lotus/Weapons/ClanTech/Energy/Railgun" + }, + { + "fired": 14527, + "hits": 6155, + "kills": 772, + "headshots": 126, + "equipTime": 14213.682595900003, + "xp": 709441, + "assists": 260, + "type": "/Lotus/Weapons/Tenno/Rifle/BratonPrime" + }, + { + "fired": 218, + "hits": 77, + "kills": 57, + "headshots": 1, + "equipTime": 3160.8629848, + "xp": 625989, + "assists": 9, + "type": "/Lotus/Weapons/Corpus/LongGuns/Spears/Railgun/CorpusRailgun" + }, + { + "fired": 2032, + "hits": 512, + "kills": 8, + "headshots": 1, + "equipTime": 2533.8967950999995, + "xp": 467684, + "assists": 7, + "type": "/Lotus/Weapons/Tenno/Pistols/DexFuris/DexFuris" + }, + { + "fired": 476, + "kills": 88, + "equipTime": 6066.922674, + "xp": 541890, + "assists": 8, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/DexTheSecond/DexTheSecond" + }, + { + "fired": 212, + "hits": 103, + "kills": 28, + "headshots": 2, + "equipTime": 838.6556105999999, + "xp": 476324, + "assists": 1, + "type": "/Lotus/Weapons/Tenno/LongGuns/DexTheThird/DexTheThird" + }, + { + "fired": 284, + "hits": 181, + "kills": 133, + "headshots": 30, + "equipTime": 3306.2414922999997, + "xp": 501623, + "assists": 15, + "type": "/Lotus/Weapons/Tenno/Rifle/VandalSniperRifle" + }, + { + "fired": 2251, + "hits": 921, + "kills": 301, + "headshots": 51, + "equipTime": 6734.428743, + "xp": 1180879, + "assists": 39, + "type": "/Lotus/Weapons/Tenno/Pistols/TnBardPistol/TnBardPistolGun" + }, + { + "fired": 10861, + "hits": 4242, + "kills": 323, + "headshots": 76, + "equipTime": 7065.875884399999, + "xp": 504244, + "assists": 126, + "type": "/Lotus/Weapons/Tenno/LongGuns/TnBardRifle/TnBardRifle" + }, + { + "fired": 1835, + "hits": 1097, + "kills": 1155, + "headshots": 190, + "equipTime": 19489.2563064, + "xp": 1828118, + "assists": 184, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrineerSniperRifle/VulkarWraith" + }, + { + "fired": 84, + "hits": 21, + "equipTime": 59.197564, + "xp": 74459, + "type": "/Lotus/Weapons/ClanTech/Energy/CrpHeavyRifle" + }, + { + "fired": 78010, + "hits": 23895, + "kills": 2445, + "headshots": 276, + "equipTime": 45588.828362099994, + "xp": 4633627, + "assists": 330, + "type": "/Lotus/Weapons/Corpus/LongGuns/Machinegun/SupraVandal" + }, + { + "fired": 5647, + "hits": 2482, + "kills": 74, + "headshots": 16, + "equipTime": 3382.5090687, + "xp": 618251, + "assists": 102, + "type": "/Lotus/Weapons/Grineer/LongGuns/WraithGorgon/WraithGorgon" + }, + { + "fired": 5499, + "kills": 1733, + "equipTime": 89612.84832950009, + "xp": 4027274, + "assists": 51, + "type": "/Lotus/Weapons/Tenno/Archwing/Melee/Archswordandshield/ArchSwordShield" + }, + { + "fired": 465, + "kills": 91, + "equipTime": 6129.0374477999985, + "xp": 737242, + "assists": 43, + "type": "/Lotus/Weapons/Infested/Melee/InfEmbolistScythe/InfestedScythe" + }, + { + "fired": 11389, + "hits": 6121, + "kills": 2736, + "headshots": 281, + "equipTime": 194536.47180630008, + "xp": 15050900, + "assists": 182, + "type": "/Lotus/Weapons/Tenno/Pistols/AllNew1hSG/AllNew1hSG" + }, + { + "fired": 359, + "kills": 45, + "headshots": 1, + "equipTime": 47389.13686720001, + "xp": 1276333, + "assists": 5, + "type": "/Lotus/Weapons/Grineer/Melee/GrineerCombatKnife/GrineerCombatKnife" + }, + { + "fired": 83, + "kills": 4, + "equipTime": 2093.695592, + "xp": 138024, + "assists": 3, + "type": "/Lotus/Weapons/Grineer/Melee/GrineerMachetteAndCleaver/Machete" + }, + { + "fired": 2021, + "kills": 369, + "equipTime": 23878.320579, + "xp": 1250725, + "assists": 80, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/ThreeLeaf/ThreeLeaf" + }, + { + "fired": 50511, + "hits": 11666, + "kills": 1013, + "headshots": 82, + "equipTime": 26214.0623091, + "xp": 1768069, + "assists": 102, + "type": "/Lotus/Weapons/Tenno/Archwing/Primary/FoldingMachineGun/ArchMachineGunVandal" + }, + { + "fired": 76, + "kills": 21, + "equipTime": 4182.980311, + "xp": 622251, + "type": "/Lotus/Weapons/Grineer/Melee/GrineerMachetteAndCleaver/WraithMacheteWeapon" + }, + { + "fired": 752, + "hits": 354, + "kills": 181, + "headshots": 73, + "equipTime": 9280.435739400002, + "xp": 590638, + "assists": 11, + "type": "/Lotus/Weapons/Tenno/Pistols/TnPriestPistolScope/TnPriestPistolWeapon" + }, + { + "fired": 9375, + "hits": 627, + "kills": 1560, + "headshots": 102, + "equipTime": 26152.696294499987, + "xp": 3674805, + "assists": 500, + "type": "/Lotus/Weapons/Tenno/LongGuns/TnPriestSpear/TnPriestSpearGun" + }, + { + "fired": 26690, + "hits": 9116, + "kills": 1735, + "headshots": 285, + "equipTime": 23717.270694600003, + "xp": 2741870, + "assists": 63, + "type": "/Lotus/Weapons/Tenno/LongGuns/PrimeBoltor/PrimeBoltor" + }, + { + "fired": 1621, + "hits": 785, + "kills": 268, + "headshots": 61, + "equipTime": 14659.179447700004, + "xp": 3935678, + "assists": 26, + "type": "/Lotus/Weapons/VoidTrader/VTDetron" + }, + { + "fired": 30864, + "kills": 5098, + "headshots": 1, + "equipTime": 49482.90165999999, + "xp": 3752373, + "assists": 286, + "type": "/Lotus/Weapons/Tenno/Melee/Gauntlet/PrimeAnkyros/PrimeAnkyros" + }, + { + "fired": 29682, + "kills": 8692, + "headshots": 5, + "equipTime": 92402.71827360005, + "xp": 5317849, + "assists": 322, + "type": "/Lotus/Weapons/Tenno/Melee/PrimeSilvaAegis/PrimeSilvaAegis" + }, + { + "fired": 1483, + "kills": 401, + "equipTime": 30989.1241921, + "xp": 1634521, + "assists": 9, + "type": "/Lotus/Weapons/Tenno/Melee/CronusSword/PrimeCronusLongSword" + }, + { + "fired": 4785, + "hits": 2726, + "kills": 854, + "headshots": 22, + "equipTime": 20718.4202581, + "xp": 2897578, + "assists": 464, + "type": "/Lotus/Weapons/Tenno/Pistols/TnGuandoPistol/TnGuandoPistolGun" + }, + { + "fired": 30284, + "kills": 12805, + "headshots": 8, + "equipTime": 118239.07354940007, + "xp": 11007936, + "assists": 822, + "type": "/Lotus/Weapons/Tenno/Melee/Polearms/TnGuandaoPolearm/TnGuandaoPolearmWeapon" + }, + { + "fired": 80, + "kills": 6, + "equipTime": 5972.7592881, + "xp": 843007, + "assists": 8, + "type": "/Lotus/Weapons/Corpus/Melee/Whip/CorpusWhipWeapon" + }, + { + "fired": 23108, + "kills": 7553, + "headshots": 241, + "equipTime": 199846.32308590008, + "xp": 11598120, + "assists": 390, + "type": "/Lotus/Weapons/Grineer/Melee/GrnKusarigama/GrnKusarigamaWeapon" + }, + { + "fired": 793, + "kills": 162, + "equipTime": 2805.9729147000003, + "xp": 486164, + "assists": 48, + "type": "/Lotus/Weapons/Grineer/Melee/GrineerWhip/GrineerWhip" + }, + { + "fired": 833, + "hits": 312, + "kills": 8, + "headshots": 1, + "equipTime": 916.711287, + "xp": 475707, + "assists": 19, + "type": "/Lotus/Weapons/Tenno/Pistols/TennoUzi/TennoUzi" + }, + { + "fired": 422, + "hits": 90, + "kills": 36, + "headshots": 1, + "equipTime": 1008.5363, + "xp": 487328, + "assists": 21, + "type": "/Lotus/Weapons/Tenno/LongGuns/TnoPrmryXbow/TnoPrmryXbowWeapon" + }, + { + "fired": 167, + "kills": 20, + "equipTime": 2648.6276860000003, + "xp": 570756, + "assists": 32, + "type": "/Lotus/Weapons/Tenno/Melee/Scythe/ParisScythe/ParisScythe" + }, + { + "fired": 77, + "kills": 15, + "equipTime": 1414.0093590000001, + "xp": 484392, + "assists": 45, + "type": "/Lotus/Weapons/Tenno/ThrowingWeapons/StickyBomb/StickyBombs" + }, + { + "fired": 315, + "hits": 196, + "kills": 20, + "headshots": 2, + "equipTime": 1808.460834, + "xp": 482946, + "assists": 47, + "type": "/Lotus/Weapons/Tenno/Shotgun/FullAutoShotgun" + }, + { + "fired": 75, + "kills": 9, + "equipTime": 2619.0076295, + "xp": 479879, + "assists": 6, + "type": "/Lotus/Weapons/Corpus/Melee/KickAndPunch/KickPunchWeapon" + }, + { + "fired": 14, + "hits": 4, + "kills": 2, + "headshots": 1, + "equipTime": 318.7581812, + "xp": 581468, + "assists": 1, + "type": "/Lotus/Weapons/Tenno/Bows/AsymetricalBow/AsymetricalBow" + }, + { + "fired": 326, + "kills": 188, + "equipTime": 2557.243974, + "xp": 696018, + "assists": 137, + "type": "/Lotus/Weapons/Tenno/ThrowingWeapons/U18ThrowingKnives/U18throwingknives" + }, + { + "fired": 98, + "hits": 2, + "kills": 5, + "headshots": 1, + "equipTime": 2664.0885289999997, + "xp": 668862, + "assists": 2, + "type": "/Lotus/Weapons/Tenno/Melee/Glaives/Boomerang/BoomerangWeapon" + }, + { + "fired": 71, + "hits": 64, + "kills": 21, + "headshots": 5, + "equipTime": 283.73544999999996, + "xp": 516191, + "assists": 12, + "type": "/Lotus/Weapons/Tenno/Pistols/SawnOffShotgun/TennoHandShotgun" + }, + { + "fired": 76, + "hits": 33, + "equipTime": 107.2500591, + "xp": 161829, + "assists": 5, + "type": "/Lotus/Weapons/Tenno/Rifle/TennoAR" + }, + { + "fired": 220, + "hits": 91, + "equipTime": 2508.1276712000003, + "xp": 756185, + "assists": 2, + "type": "/Lotus/Weapons/Grineer/GrineerPistol/GrineerLightPistol" + }, + { + "fired": 8635, + "hits": 3240, + "kills": 13166, + "headshots": 103, + "equipTime": 111402.85230039999, + "xp": 11230054, + "assists": 2723, + "type": "/Lotus/Weapons/Corpus/Bow/Longbow/CrpBow" + }, + { + "fired": 357, + "kills": 16, + "equipTime": 4441.116182, + "xp": 492734, + "assists": 12, + "type": "/Lotus/Weapons/Corpus/Melee/KickAndPunch/PrismaObex" + }, + { + "fired": 90, + "kills": 17, + "equipTime": 5081.675617700001, + "xp": 589544, + "assists": 1, + "type": "/Lotus/Weapons/Grineer/Melee/GrineerHalberd/GrnHalberd" + }, + { + "fired": 508, + "hits": 137, + "kills": 3, + "headshots": 1, + "equipTime": 2087.577178, + "xp": 542044, + "assists": 8, + "type": "/Lotus/Weapons/Tenno/Pistols/HarlequinGun/HarlequinPistols" + }, + { + "fired": 519, + "kills": 91, + "equipTime": 2323.7006855, + "xp": 463224, + "assists": 47, + "type": "/Lotus/Weapons/Tenno/Melee/Staff/GrnStaff" + }, + { + "fired": 142, + "kills": 11, + "equipTime": 3706.5359909999997, + "xp": 505556, + "assists": 18, + "type": "/Lotus/Weapons/Tenno/Melee/Staff/Staff" + }, + { + "fired": 20, + "hits": 5, + "equipTime": 984.844396, + "xp": 484738, + "assists": 3, + "type": "/Lotus/Weapons/MK1Series/MK1Paris" + }, + { + "fired": 257, + "kills": 65, + "equipTime": 3067.7481606, + "xp": 471016, + "assists": 5, + "type": "/Lotus/Weapons/Tenno/Archwing/Melee/GrnArchHand/GrnArchHandWeapon" + }, + { + "fired": 8134, + "hits": 3317, + "kills": 619, + "headshots": 97, + "equipTime": 11168.554002500001, + "xp": 1367574, + "assists": 186, + "type": "/Lotus/Weapons/Infested/LongGuns/InfWFAccompanyingPri/InfestedBurstRifle" + }, + { + "fired": 364, + "hits": 183, + "kills": 18, + "headshots": 5, + "equipTime": 3481.8476345000004, + "xp": 1204246, + "assists": 15, + "type": "/Lotus/Weapons/Grineer/Pistols/GrnKohmPistol/GrnKohmPistol" + }, + { + "fired": 137, + "hits": 67, + "equipTime": 99.361341, + "xp": 32151, + "assists": 1, + "type": "/Lotus/Weapons/Tenno/Rifle/Rifle" + }, + { + "fired": 42664, + "kills": 20609, + "headshots": 468, + "equipTime": 335407.1786406999, + "xp": 18133217, + "assists": 1363, + "type": "/Lotus/Weapons/Corpus/Melee/Hammer/CorpusHammerWeapon" + }, + { + "fired": 41, + "hits": 24, + "kills": 11, + "headshots": 2, + "equipTime": 484.52226500000006, + "xp": 465734, + "assists": 3, + "type": "/Lotus/Weapons/Tenno/LongGuns/FiveShotSniper/FiveShotSniper" + }, + { + "fired": 136082, + "hits": 29241, + "kills": 89070, + "headshots": 13835, + "equipTime": 1400137.9591822985, + "xp": 94571837, + "assists": 6056, + "type": "/Lotus/Weapons/Corpus/LongGuns/CrpShotgun/CrpShotgun" + }, + { + "fired": 44, + "hits": 16, + "equipTime": 1046.720898, + "xp": 825422, + "assists": 3, + "type": "/Lotus/Weapons/Infested/Pistols/InfestedDartPistol/InfestedDartPistol" + }, + { + "fired": 1257, + "hits": 606, + "kills": 398, + "headshots": 99, + "equipTime": 2515.9709920999994, + "xp": 455033, + "assists": 4, + "type": "/Lotus/Weapons/Tenno/LongGuns/PrimeSybaris/PrimeSybarisRifle" + }, + { + "fired": 495, + "hits": 70, + "kills": 61, + "headshots": 1, + "equipTime": 7856.046201399999, + "xp": 1189341, + "assists": 23, + "type": "/Lotus/Weapons/Infested/Pistols/InfProximityStars/InfProximityStars" + }, + { + "fired": 20353, + "hits": 6567, + "kills": 926, + "headshots": 173, + "equipTime": 13824.587897300004, + "xp": 470998, + "assists": 91, + "type": "/Lotus/Weapons/Tenno/LongGuns/LoginPrimary/SundialRifle" + }, + { + "fired": 1987, + "kills": 486, + "equipTime": 15360.532594000002, + "xp": 888121, + "assists": 27, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/PrimeNamiSkyla/PrimeNamiSkyla" + }, + { + "fired": 16, + "hits": 8, + "kills": 1, + "equipTime": 10.593173, + "xp": 52439, + "assists": 1, + "type": "/Lotus/Weapons/Tenno/Akimbo/DualVastos" + }, + { + "fired": 4698, + "kills": 967, + "headshots": 13, + "equipTime": 131278.4855088, + "xp": 3818160, + "assists": 85, + "type": "/Lotus/Weapons/Grineer/Melee/GrnEgyptSwd/GrnEgyptSwdWeapon" + }, + { + "fired": 33100, + "hits": 20094, + "kills": 158, + "headshots": 9, + "equipTime": 98369.27743369997, + "assists": 25, + "type": "/Lotus/Weapons/Sentients/OperatorAmplifiers/SentTrainingAmplifier/OperatorTrainingAmpWeapon" + }, + { + "fired": 351, + "kills": 8, + "equipTime": 612034.6418851006, + "assists": 10, + "type": "/Lotus/Types/Friendly/Tenno/CombatOperatorMeleeWeapon" + }, + { + "fired": 376, + "hits": 2, + "equipTime": 11270.364216099999, + "type": "/Lotus/Weapons/Tenno/Gear/SpearFishingWeapon" + }, + { + "fired": 7140, + "hits": 2105, + "kills": 889, + "headshots": 67, + "equipTime": 14031.208030299998, + "xp": 675605, + "assists": 176, + "type": "/Lotus/Weapons/Tenno/LongGuns/TnGlassShotgun/TnGlassShotgunGun" + }, + { + "fired": 197, + "hits": 220, + "kills": 6, + "equipTime": 2506.9303736, + "xp": 630703, + "assists": 13, + "type": "/Lotus/Weapons/Tenno/ThrowingWeapons/GlassKunai/GlassKunaiWeapon" + }, + { + "fired": 393, + "equipTime": 11930.605712599998, + "type": "/Lotus/Weapons/Tenno/Gear/SpearFishingWeaponB" + }, + { + "fired": 1979, + "kills": 333, + "equipTime": 68873.7419138, + "xp": 1793774, + "assists": 25, + "type": "/Lotus/Weapons/Grineer/Melee/GrnEgyptSwd/DualGrnEgyptSwdWeapon" + }, + { + "fired": 521, + "equipTime": 17058.435278999998, + "type": "/Lotus/Weapons/Tenno/Gear/SpearFishingWeaponC" + }, + { + "fired": 2872, + "hits": 1012, + "kills": 208, + "headshots": 58, + "equipTime": 4640.0980858, + "xp": 476966, + "assists": 30, + "type": "/Lotus/Weapons/Grineer/LongGuns/LaserAimRifle/LaserAimRifle" + }, + { + "fired": 37662, + "hits": 24643, + "kills": 1112, + "headshots": 20, + "equipTime": 317361.98756909993, + "xp": 3452248, + "assists": 346, + "type": "/Lotus/Weapons/Sentients/OperatorAmplifiers/OperatorAmpWeapon" + }, + { + "fired": 718, + "kills": 221, + "equipTime": 23199.360651299994, + "xp": 472927, + "assists": 34, + "type": "/Lotus/Weapons/Tenno/Melee/Hammer/GlassHammer/GlassHammer" + }, + { + "fired": 70, + "hits": 174, + "kills": 43, + "headshots": 4, + "equipTime": 2730.5468653000003, + "xp": 512047, + "assists": 2, + "type": "/Lotus/Weapons/Tenno/Pistols/PrimeBallistica/PrimeBallistica" + }, + { + "fired": 552, + "kills": 145, + "headshots": 16, + "equipTime": 5201.073075, + "xp": 486908, + "assists": 4, + "type": "/Lotus/Weapons/Tenno/Melee/PrimeDualKamas/PrimeDualKamas" + }, + { + "fired": 1174, + "hits": 423, + "kills": 4, + "equipTime": 4688.4392711, + "xp": 608358, + "assists": 83, + "type": "/Lotus/Weapons/Corpus/LongGuns/CorpusUMP/CorpusUMP" + }, + { + "fired": 3028, + "hits": 1479, + "kills": 50, + "headshots": 8, + "equipTime": 1800.3512050000002, + "xp": 783024, + "assists": 41, + "type": "/Lotus/Weapons/Tenno/LongGuns/TnSMG/TnSMGWeapon" + }, + { + "fired": 462, + "hits": 245, + "kills": 328, + "headshots": 48, + "equipTime": 31763.700881, + "xp": 4529957, + "assists": 47, + "type": "/Lotus/Weapons/Corpus/Pistols/SniperPistol/CrpScopeGun" + }, + { + "fired": 295, + "kills": 95, + "equipTime": 4819.801487000001, + "xp": 453716, + "assists": 43, + "type": "/Lotus/Weapons/Syndicates/CephalonSuda/Melee/CSHeliocor" + }, + { + "fired": 18499, + "hits": 5817, + "kills": 181, + "headshots": 30, + "equipTime": 15975.469497799995, + "xp": 1419363, + "assists": 51, + "type": "/Lotus/Weapons/Syndicates/CephalonSuda/Pistols/CSSynoidGammacor" + }, + { + "fired": 52, + "kills": 8, + "equipTime": 2089.451726, + "assists": 1, + "type": "/Lotus/Weapons/Ostron/Melee/LotusModularWeapon" + }, + { + "fired": 625, + "kills": 118, + "headshots": 3, + "equipTime": 5183.5883178, + "xp": 489016, + "assists": 25, + "type": "/Lotus/Weapons/Tenno/Melee/Polearms/TnHalberdPolearm/TnHalberdPolearmWeapon" + }, + { + "fired": 3008, + "hits": 1256, + "kills": 356, + "headshots": 56, + "equipTime": 3933.2118450000003, + "xp": 468129, + "assists": 65, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrnFourBarrelRifle/GrnFourBarrelRifleWeapon" + }, + { + "fired": 3161, + "hits": 1963, + "kills": 2334, + "headshots": 260, + "equipTime": 24897.512899399993, + "xp": 4038376, + "assists": 109, + "type": "/Lotus/Weapons/Tenno/LongGuns/TnHeavyShotgun/TnHeavyShotgunGun" + }, + { + "fired": 747, + "hits": 361, + "kills": 25, + "headshots": 7, + "equipTime": 1933.3472514, + "xp": 869003, + "assists": 41, + "type": "/Lotus/Weapons/Grineer/Pistols/GrnUzi/GrnUziWeapon" + }, + { + "fired": 23, + "hits": 16, + "equipTime": 1371.58916, + "xp": 253898, + "assists": 1, + "type": "/Lotus/Weapons/Tenno/Pistol/HandShotGun" + }, + { + "fired": 977, + "kills": 229, + "equipTime": 5652.990038000003, + "xp": 477531, + "assists": 38, + "type": "/Lotus/Weapons/Tenno/Melee/Warfan/WarfanWeapon" + }, + { + "fired": 37938, + "hits": 24054, + "kills": 679, + "headshots": 7, + "equipTime": 138530.52153640002, + "xp": 3425601, + "assists": 167, + "type": "/Lotus/Weapons/Sentients/OperatorAmplifiers/Set1/Barrel/SentAmpSet1BarrelPartC" + }, + { + "fired": 1894, + "hits": 300, + "kills": 6, + "equipTime": 1632.90863, + "assists": 6, + "type": "/Lotus/Weapons/Grineer/Eidolon/EidolonSkiffPlayerRifle" + }, + { + "fired": 398, + "hits": 167, + "kills": 59, + "headshots": 12, + "equipTime": 2268.96519, + "xp": 529924, + "assists": 27, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrineerLeverActionRifle/GLARifle" + }, + { + "fired": 269, + "kills": 60, + "equipTime": 5641.761277, + "xp": 518967, + "assists": 11, + "type": "/Lotus/Weapons/Tenno/Melee/LongSword/LongSword" + }, + { + "fired": 811, + "kills": 268, + "headshots": 8, + "equipTime": 13518.0306109, + "xp": 486468, + "assists": 16, + "type": "/Lotus/Weapons/Ostron/Melee/ModularMeleeInfested/Tips/InfestedTipTwo" + }, + { + "fired": 3835, + "hits": 21, + "kills": 935, + "headshots": 45, + "equipTime": 10533.643657799998, + "xp": 768400, + "assists": 139, + "type": "/Lotus/Weapons/Tenno/Melee/SwordsAndBoards/SundialSwordBoard/SundialBoardSword" + }, + { + "fired": 450, + "hits": 156, + "kills": 8, + "headshots": 2, + "equipTime": 924.5695181, + "xp": 528119, + "assists": 7, + "type": "/Lotus/Weapons/Grineer/LongGuns/BurstRifle/GrnBurstRifle" + }, + { + "fired": 120, + "hits": 27, + "equipTime": 161.695288, + "xp": 540939, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrineerAssaultRifle/GrnAssaultRifle" + }, + { + "fired": 16, + "hits": 3, + "equipTime": 2045.2058663, + "xp": 1208217, + "type": "/Lotus/Weapons/Grineer/Pistols/GrineerLeverActionPistol/GLAPistol" + }, + { + "fired": 2375, + "equipTime": 4890.4491038, + "assists": 2, + "type": "/Lotus/Powersuits/Excalibur/DoomSwordUmbra" + }, + { + "fired": 482, + "kills": 81, + "headshots": 6, + "equipTime": 15659.9973493, + "xp": 503144, + "assists": 13, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/UmbraKatana/UmbraKatana" + }, + { + "fired": 92, + "hits": 5, + "kills": 1, + "type": "/Lotus/Weapons/Sentients/OperatorAmplifiers/SentTrainingAmplifier/SentAmpTrainingBarrel" + }, + { + "fired": 454, + "hits": 234, + "kills": 164, + "headshots": 42, + "equipTime": 8992.4302021, + "xp": 850477, + "assists": 8, + "type": "/Lotus/Weapons/Tenno/LongGuns/DoubleBarrelShotgun/TennoDoubleBarrelShotgun" + }, + { + "fired": 2218, + "hits": 936, + "kills": 347, + "headshots": 31, + "equipTime": 46756.893159899984, + "xp": 459553, + "assists": 73, + "type": "/Lotus/Weapons/Sentients/OperatorAmplifiers/Set1/Barrel/SentAmpSet1BarrelPartA" + }, + { + "fired": 56, + "kills": 1, + "equipTime": 4031.8220629999996, + "xp": 474576, + "assists": 2, + "type": "/Lotus/Weapons/Tenno/Melee/GreatSword/GreatSword" + }, + { + "fired": 733, + "hits": 309, + "kills": 55, + "headshots": 8, + "equipTime": 3333.8086220000005, + "xp": 557026, + "assists": 35, + "type": "/Lotus/Weapons/Tenno/LongGuns/TnRevolverRifle/TnRevolverRifleGun" + }, + { + "fired": 222, + "hits": 122, + "kills": 26, + "headshots": 7, + "equipTime": 2850.3646839999997, + "xp": 480006, + "assists": 23, + "type": "/Lotus/Weapons/Tenno/Shotgun/QuadShotgun" + }, + { + "fired": 239, + "hits": 68, + "kills": 1, + "equipTime": 1328.3053800000002, + "xp": 621872, + "assists": 6, + "type": "/Lotus/Weapons/Tenno/ThrowingWeapons/TennoStars" + }, + { + "fired": 1689, + "hits": 484, + "kills": 139, + "headshots": 29, + "equipTime": 2989.671986, + "xp": 532455, + "assists": 17, + "type": "/Lotus/Weapons/Tenno/LongGuns/PrimeTiberon/PrimeTiberonRifle" + }, + { + "fired": 68, + "equipTime": 581.832812, + "xp": 5121964, + "type": "/Lotus/Powersuits/Berserker/BerserkerMeleePrime" + }, + { + "fired": 47, + "hits": 14, + "kills": 1, + "equipTime": 2702.0567302000004, + "xp": 537870, + "assists": 5, + "type": "/Lotus/Weapons/Tenno/Pistols/ConclaveLeverPistol/ConclaveLeverPistol" + }, + { + "fired": 8070, + "kills": 1869, + "headshots": 211, + "equipTime": 181320.8494739001, + "xp": 578000, + "assists": 481, + "type": "/Lotus/Weapons/Orokin/BallasSword/BallasSwordWeapon" + }, + { + "fired": 764, + "kills": 201, + "equipTime": 3389.3907019999997, + "xp": 506260, + "assists": 16, + "type": "/Lotus/Weapons/Tenno/Melee/BrassKnuckles/BrassKnuckles" + }, + { + "fired": 15, + "hits": 7, + "equipTime": 2241.0093452, + "xp": 532479, + "assists": 2, + "type": "/Lotus/Weapons/Tenno/ThrowingWeapons/Kunai" + }, + { + "fired": 397, + "hits": 221, + "equipTime": 20161.3841143, + "type": "/Lotus/Weapons/Tenno/Gear/Conservation/TranqRifle" + }, + { + "fired": 23184, + "hits": 18576, + "kills": 5149, + "headshots": 98, + "equipTime": 102880.32633870003, + "xp": 9816193, + "assists": 681, + "type": "/Lotus/Weapons/Tenno/Pistols/SapientPistol/SapientPistol" + }, + { + "fired": 192, + "equipTime": 6156.7479423, + "type": "/Lotus/Weapons/Tenno/Gear/RobofishSpearBWeapon" + }, + { + "fired": 78105, + "hits": 17547, + "kills": 4081, + "headshots": 152, + "equipTime": 36896.79012469999, + "xp": 2573495, + "assists": 754, + "type": "/Lotus/Weapons/Tenno/LongGuns/SapientPrimary/SapientPrimaryWeapon" + }, + { + "fired": 166, + "equipTime": 7227.9475917, + "type": "/Lotus/Weapons/Tenno/Gear/RobofishSpearCWeapon" + }, + { + "fired": 4109, + "kills": 1056, + "headshots": 145, + "equipTime": 49648.92621379998, + "xp": 2080161, + "assists": 103, + "type": "/Lotus/Weapons/Syndicates/PerrinSequence/Melee/PSLecta" + }, + { + "fired": 780, + "hits": 513, + "kills": 236, + "headshots": 62, + "equipTime": 14592.0005114, + "xp": 1713501, + "assists": 24, + "type": "/Lotus/Weapons/Tenno/LongGuns/RubicoPrime/RubicoPrimeWeapon" + }, + { + "fired": 1949, + "kills": 498, + "headshots": 78, + "equipTime": 25798.911192099993, + "xp": 1443976, + "assists": 75, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/TnTwoHandedKatana/TnTwoHandedKatana" + }, + { + "fired": 113458, + "hits": 60158, + "kills": 4187, + "headshots": 110, + "equipTime": 31701.641972500005, + "xp": 3686794, + "assists": 755, + "type": "/Lotus/Weapons/Tenno/Archwing/Primary/TnShieldframeArchGun/TnShieldFrameArchGun" + }, + { + "fired": 1417, + "kills": 216, + "headshots": 16, + "equipTime": 16507.7457254, + "xp": 1689897, + "assists": 47, + "type": "/Lotus/Weapons/Tenno/Melee/PrimeTekko/PrimeTekko" + }, + { + "fired": 292, + "equipTime": 553.8161504999999, + "assists": 2, + "type": "/Lotus/Powersuits/MonkeyKing/WukongPrimeStaff" + }, + { + "fired": 24381, + "kills": 7693, + "headshots": 671, + "equipTime": 594785.3573376999, + "xp": 33032416, + "assists": 744, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/PrimeGram/PrimeGram" + }, + { + "fired": 96, + "kills": 11, + "headshots": 1, + "equipTime": 5430.7873196, + "xp": 461765, + "assists": 10, + "type": "/Lotus/Weapons/Tenno/Melee/Axe/AxeWeapon" + }, + { + "fired": 12176, + "hits": 295, + "kills": 50, + "equipTime": 50.494606, + "assists": 57, + "type": "/Lotus/Weapons/CrewShip/MassDriver/AutoCannon/AutoCannon" + }, + { + "fired": 38534, + "hits": 1, + "equipTime": 48210.01236719998, + "assists": 3, + "type": "/Lotus/Weapons/Tenno/Gear/FireExtinguisher" + }, + { + "fired": 17340, + "hits": 7735, + "kills": 2239, + "headshots": 411, + "equipTime": 29470.091456499995, + "xp": 1693620, + "assists": 218, + "type": "/Lotus/Weapons/Grineer/KuvaLich/LongGuns/Kohm/KuvaKohm" + }, + { + "fired": 2405, + "hits": 310, + "kills": 13, + "equipTime": 389.252359, + "assists": 23, + "type": "/Lotus/Types/Game/CrewShip/GrineerDestroyer/DestroyerMissileLauncher" + }, + { + "fired": 319, + "hits": 3, + "kills": 1, + "assists": 6, + "type": "/Lotus/Weapons/CrewShip/Laser/Blaster/LavanBlasterTierA" + }, + { + "fired": 283, + "kills": 70, + "assists": 13, + "type": "/Lotus/Weapons/CrewShip/Missiles/MissleLauncherWeapon" + }, + { + "fired": 1704, + "hits": 40, + "kills": 217, + "assists": 47, + "type": "/Lotus/Weapons/CrewShip/Laser/Blaster/ZektiBlasterShotgunTierB" + }, + { + "fired": 448, + "kills": 16, + "equipTime": 5256.366890800001, + "type": "/Lotus/Weapons/CrewShip/Laser/MegaLaser" + }, + { + "fired": 13222, + "hits": 296, + "kills": 55, + "assists": 42, + "type": "/Lotus/Weapons/CrewShip/MassDriver/AutoCannon/LavanAutoCannonTierB" + }, + { + "fired": 28, + "kills": 4, + "type": "/Lotus/Weapons/CrewShip/Missiles/MultiMissileLauncherWeapon" + }, + { + "fired": 388, + "hits": 5, + "assists": 2, + "type": "/Lotus/Weapons/CrewShip/Laser/Blaster/VidarBlasterTierC" + }, + { + "fired": 283, + "kills": 3, + "assists": 16, + "type": "/Lotus/Types/Game/CrewShip/GrineerDestroyer/DestroyerTurretCannons" + }, + { + "fired": 2513, + "hits": 150, + "kills": 3, + "assists": 15, + "type": "/Lotus/Weapons/CrewShip/MassDriver/AutoCannon/VidarAutoCannonTierB" + }, + { + "fired": 1283, + "hits": 36, + "kills": 9, + "assists": 14, + "type": "/Lotus/Weapons/CrewShip/MassDriver/AutoCannon/ZektiAutoCannonTierB" + }, + { + "fired": 6420, + "hits": 103, + "kills": 2, + "assists": 17, + "type": "/Lotus/Weapons/CrewShip/Laser/Blaster/ZektiBlasterTierB" + }, + { + "fired": 313, + "hits": 149, + "type": "/Lotus/Weapons/CrewShip/Missiles/MissleLauncherEMPWeapon" + }, + { + "fired": 216, + "hits": 9, + "assists": 1, + "type": "/Lotus/Weapons/CrewShip/Laser/Blaster/Blaster" + }, + { + "fired": 13876, + "hits": 47, + "kills": 2290, + "headshots": 13, + "equipTime": 73289.32206849998, + "assists": 159, + "type": "/Lotus/Weapons/CrewShip/Laser/Blaster/ZektiBlasterShotgunTierC" + }, + { + "fired": 2447, + "hits": 29, + "kills": 8, + "equipTime": 242.63110599999996, + "assists": 9, + "type": "/Lotus/Weapons/CrewShip/MassDriver/AutoCannon/ZektiAutoCannonTierC" + }, + { + "fired": 554, + "hits": 31, + "kills": 4, + "equipTime": 3200.541053, + "xp": 68263, + "assists": 2, + "type": "/Lotus/Weapons/Tenno/Archwing/Primary/ArchBurstGun/ArchBurstGun" + }, + { + "fired": 4429, + "hits": 44, + "kills": 5, + "equipTime": 38.7461937, + "assists": 13, + "type": "/Lotus/Weapons/CrewShip/Laser/Blaster/ZektiBlasterTierC" + }, + { + "fired": 357, + "hits": 16, + "kills": 12, + "assists": 13, + "type": "/Lotus/Weapons/CrewShip/Laser/Blaster/VidarBlasterShotgunTierC" + }, + { + "fired": 10, + "kills": 2, + "assists": 1, + "type": "/Lotus/Weapons/CrewShip/Missiles/MissleLauncherWeaponTierB" + }, + { + "fired": 1380, + "hits": 34, + "kills": 3, + "equipTime": 35.573681, + "assists": 12, + "type": "/Lotus/Weapons/CrewShip/Laser/Blaster/VidarBlasterTierB" + }, + { + "fired": 1153, + "kills": 557, + "assists": 1, + "type": "/Lotus/Weapons/CrewShip/Missiles/MissleLauncherWeaponTierC" + }, + { + "fired": 3094, + "hits": 913, + "kills": 93, + "headshots": 12, + "equipTime": 3572.0281579999996, + "xp": 450000, + "assists": 27, + "type": "/Lotus/Weapons/Grineer/KuvaLich/LongGuns/Karak/KuvaKarak" + }, + { + "fired": 637, + "hits": 94, + "kills": 767, + "headshots": 2, + "equipTime": 6051.406354999999, + "xp": 1316263, + "assists": 57, + "type": "/Lotus/Weapons/Grineer/Bows/GrnBow/GrnBowWeapon" + }, + { + "fired": 3689, + "kills": 989, + "headshots": 130, + "equipTime": 88117.4344635, + "xp": 578000, + "assists": 138, + "type": "/Lotus/Weapons/Grineer/Melee/GrnKuvaLichScythe/GrnKuvaLichScytheWeapon" + }, + { + "fired": 1799, + "hits": 412, + "kills": 719, + "headshots": 18, + "equipTime": 9818.2353174, + "xp": 740650, + "assists": 126, + "type": "/Lotus/Weapons/Sentients/Shedu/SheduHeavyWeapon" + }, + { + "fired": 18573, + "hits": 6089, + "kills": 1175, + "headshots": 85, + "equipTime": 13309.109245899997, + "xp": 1740960, + "assists": 462, + "type": "/Lotus/Weapons/Sentients/SentRifleNewWar/SentRifleNewWarGun" + }, + { + "fired": 57, + "kills": 2, + "headshots": 1, + "equipTime": 12322.610212099999, + "xp": 487568, + "assists": 3, + "type": "/Lotus/Weapons/Tenno/Melee/DualKamas/SingleKama" + }, + { + "fired": 3035, + "hits": 3035, + "equipTime": 413.738377, + "type": "/Lotus/Powersuits/Cowgirl/PrimeSlingerPistols" + }, + { + "fired": 6572, + "hits": 212, + "kills": 1536, + "headshots": 191, + "equipTime": 46122.204773900005, + "xp": 2019511, + "assists": 139, + "type": "/Lotus/Weapons/Corpus/Melee/Glaive/CrpGhostCatcherGlaive/CrpGhostCatcherGlaive" + }, + { + "fired": 440, + "equipTime": 9773.0097101, + "xp": 10750694, + "type": "/Lotus/Powersuits/IronFrame/BlastWeapon" + }, + { + "fired": 592, + "kills": 143, + "headshots": 26, + "equipTime": 5717.662501700001, + "xp": 480648, + "assists": 17, + "type": "/Lotus/Weapons/Tenno/Melee/Gunblade/RedeemerPrime/RedeemerPrimeWep" + }, + { + "fired": 28040, + "hits": 6817, + "kills": 3947, + "headshots": 74, + "equipTime": 26363.0442329, + "xp": 578000, + "assists": 846, + "type": "/Lotus/Weapons/Grineer/HeavyWeapons/GrnHeavyGrenadeLauncher" + }, + { + "fired": 2000, + "hits": 496, + "kills": 98, + "headshots": 29, + "equipTime": 5886.533635100001, + "xp": 1353334, + "assists": 7, + "type": "/Lotus/Weapons/Tenno/Pistols/TnJetTurbine/TnJetTurbinePistolWeapon" + }, + { + "fired": 149, + "kills": 24, + "headshots": 10, + "equipTime": 5806.509144899999, + "xp": 543936, + "assists": 1, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/TnRailjackGreatKatana/TnRailJackGreatKatanaWeapon" + }, + { + "fired": 2201, + "kills": 135, + "headshots": 39, + "equipTime": 8497.725730600001, + "assists": 347, + "type": "/Lotus/Types/Enemies/Orokin/Entrati/EntratiTech/NechroTech/NechroTechFist" + }, + { + "fired": 5149, + "hits": 1260, + "kills": 197, + "headshots": 10, + "equipTime": 985.655912, + "assists": 70, + "type": "/Lotus/Weapons/Tenno/Archwing/Primary/ThanoTechArchLongGun/ThanoTechMechLongGun" + }, + { + "fired": 3315, + "equipTime": 459.68573, + "type": "/Lotus/Weapons/Tenno/Gear/MechFireExtinguisher" + }, + { + "fired": 136, + "equipTime": 3449.080495, + "type": "/Lotus/Weapons/Infested/FishingSpear/InfFishingSpearA/InfFishingSpearAWeapon" + }, + { + "fired": 158, + "equipTime": 2027.152797, + "type": "/Lotus/Weapons/Infested/FishingSpear/InfFishingSpearB/InfFishingSpearBWeapon" + }, + { + "fired": 7986, + "hits": 1985, + "kills": 3, + "equipTime": 23846.070062400006, + "xp": 26376117, + "type": "/Lotus/Types/Enemies/Orokin/Entrati/EntratiTech/NechroTech/ExaltedArtilleryWeapon" + }, + { + "fired": 10276, + "hits": 3397, + "kills": 98, + "headshots": 2, + "equipTime": 5264.194512099999, + "xp": 3497599, + "assists": 49, + "type": "/Lotus/Weapons/Sentients/OperatorAmplifiers/Set1/Barrel/SentAmpSet1BarrelPartC_Primary" + }, + { + "fired": 2149, + "hits": 1004, + "kills": 14, + "headshots": 1, + "equipTime": 10927.0145047, + "xp": 904091, + "assists": 33, + "type": "/Lotus/Weapons/Tenno/LongGuns/PrimeStradavar/PrimeStradavarGun" + }, + { + "fired": 50, + "hits": 18, + "kills": 1, + "equipTime": 15043.2180117, + "xp": 2068944, + "assists": 3, + "type": "/Lotus/Weapons/Tenno/ThrowingWeapons/PrimeLiDagger/PrimeLiDagger" + }, + { + "fired": 444, + "hits": 8, + "kills": 138, + "headshots": 10, + "equipTime": 3917.310788, + "xp": 775954, + "assists": 10, + "type": "/Lotus/Weapons/Tenno/Melee/SwordsAndBoards/PacifistShieldAndSword/PacifistShieldSword" + }, + { + "fired": 326, + "equipTime": 472.30265099999997, + "xp": 1101152, + "type": "/Lotus/Powersuits/Pacifist/PacifistFist" + }, + { + "fired": 229933, + "hits": 100008, + "kills": 14241, + "headshots": 1072, + "equipTime": 53259.27827400003, + "xp": 24715616, + "assists": 2209, + "type": "/Lotus/Weapons/Tenno/Archwing/Primary/ThanoTechArchLongGun/ThanoTechLongGun" + }, + { + "fired": 117, + "equipTime": 180.93869, + "type": "/Lotus/Types/Enemies/Orokin/Entrati/EntratiTech/NechroTech/AbilitySword/NechroTechSwordWeapon" + }, + { + "fired": 105, + "kills": 7, + "headshots": 7, + "equipTime": 3133.0767158, + "assists": 29, + "type": "/Lotus/Types/Enemies/Orokin/Entrati/EntratiTech/Thanotech/ThanoTechFist" + }, + { + "fired": 274, + "hits": 122, + "kills": 32, + "headshots": 3, + "equipTime": 548.4640939999999, + "xp": 570524, + "assists": 6, + "type": "/Lotus/Weapons/Tenno/LongGuns/GarudaCrossbow/GarudaCrossbow" + }, + { + "fired": 21, + "kills": 4, + "headshots": 1, + "equipTime": 5564.104823500002, + "xp": 1895644, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/KrisDagger/KrisDagger" + }, + { + "fired": 16, + "equipTime": 44.459312, + "type": "/Lotus/Weapons/CrewShip/Laser/Blaster/VidarBlasterShotgunTierA" + }, + { + "fired": 186, + "hits": 30, + "assists": 4, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Weapons/CorpusDestroyerMissileWeapon" + }, + { + "fired": 136, + "hits": 71, + "kills": 2, + "type": "/Lotus/Weapons/CrewShip/Missiles/MissleLauncherEMPWeaponTierC" + }, + { + "fired": 451, + "kills": 195, + "headshots": 37, + "xp": 858951, + "assists": 6, + "type": "/Lotus/Powersuits/Wraith/ReaperMeleeWeapon" + }, + { + "fired": 46, + "hits": 31, + "kills": 15, + "equipTime": 347.98923, + "type": "/Lotus/Weapons/CrewShip/FlakCannon/AiGhostShipCannon" + }, + { + "fired": 2, + "type": "/Lotus/Weapons/CrewShip/Missiles/GhostShipMissileLauncherWeapon" + }, + { + "fired": 1366, + "kills": 265, + "headshots": 34, + "equipTime": 6457.752707000001, + "xp": 993260, + "assists": 44, + "type": "/Lotus/Powersuits/Garuda/GarudaClaws" + }, + { + "fired": 180, + "hits": 80, + "kills": 3, + "equipTime": 2385.5168399, + "xp": 758015, + "assists": 9, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrnSpark/GrnSparkRifle" + }, + { + "fired": 264, + "hits": 93, + "kills": 23, + "headshots": 1, + "equipTime": 930.232708, + "xp": 768526, + "assists": 62, + "type": "/Lotus/Weapons/Tenno/LongGuns/TnWispRifle/TnWispRifle" + }, + { + "fired": 519, + "kills": 3, + "equipTime": 172.280073, + "assists": 3, + "type": "/Lotus/Weapons/CrewShip/ElectricTether/ZektiElectricTetherCannonTierC" + }, + { + "fired": 347, + "kills": 20, + "headshots": 2, + "equipTime": 1151.155251, + "assists": 2, + "type": "/Lotus/Weapons/CrewShip/IceSniper/ZektiIceSniperCannonTierC" + }, + { + "fired": 39, + "equipTime": 26.876684, + "type": "/Lotus/Weapons/CrewShip/ShrapnelShotgun/ZektiShrapnelShotgunTierC" + }, + { + "fired": 1672, + "hits": 547, + "equipTime": 1250.3525730000001, + "xp": 954262, + "type": "/Lotus/Powersuits/Fairy/PrimeFlightPistols" + }, + { + "fired": 62, + "equipTime": 1250.353533, + "xp": 954262, + "type": "/Lotus/Powersuits/Fairy/PrimeFlightSword" + }, + { + "fired": 21, + "hits": 1, + "equipTime": 1240.8181399999999, + "xp": 659691, + "assists": 1, + "type": "/Lotus/Weapons/Grineer/Melee/GrnBoomerang/GrnBoomerang" + }, + { + "fired": 1255, + "hits": 531, + "kills": 37, + "headshots": 5, + "equipTime": 672.8211, + "xp": 519188, + "assists": 26, + "type": "/Lotus/Weapons/Infested/LongGuns/InfCrpShockSwarm/InfCrpShockSwarmRifle" + }, + { + "fired": 258, + "hits": 100, + "equipTime": 1981.170107, + "xp": 494051, + "assists": 17, + "type": "/Lotus/Weapons/Infested/LongGuns/QuantaFullyInfested/InfQuantaRifle" + }, + { + "fired": 25, + "hits": 13, + "equipTime": 159.3551813, + "xp": 892767, + "type": "/Lotus/Weapons/Tenno/Akimbo/AkimboViperPistols" + }, + { + "fired": 146, + "kills": 6, + "equipTime": 17019.52525, + "xp": 790503, + "assists": 12, + "type": "/Lotus/Weapons/Grineer/Melee/GunBlade/GrnGunBlade/GrnGunblade" + }, + { + "fired": 1, + "type": "/Lotus/Weapons/CrewShip/Missiles/MultiMissileLauncherWeaponTierC" + }, + { + "fired": 47304, + "hits": 18757, + "kills": 2155, + "headshots": 436, + "equipTime": 91887.69640329994, + "xp": 722000, + "assists": 407, + "type": "/Lotus/Weapons/Corpus/Pistols/CrpBriefcaseAkimbo/CrpBriefcaseAkimboPistol" + }, + { + "fired": 941, + "hits": 520, + "kills": 187, + "headshots": 18, + "equipTime": 3044.6425369999997, + "xp": 450000, + "assists": 41, + "type": "/Lotus/Weapons/Corpus/BoardExec/Secondary/CrpBEDetron/CrpBEDetron" + }, + { + "fired": 3195, + "hits": 1049, + "kills": 63, + "headshots": 9, + "equipTime": 2274.845631, + "xp": 514305, + "assists": 28, + "type": "/Lotus/Weapons/Tenno/Pistols/TnOdaliskSmg/TnOdaliskSmgPistol" + }, + { + "fired": 96, + "equipTime": 21.894701, + "type": "/Lotus/Weapons/CrewShip/MassDriver/AutoCannon/AutoCannonTierC" + }, + { + "fired": 26803, + "hits": 12518, + "kills": 18417, + "headshots": 2881, + "equipTime": 204953.26908859998, + "xp": 722000, + "assists": 1836, + "type": "/Lotus/Weapons/Corpus/BoardExec/Primary/CrpBEArcaPlasmor/CrpBEArcaPlasmor" + }, + { + "fired": 12, + "hits": 12, + "equipTime": 308.397744, + "xp": 925777, + "type": "/Lotus/Powersuits/Ranger/PrimeExaltedBow" + }, + { + "fired": 38, + "hits": 13, + "equipTime": 2639.9995828000006, + "xp": 893993, + "type": "/Lotus/Weapons/Tenno/Pistols/QuillDartgun/QuillDartGunWeapon" + }, + { + "fired": 1027, + "kills": 144, + "headshots": 21, + "equipTime": 7853.805218899999, + "xp": 549644, + "assists": 110, + "type": "/Lotus/Weapons/Grineer/Melee/GrnGhoulSaw/GrnGhoulSawPlayer" + }, + { + "fired": 142, + "hits": 72, + "kills": 60, + "headshots": 5, + "equipTime": 1538.8706484999998, + "xp": 785691, + "assists": 42, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrineerAssaultRifle/TwinGrakatas" + }, + { + "fired": 1, + "equipTime": 4175.3809, + "type": "/Lotus/Types/Friendly/PlayerControllable/Weapons/ControllableElectroProd" + }, + { + "fired": 35, + "kills": 4, + "headshots": 1, + "equipTime": 539.229, + "type": "/Lotus/Types/Friendly/PlayerControllable/Weapons/ControllableGrineerMachete" + }, + { + "fired": 900, + "hits": 335, + "kills": 11, + "equipTime": 606.61249, + "type": "/Lotus/Types/Friendly/PlayerControllable/Weapons/ControllableGrnAssaultRifle" + }, + { + "fired": 586, + "hits": 409, + "kills": 25, + "headshots": 9, + "equipTime": 4349.4798, + "type": "/Lotus/Types/Friendly/PlayerControllable/Weapons/ControllablePlinx" + }, + { + "fired": 27, + "hits": 23, + "kills": 16, + "headshots": 1, + "equipTime": 88.231544, + "type": "/Lotus/Types/Friendly/PlayerControllable/Weapons/ControllablePrimeCorinth" + }, + { + "fired": 514, + "kills": 57, + "headshots": 3, + "type": "/Lotus/Types/Friendly/PlayerControllable/Weapons/TeshinDualSwords" + }, + { + "fired": 52, + "type": "/Lotus/Types/Friendly/PlayerControllable/Weapons/TeshinFighterDualSwords" + }, + { + "fired": 17, + "kills": 5, + "equipTime": 1822.623247, + "type": "/Lotus/Weapons/Operator/Melee/DrifterTazer/DrifterTazerWep" + }, + { + "fired": 249, + "hits": 153, + "kills": 43, + "headshots": 5, + "equipTime": 4607.650926, + "type": "/Lotus/Weapons/Operator/Pistols/DrifterPistol/DrifterPistolWeapon" + }, + { + "fired": 609, + "hits": 261, + "kills": 212, + "headshots": 30, + "equipTime": 3713.7994, + "type": "/Lotus/Weapons/Tenno/Bows/Omicrus/OmicrusWep" + }, + { + "fired": 19, + "hits": 2, + "equipTime": 40.76696, + "xp": 27239, + "type": "/Lotus/Weapons/Operator/Pistols/DrifterPistol/DrifterPistolPlayerWeapon" + }, + { + "fired": 37592, + "hits": 6693, + "kills": 300, + "headshots": 8, + "equipTime": 3227.8410681999994, + "xp": 189569, + "assists": 36, + "type": "/Lotus/Weapons/Corpus/OperatorAmplifiers/Set1/Barrel/CorpAmpSet1BarrelPartB_Primary" + }, + { + "fired": 527, + "hits": 27, + "kills": 10, + "equipTime": 75.767044, + "type": "/Lotus/Types/Friendly/PlayerControllable/Weapons/KahlAAGunEmplacement" + }, + { + "fired": 5676, + "hits": 2174, + "kills": 62, + "headshots": 7, + "equipTime": 1507.3149, + "type": "/Lotus/Types/Friendly/PlayerControllable/Weapons/KahlAssaultRifle" + }, + { + "fired": 45, + "kills": 11, + "equipTime": 1627.9045, + "type": "/Lotus/Types/Friendly/PlayerControllable/Weapons/KahlMachete" + }, + { + "fired": 129911, + "hits": 25555, + "kills": 268, + "headshots": 15, + "equipTime": 4023.0404418, + "xp": 1580120, + "assists": 221, + "type": "/Lotus/Weapons/Corpus/OperatorAmplifiers/Set1/Barrel/CorpAmpSet1BarrelPartB" + }, + { + "fired": 84, + "kills": 4, + "equipTime": 2576.4508341, + "xp": 1237586, + "assists": 9, + "type": "/Lotus/Weapons/Tenno/Archwing/Melee/ExaltedArchScythe/ExaltedAWScytheWeapon" + }, + { + "fired": 438, + "hits": 79, + "kills": 176, + "headshots": 17, + "equipTime": 2576.4509241, + "xp": 1398150, + "assists": 39, + "type": "/Lotus/Weapons/Tenno/LongGuns/TnoLotusPodShotgun/TnoLotusPodShotgun" + }, + { + "fired": 6, + "kills": 1, + "equipTime": 1605.5680633, + "xp": 420634, + "type": "/Lotus/Weapons/Operator/Melee/DrifterTazer/DrifterTazerPlayerWep" + }, + { + "fired": 211, + "hits": 70, + "kills": 68, + "headshots": 11, + "equipTime": 1605.5681233, + "xp": 464724, + "assists": 30, + "type": "/Lotus/Weapons/Tenno/Bows/Omicrus/OmicrusPlayerWep" + }, + { + "fired": 11887, + "hits": 581, + "kills": 22, + "equipTime": 768.109855, + "xp": 463649, + "assists": 24, + "type": "/Lotus/Weapons/Tenno/LongGuns/RevenantShotgun/RevenantShotgun" + }, + { + "fired": 137, + "hits": 53, + "kills": 25, + "headshots": 4, + "equipTime": 3256.3291081, + "xp": 1135064, + "type": "/Lotus/Weapons/Tenno/LongGuns/TnQuadSniper/TnQuadSniper" + }, + { + "fired": 536, + "kills": 123, + "headshots": 13, + "equipTime": 3256.3288506, + "xp": 867495, + "assists": 32, + "type": "/Lotus/Weapons/Tenno/Melee/Axe/WolfFrameAxeWeapon" + }, + { + "fired": 645, + "kills": 93, + "headshots": 10, + "equipTime": 15223.915692999999, + "assists": 6, + "type": "/Lotus/Types/Friendly/PlayerControllable/Weapons/DuviriDualSwords" + }, + { + "fired": 94, + "kills": 2, + "equipTime": 846.57251, + "type": "/Lotus/Types/Friendly/PlayerControllable/Weapons/DuviriTutorialDualSwords" + }, + { + "fired": 297, + "hits": 97, + "kills": 10, + "headshots": 2, + "equipTime": 14864.354808999999, + "type": "/Lotus/Weapons/Operator/Pistols/DrifterPistol/DuviriDrifterPistolWeapon" + }, + { + "fired": 703, + "kills": 321, + "headshots": 56, + "equipTime": 5350.0196, + "type": "/Lotus/Weapons/Tenno/Melee/Hammer/HammerWeapon" + }, + { + "fired": 12, + "hits": 7, + "kills": 5, + "headshots": 1, + "equipTime": 1348.313582, + "type": "/Lotus/Weapons/Tenno/Pistol/HeavyPistol" + }, + { + "fired": 290, + "hits": 83, + "kills": 22, + "headshots": 4, + "equipTime": 2615.85081, + "assists": 18, + "type": "/Lotus/Weapons/Corpus/LongGuns/CrpSentExperimentRifle/CrpSentExperimentRifle" + }, + { + "fired": 583, + "kills": 114, + "headshots": 22, + "equipTime": 4002.41347, + "assists": 26, + "type": "/Lotus/Weapons/Sentients/SentJointedScythe/SentJointedScytheWeapon" + }, + { + "fired": 7, + "equipTime": 47.629436, + "type": "/Lotus/Weapons/Tenno/LongGuns/TnRailjackRifle/RailjackRifleGun" + }, + { + "fired": 22, + "equipTime": 7.0961814, + "type": "/Lotus/Types/Enemies/Duviri/Dragon/Ground/DuviriDragonArchGunWeapon" + }, + { + "fired": 892, + "hits": 316, + "kills": 162, + "headshots": 10, + "equipTime": 15296.455733399998, + "xp": 3995747, + "assists": 71, + "type": "/Lotus/Weapons/Tenno/Grimoire/TnGrimoire" + }, + { + "fired": 255, + "hits": 130, + "kills": 11, + "headshots": 4, + "equipTime": 360.05539, + "type": "/Lotus/Weapons/1999/AK47/AK47Weapon" + }, + { + "fired": 49, + "kills": 15, + "headshots": 1, + "equipTime": 360.05536, + "type": "/Lotus/Weapons/1999/Skana/Skana1999Weapon" + }, + { + "fired": 2536, + "hits": 1579, + "kills": 516, + "headshots": 122, + "equipTime": 10674.5309938, + "xp": 884645, + "assists": 111, + "type": "/Lotus/Weapons/Tenno/Zariman/LongGuns/PumpShotgun/ZarimanPumpShotgun" + }, + { + "fired": 63, + "hits": 12, + "equipTime": 153.97985500000001, + "type": "/Lotus/Weapons/Grineer/Pistols/GrnDWUniques/GrnTwinKohmaks" + }, + { + "fired": 241, + "kills": 48, + "headshots": 10, + "equipTime": 1528.519934, + "assists": 4, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/DaxDuviriTwoHandedKatana/DaxDuviriTwoHandedKatanaWeapon" + }, + { + "fired": 929, + "hits": 393, + "kills": 142, + "headshots": 21, + "equipTime": 975.912688, + "xp": 450000, + "assists": 33, + "type": "/Lotus/Weapons/Corpus/BoardExec/Primary/CrpBETetra/CrpBETetra" + }, + { + "fired": 991, + "hits": 496, + "equipTime": 4054.9639611000007, + "xp": 1237772, + "type": "/Lotus/Powersuits/Pagemaster/ExaltedBook" + }, + { + "hits": 19, + "kills": 133, + "equipTime": 40893.046465199994, + "xp": 922887, + "assists": 197, + "type": "/Lotus/Powersuits/Archwing/StandardJetPack/StandardJetPack" + }, + { + "hits": 22, + "kills": 292, + "headshots": 6, + "equipTime": 6118.991730000001, + "assists": 301, + "type": "/Lotus/Weapons/Grineer/RocketLauncher" + }, + { + "hits": 24, + "kills": 4862, + "headshots": 9, + "equipTime": 16076.024080199997, + "xp": 4370656, + "assists": 3270, + "type": "/Lotus/Powersuits/Paladin/Paladin" + }, + { + "hits": 80, + "kills": 73, + "headshots": 4, + "equipTime": 3364.531274, + "assists": 287, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedDrones/CellCarrierInfestedDroneGun" + }, + { + "hits": 2, + "assists": 4, + "type": "/Lotus/Weapons/SpaceWeapons/Grineer/SpaceDroneChargeBeamWeapon" + }, + { + "hits": 24, + "kills": 6, + "assists": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Quadrupeds/JugBarbRifle" + }, + { + "hits": 240, + "kills": 99, + "headshots": 6, + "equipTime": 3069.4671085999994, + "assists": 159, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/Rifle" + }, + { + "hits": 27, + "kills": 6, + "equipTime": 2477.7191036, + "assists": 26, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/ShockwaveBipedRifle" + }, + { + "hits": 116, + "kills": 86, + "headshots": 6, + "equipTime": 7274.60712, + "assists": 20, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/Weapons/CrpHeavyRifle" + }, + { + "hits": 110, + "kills": 31, + "headshots": 1, + "equipTime": 3805.3688016, + "assists": 41, + "type": "/Lotus/Weapons/Corpus/Pistols/CorpusHandShotgun/AICorpusHandCannon" + }, + { + "hits": 13, + "kills": 80, + "headshots": 4, + "equipTime": 3881.7204066, + "assists": 259, + "type": "/Lotus/Types/Enemies/Orokin/Weapons/OrokinRocketLauncher" + }, + { + "hits": 23, + "kills": 5, + "headshots": 1, + "equipTime": 4817.884625999999, + "assists": 50, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedMoas/InfestedMoaRifle" + }, + { + "hits": 136, + "kills": 98, + "headshots": 5, + "equipTime": 4216.245852999999, + "assists": 311, + "type": "/Lotus/Types/Enemies/Orokin/Weapons/LaserRifle" + }, + { + "hits": 143, + "kills": 393, + "headshots": 21, + "equipTime": 11890.7026706, + "assists": 509, + "type": "/Lotus/Types/Enemies/Orokin/Weapons/LaserShotgun" + }, + { + "hits": 38, + "kills": 30, + "headshots": 2, + "equipTime": 2474.0538089999995, + "assists": 35, + "type": "/Lotus/Weapons/Tenno/Shotgun/EviseratorWeapon" + }, + { + "hits": 2, + "kills": 5, + "equipTime": 4656.740634400001, + "assists": 33, + "type": "/Lotus/Weapons/Grineer/SwarmMissileLauncher/SwarmMissileLauncher" + }, + { + "hits": 51, + "kills": 900, + "headshots": 10, + "equipTime": 11573.5699967, + "xp": 1153927, + "assists": 1165, + "type": "/Lotus/Powersuits/Nezha/Nezha" + }, + { + "hits": 1, + "kills": 22, + "headshots": 1, + "assists": 35, + "type": "/Lotus/Powersuits/NpcPowersuits/CatMasterPowerSuit" + }, + { + "hits": 5, + "kills": 1, + "equipTime": 6312.474716, + "assists": 41, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedMoas/SlowBombRifle" + }, + { + "hits": 22, + "kills": 4, + "equipTime": 2319.4965635999997, + "assists": 15, + "type": "/Lotus/Weapons/Tenno/Rifle/SuicideDroneRifle" + }, + { + "hits": 109, + "kills": 9, + "headshots": 1, + "equipTime": 711.9082500000001, + "assists": 11, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/Weapons/RiotLaserRifle" + }, + { + "hits": 4, + "kills": 39, + "headshots": 2, + "equipTime": 1631.27325, + "assists": 6, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/Weapons/RiotRifle" + }, + { + "hits": 1, + "kills": 6, + "equipTime": 3136.806928, + "assists": 77, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrnHarpoonGun/GrnHarpoonGunAILand" + }, + { + "hits": 1, + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/GrineerChampions/ChampionWeapons/ChampionMissileLauncher" + }, + { + "hits": 71, + "kills": 96352, + "headshots": 2, + "equipTime": 448697.30919519946, + "xp": 79978509, + "assists": 2391, + "type": "/Lotus/Powersuits/Ninja/AshPrime" + }, + { + "hits": 1, + "kills": 2, + "equipTime": 1442.4463799999999, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/Weapons/ModularCorpusHandRL" + }, + { + "hits": 1, + "kills": 3875, + "headshots": 11, + "equipTime": 22482.6693673, + "xp": 5008008, + "assists": 1720, + "type": "/Lotus/Powersuits/Harlequin/Harlequin" + }, + { + "hits": 3, + "kills": 3, + "equipTime": 3071.603669, + "assists": 7, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/DiscDroneRifle" + }, + { + "hits": 110, + "kills": 4391, + "headshots": 39, + "equipTime": 94476.69009459998, + "xp": 14486974, + "assists": 4682, + "type": "/Lotus/Powersuits/AntiMatter/NovaPrime" + }, + { + "hits": 7, + "kills": 62, + "headshots": 4, + "equipTime": 1731.1364356000001, + "assists": 24, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/Weapons/LaserDiscGun" + }, + { + "hits": 5, + "assists": 1, + "type": "/Lotus/Types/Enemies/CorpusChampions/ChampionWeapons/CorpusChampionRaptorCannon" + }, + { + "hits": 76, + "kills": 1204, + "equipTime": 72539.08620979999, + "xp": 3286875, + "assists": 3008, + "type": "/Lotus/Powersuits/Trapper/TrapperPrime" + }, + { + "hits": 10, + "type": "/Lotus/Weapons/Tenno/Rifle/DroneRifle" + }, + { + "hits": 3, + "kills": 1640, + "headshots": 19, + "equipTime": 5781.037008, + "assists": 539, + "type": "/Lotus/Weapons/Grineer/NapalmLauncher" + }, + { + "hits": 3, + "kills": 110, + "headshots": 2, + "assists": 44, + "type": "/Lotus/Weapons/Sentients/SentientConduitLeft" + }, + { + "hits": 2, + "kills": 115, + "headshots": 3, + "assists": 37, + "type": "/Lotus/Weapons/Sentients/SentientConduitRight" + }, + { + "hits": 11, + "kills": 486, + "equipTime": 12988.399705700002, + "xp": 980210, + "assists": 266, + "type": "/Lotus/Powersuits/Archwing/PrimeJetPack/PrimeJetPack" + }, + { + "hits": 10, + "kills": 131, + "headshots": 12, + "equipTime": 6365.796873599999, + "assists": 422, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrineerFlakCannon/AiFortressFlakCannon" + }, + { + "hits": 1, + "kills": 51, + "equipTime": 3790.0360739, + "assists": 61, + "type": "/Lotus/Weapons/Grineer/AiFortressRocketLauncher" + }, + { + "hits": 35, + "kills": 9, + "assists": 19, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/Rifle" + }, + { + "hits": 9, + "kills": 102, + "headshots": 8, + "equipTime": 12508.7273711, + "assists": 50, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/SniperRifle" + }, + { + "hits": 4, + "kills": 40, + "headshots": 1, + "equipTime": 1181.3888, + "assists": 16, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedDrones/InfestedAttackDroneGun" + }, + { + "hits": 1, + "kills": 3, + "type": "/Lotus/Types/Enemies/Corpus/QuadRobot/BurstGrenadeLauncher" + }, + { + "hits": 65, + "kills": 22, + "equipTime": 2694.3918241, + "assists": 42, + "type": "/Lotus/Weapons/Tenno/Rifle/SuperDroneRifle" + }, + { + "hits": 16, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Drones/Vip/RaptorTwoRifle" + }, + { + "hits": 50, + "type": "/Lotus/Types/Enemies/CorpusChampions/ChampionWeapons/CorpusChampionDualMinigun" + }, + { + "hits": 22, + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/CorpusChampions/ChampionWeapons/CorpusChampionRiotRifle" + }, + { + "hits": 7, + "type": "/Lotus/Types/Enemies/CorpusChampions/ChampionWeapons/CorpusChampionSupra" + }, + { + "hits": 3, + "type": "/Lotus/Types/Enemies/CorpusChampions/ChampionWeapons/CorpusChampionZanukaHunterRifle" + }, + { + "hits": 7, + "assists": 5, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Ambulas/AmbulasRifle" + }, + { + "hits": 2, + "assists": 3, + "type": "/Lotus/Powersuits/NpcPowersuits/CrpFabricatorSuit" + }, + { + "hits": 17, + "kills": 1, + "type": "/Lotus/Types/Enemies/Corpus/SpecialEvents/ArmoredJackal/ArmoredJackalRocketLauncher" + }, + { + "hits": 2, + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Hyena/HyenaRifleFire" + }, + { + "hits": 2, + "type": "/Lotus/Weapons/SpaceWeapons/Corpus/SpaceTurretChargeGun" + }, + { + "hits": 2, + "kills": 440, + "equipTime": 3484.5965229999997, + "xp": 906004, + "assists": 101, + "type": "/Lotus/Powersuits/Ninja/Ninja" + }, + { + "hits": 35, + "kills": 9, + "equipTime": 238.927605, + "assists": 29, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrnChemstrikeNox/GrnChemstrikeNoxRifle" + }, + { + "hits": 9, + "kills": 222, + "headshots": 1, + "equipTime": 2461.791042, + "xp": 1025203, + "assists": 207, + "type": "/Lotus/Powersuits/Paladin/PaladinPrime" + }, + { + "hits": 1, + "kills": 1, + "assists": 4, + "type": "/Lotus/Weapons/Grineer/Emplacements/AutoTurrets/GrnTurretRocketLauncher" + }, + { + "hits": 2, + "kills": 93, + "equipTime": 2248.177737, + "xp": 911700, + "assists": 268, + "type": "/Lotus/Powersuits/Trapper/Trapper" + }, + { + "hits": 1, + "type": "/Lotus/Types/Enemies/CorpusChampions/ChampionWeapons/CorpusChampionTetra" + }, + { + "hits": 2, + "type": "/Lotus/Types/Enemies/CorpusChampions/ChampionWeapons/CorpusChampionSwarmCannon" + }, + { + "hits": 6, + "assists": 2, + "type": "/Lotus/Weapons/Tenno/Shotgun/EidolonEviseratorWeapon" + }, + { + "hits": 13, + "kills": 2, + "assists": 11, + "type": "/Lotus/Types/Enemies/Sentients/Eidolon/VomSwarmCannon" + }, + { + "hits": 2, + "kills": 2, + "headshots": 1, + "assists": 4, + "type": "/Lotus/Weapons/Grineer/EidolonNapalmLauncher" + }, + { + "hits": 1, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Hyena/HyenaRifleGun" + }, + { + "hits": 220, + "kills": 2, + "assists": 3, + "type": "/Lotus/Weapons/Grineer/Eidolon/EidolonSkiffRifle" + }, + { + "hits": 2, + "kills": 2, + "equipTime": 75.573994, + "type": "/Lotus/Levels/MiniGames/Sentinel/Weapons/BulletHell/BurstLaserI" + }, + { + "hits": 1, + "kills": 1, + "equipTime": 17.8149085, + "type": "/Lotus/Levels/MiniGames/Sentinel/Weapons/BulletHell/SniperRifleI" + }, + { + "hits": 16, + "type": "/Lotus/Weapons/Grineer/Emplacements/AutoTurrets/GrnTurretMortarLauncher" + }, + { + "hits": 2, + "kills": 5, + "equipTime": 5033.9580602, + "assists": 16, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/VenusShockwaveBipedRifle" + }, + { + "hits": 12, + "kills": 12, + "headshots": 1, + "equipTime": 3355.1856014, + "assists": 23, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/VenusBipedRifle" + }, + { + "hits": 14, + "kills": 8, + "headshots": 1, + "equipTime": 3797.3637875000004, + "assists": 21, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Weapons/AiCorpusEliteUMP" + }, + { + "hits": 14, + "kills": 28, + "headshots": 3, + "equipTime": 1423.4932454, + "assists": 36, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Weapons/AiCorpusUMP" + }, + { + "hits": 1, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Weapons/AmalgamOspreyRifle" + }, + { + "hits": 15, + "equipTime": 2849.805502, + "assists": 7, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Weapon/AIGasCityHandCannon" + }, + { + "hits": 3, + "kills": 14, + "assists": 39, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Weapon/GasDeployableRifle" + }, + { + "hits": 2, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Weapon/GasShockwaveBipedRifle" + }, + { + "hits": 214, + "kills": 47, + "headshots": 2, + "equipTime": 1560.9299915999998, + "assists": 38, + "type": "/Lotus/Weapons/ClanTech/Chemical/WaterSprayer" + }, + { + "hits": 6, + "equipTime": 1454.7894986, + "assists": 9, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Weapons/VenusDroneAssaultRifle" + }, + { + "hits": 2, + "type": "/Lotus/Powersuits/NpcPowersuits/VenusSniperFabricatorSuit" + }, + { + "hits": 8, + "kills": 1, + "assists": 9, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Weapons/SpaceFighterEliteRagerWeapon" + }, + { + "hits": 13, + "assists": 5, + "type": "/Lotus/Weapons/Grineer/RailJack/Saturn/SaturnBoardingDemoSwarmMissileLauncher" + }, + { + "hits": 9, + "type": "/Lotus/Weapons/Grineer/RailJack/DeepSpace/GrnDSCrewEvisceratorWeapon" + }, + { + "hits": 7, + "assists": 2, + "type": "/Lotus/Weapons/Grineer/RailJack/DeepSpace/DSBoardingDemoSwarmMissileLauncher" + }, + { + "hits": 3, + "kills": 11, + "equipTime": 2415.2403553, + "assists": 6, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/Weapons/ModularCorpusSwarmCannon" + }, + { + "hits": 1, + "kills": 2720, + "assists": 1085, + "type": "/Lotus/Types/Game/CrewShip/Ships/RailJack" + }, + { + "hits": 2, + "assists": 8, + "type": "/Lotus/Types/Enemies/Sentients/Brachiolyst/SentientBrachiolystMissileLauncher" + }, + { + "hits": 1, + "type": "/Lotus/Powersuits/NpcPowersuits/VenusCommanderOrangePowersuit" + }, + { + "hits": 9, + "kills": 145, + "headshots": 5, + "equipTime": 9087.968102000003, + "xp": 993260, + "assists": 278, + "type": "/Lotus/Powersuits/Garuda/Garuda" + }, + { + "hits": 16, + "kills": 5, + "headshots": 2, + "equipTime": 597.9300133, + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Weapons/ShipMoaDeraRifle" + }, + { + "hits": 1, + "kills": 1, + "equipTime": 598.0740133, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Weapons/ShipMoaDiscWeapon" + }, + { + "hits": 14, + "type": "/Lotus/Weapons/Grineer/Emplacements/AutoTurrets/GrnDefenseTurretAutoRifle" + }, + { + "hits": 1, + "kills": 18, + "type": "/Lotus/Powersuits/EntratiMech/SnakeTech" + }, + { + "hits": 3, + "kills": 430, + "headshots": 3, + "equipTime": 23235.4598851, + "xp": 7211488, + "assists": 890, + "type": "/Lotus/Types/Friendly/Pets/CreaturePets/PharaohPredatorKubrowPetPowerSuit" + }, + { + "hits": 73, + "kills": 1, + "assists": 6, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Ashen/AshenTailGun" + }, + { + "hits": 1, + "kills": 39, + "assists": 18, + "type": "/Lotus/Powersuits/EntratiMech/NechroTechLandscape" + }, + { + "hits": 33, + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/InfestedAttackDroneMicroplanetGun" + }, + { + "hits": 15, + "kills": 2, + "assists": 13, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/GreyStrain/Femur/FemurWeaponLeft" + }, + { + "hits": 31, + "kills": 2, + "assists": 50, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/GreyStrain/Femur/FemurWeaponRight" + }, + { + "hits": 3, + "kills": 10, + "assists": 7, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Drones/Tendril/TendrilChargeBeamWeapon" + }, + { + "hits": 2, + "kills": 1, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Emissary/ShellGooWeapon" + }, + { + "hits": 59, + "kills": 3565, + "xp": 9946396, + "assists": 2612, + "type": "/Lotus/Powersuits/EntratiMech/NechroTech" + }, + { + "hits": 1, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Powersuits/GasSniperSuit" + }, + { + "hits": 1, + "kills": 3, + "assists": 4, + "type": "/Lotus/Powersuits/NpcPowersuits/FemurSuit" + }, + { + "hits": 1, + "type": "/Lotus/Types/Enemies/Sentients/Ortholyst/OrtholystArtilleryTwinGun" + }, + { + "hits": 2, + "kills": 1, + "equipTime": 1502.426362, + "assists": 13, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Weapon/GasEliteShapeBlastShotgun" + }, + { + "hits": 1, + "kills": 9, + "headshots": 1, + "equipTime": 2847.401602, + "assists": 18, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Weapon/GasShapeBlastShotgun" + }, + { + "hits": 661, + "kills": 516, + "headshots": 69, + "equipTime": 8104.099045800001, + "xp": 1388691, + "assists": 28, + "type": "/Lotus/Weapons/Corpus/LongGuns/CrpShapeBlast/CrpShapeBlastShotgun" + }, + { + "hits": 2, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Weapons/DeepSpace/SpaceFighterPlasmaEliteWeapon" + }, + { + "hits": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Weapons/SpecOps/SpaceFighterPlasmaEliteWeapon" + }, + { + "hits": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Weapons/Pluto/SpaceFighterPlasmaEliteWeapon" + }, + { + "hits": 8, + "type": "/Lotus/Weapons/Corpus/BoardExec/Secondary/CrpBEDetron/AiCrpBEDetron" + }, + { + "hits": 1, + "kills": 1, + "equipTime": 599.9514932000001, + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Weapons/AiSupraRifle" + }, + { + "hits": 303, + "kills": 191, + "headshots": 20, + "equipTime": 2568.117226, + "xp": 450000, + "assists": 11, + "type": "/Lotus/Weapons/Corpus/Pistols/CrpIgniterPistol/CrpIgniterPistol" + }, + { + "hits": 3, + "kills": 1, + "headshots": 1, + "type": "/Lotus/Types/Friendly/PlayerControllable/ControllableTeshinSuit" + }, + { + "hits": 6, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Arachnoid/WraithMultiGunSuper" + }, + { + "hits": 9, + "kills": 24503, + "headshots": 4, + "equipTime": 113846.55009120001, + "xp": 20781877, + "assists": 22541, + "type": "/Lotus/Powersuits/Mag/MagPrime" + }, + { + "hits": 4, + "kills": 3, + "equipTime": 1729.9237369999998, + "type": "/Lotus/Weapons/Tenno/Pistols/Glavies/Duviri/DuviriGrappleGlaivePistol" + }, + { + "hits": 4, + "type": "/Lotus/Weapons/Tenno/Grimoire/TnDoppelgangerGrimoire" + }, + { + "hits": 2, + "kills": 27, + "headshots": 3, + "equipTime": 1144.4641136, + "assists": 38, + "type": "/Lotus/Weapons/Mitw/NecramechRangedWeapon" + }, + { + "hits": 2, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Weapons/NarmerCrpHeavyRifle" + }, + { + "hits": 1, + "type": "/Lotus/Types/Enemies/Grineer/Disruption/Weapons/DisruptionNoxRifle" + }, + { + "kills": 5901, + "headshots": 78, + "equipTime": 219935.0121969998, + "xp": 4319443, + "assists": 521, + "type": "/Lotus/Powersuits/Excalibur/Excalibur" + }, + { + "kills": 48, + "assists": 35, + "type": "/Lotus/Weapons/Tenno/Grenades/NpcThrowGrenadeWeapon" + }, + { + "kills": 78, + "equipTime": 58.292197, + "assists": 72, + "type": "/Lotus/Powersuits/NpcPowersuits/InfestedLeapingRunnerSuit" + }, + { + "kills": 2, + "headshots": 1, + "assists": 11, + "type": "/Lotus/Powersuits/Excalibur/DoomSwordProjectile" + }, + { + "kills": 738, + "headshots": 89, + "assists": 233, + "type": "/Lotus/Weapons/Grineer/Emplacements/GrnEmplcmntStndng/GrineerStandingEmplacementTurret" + }, + { + "kills": 729, + "headshots": 3, + "equipTime": 59357.620139299994, + "assists": 859, + "type": "/Lotus/Weapons/Tenno/Melee/InfestedQuadMeleeWeapon" + }, + { + "kills": 7596, + "equipTime": 413830.6418777999, + "xp": 11429658, + "assists": 5633, + "type": "/Lotus/Powersuits/Rhino/Rhino" + }, + { + "kills": 168, + "headshots": 20, + "equipTime": 22348.579033300008, + "xp": 1411250, + "assists": 359, + "type": "/Lotus/Types/Sentinels/SentinelWeapons/SentShotgun" + }, + { + "kills": 466, + "headshots": 25, + "equipTime": 252459.15536840007, + "xp": 23261095, + "assists": 2749, + "type": "/Lotus/Types/Sentinels/SentinelWeapons/DethMachineRifle" + }, + { + "kills": 3, + "assists": 2, + "type": "/Lotus/Weapons/Grineer/KelaDeThaymWeapons/KelaRocketLauncher" + }, + { + "kills": 303, + "equipTime": 25066.269285799986, + "assists": 734, + "type": "/Lotus/Weapons/Tenno/Melee/InfestedAncientMeleeWeapon" + }, + { + "kills": 130, + "assists": 332, + "type": "/Lotus/Powersuits/NpcPowersuits/RusherSuit" + }, + { + "kills": 203, + "equipTime": 216.916542, + "assists": 337, + "type": "/Lotus/Powersuits/NpcPowersuits/NpcRadialBlastSuit" + }, + { + "kills": 50, + "headshots": 1, + "assists": 71, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/DiscDamageTrigger" + }, + { + "kills": 8686, + "assists": 1643, + "type": "/Lotus/Types/Friendly/Pets/KubrowPetMeleeWeapon" + }, + { + "kills": 80, + "headshots": 2, + "assists": 105, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/AncientSpikeProjectile" + }, + { + "kills": 8, + "assists": 12, + "type": "/Lotus/Weapons/Tenno/Grenades/EliteNpcThrowGrenadeWeapon" + }, + { + "kills": 7718, + "equipTime": 147589.97508219996, + "xp": 9023327, + "assists": 320, + "type": "/Lotus/Powersuits/Berserker/Berserker" + }, + { + "kills": 3267, + "equipTime": 184387.55026179992, + "xp": 25433029, + "assists": 3752, + "type": "/Lotus/Powersuits/Dragon/Dragon" + }, + { + "kills": 74, + "assists": 93, + "type": "/Lotus/Powersuits/NpcPowersuits/OrokinMoaSuit" + }, + { + "kills": 20400, + "equipTime": 169512.83679190007, + "xp": 19684359, + "assists": 7366, + "type": "/Lotus/Powersuits/Volt/VoltPrime" + }, + { + "kills": 8, + "type": "/Lotus/Language/Bosses/BossAladV" + }, + { + "kills": 6, + "type": "/Lotus/Language/Bosses/BossLephantis" + }, + { + "kills": 11, + "type": "/Lotus/Language/Bosses/BossPhorid" + }, + { + "kills": 185, + "assists": 182, + "type": "/Lotus/Powersuits/NpcPowersuits/InfestedBombardMoaSuit" + }, + { + "kills": 63, + "equipTime": 83551.99771139995, + "assists": 155, + "type": "/Lotus/Powersuits/Dragon/DragonPeltPowerSuit" + }, + { + "kills": 8, + "type": "/Lotus/Language/Bosses/BossTheJackal" + }, + { + "kills": 9, + "assists": 12, + "type": "/Lotus/Powersuits/NpcPowersuits/NpcSnowGlobeSuit" + }, + { + "kills": 5, + "equipTime": 54449.43706609997, + "xp": 5016343, + "assists": 30, + "type": "/Lotus/Types/Sentinels/SentinelWeapons/BurstLaserPistol" + }, + { + "kills": 6971, + "equipTime": 256459.3415314999, + "xp": 6576510, + "assists": 1773, + "type": "/Lotus/Powersuits/Archwing/StealthJetPack/StealthJetPack" + }, + { + "kills": 33342, + "headshots": 3436, + "equipTime": 2162502.6878533065, + "xp": 151516156, + "assists": 23135, + "type": "/Lotus/Types/Sentinels/SentinelWeapons/PrimeSentShotgun" + }, + { + "kills": 12, + "headshots": 3, + "equipTime": 37770.91444310002, + "xp": 4967161, + "assists": 105, + "type": "/Lotus/Types/Sentinels/SentinelWeapons/LaserRifle" + }, + { + "kills": 1, + "equipTime": 7081.667448899999, + "xp": 305919, + "assists": 19, + "type": "/Lotus/Types/Sentinels/SentinelPowersuits/WyrmPowerSuit" + }, + { + "kills": 73590, + "equipTime": 1108294.7470496967, + "xp": 146227996, + "assists": 39777, + "type": "/Lotus/Powersuits/Rhino/RhinoPrime" + }, + { + "kills": 508, + "headshots": 21, + "equipTime": 40409.00174839998, + "assists": 1762, + "type": "/Lotus/Weapons/Grineer/LongGuns/BurstRifle/AIGrnBurstRifle" + }, + { + "kills": 6, + "type": "/Lotus/Language/Bosses/BossHyenaFire" + }, + { + "kills": 6898, + "equipTime": 94960.41955229998, + "xp": 11733378, + "assists": 7112, + "type": "/Lotus/Powersuits/Sandman/Sandman" + }, + { + "kills": 11525, + "headshots": 2, + "equipTime": 123384.86479239995, + "xp": 8862840, + "assists": 4851, + "type": "/Lotus/Powersuits/Frost/Frost" + }, + { + "kills": 6, + "type": "/Lotus/Language/Bosses/BossInfestedAladV" + }, + { + "kills": 326, + "assists": 242, + "type": "/Lotus/Weapons/Grineer/NapalmElement" + }, + { + "kills": 30, + "equipTime": 2774.6257960000003, + "xp": 1011970, + "assists": 72, + "type": "/Lotus/Powersuits/Mag/Mag" + }, + { + "kills": 12, + "assists": 48, + "type": "/Lotus/Types/Gameplay/Grineer/BrokenLight" + }, + { + "kills": 23, + "assists": 19, + "type": "/Lotus/Powersuits/NpcPowersuits/NpcFireBlastSuit" + }, + { + "kills": 1599, + "headshots": 51, + "equipTime": 17951.277340199995, + "xp": 1859259, + "assists": 705, + "type": "/Lotus/Weapons/ClanTech/Chemical/FlameThrower" + }, + { + "kills": 40, + "equipTime": 42968.72593269999, + "xp": 2844033, + "assists": 55, + "type": "/Lotus/Powersuits/Necro/Necro" + }, + { + "kills": 434, + "equipTime": 97572.2004546, + "xp": 5441135, + "assists": 2349, + "type": "/Lotus/Powersuits/Trinity/TrinityPrime" + }, + { + "kills": 1629, + "headshots": 227, + "equipTime": 75214.66976040004, + "xp": 7547500, + "assists": 424, + "type": "/Lotus/Types/Sentinels/SentinelWeapons/SentGlaiveWeapon" + }, + { + "kills": 2, + "type": "/Lotus/Language/Bosses/BossCaptainVor" + }, + { + "kills": 15, + "assists": 15, + "type": "/Lotus/Powersuits/NpcPowersuits/InfestedGrenadeCrawlerSuit" + }, + { + "kills": 1091, + "headshots": 43, + "equipTime": 39155.3401858, + "assists": 858, + "type": "/Lotus/Weapons/Grineer/GrineerShotgun/Shotgun" + }, + { + "kills": 13, + "equipTime": 1482.675983, + "assists": 5, + "type": "/Lotus/Weapons/Tenno/Melee/KnucklesMeleeWeapon" + }, + { + "kills": 1019, + "headshots": 70, + "equipTime": 22096.2290164, + "assists": 1241, + "type": "/Lotus/Weapons/Tenno/Rifle/HeavyRifleAI" + }, + { + "kills": 79, + "headshots": 11, + "equipTime": 20032.834555899997, + "assists": 32, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrnVulkar/GrnSniperRifleAI" + }, + { + "kills": 7, + "assists": 25, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/SpawnerPussProjectile" + }, + { + "kills": 151, + "assists": 708, + "type": "/Lotus/Types/Weapon/SmallBipedInfestedShockwaveEntity" + }, + { + "kills": 252, + "equipTime": 15623.440066199997, + "assists": 810, + "type": "/Lotus/Weapons/Tenno/Melee/InfestedDisruptorMeleeWeapon" + }, + { + "kills": 60, + "equipTime": 21527.217348299997, + "assists": 99, + "type": "/Lotus/Weapons/Tenno/Melee/InfestedRunnerMeleeWeapon" + }, + { + "kills": 41067, + "equipTime": 727881.2681049017, + "xp": 46910199, + "assists": 31239, + "type": "/Lotus/Powersuits/Magician/Magician" + }, + { + "kills": 329, + "headshots": 4, + "equipTime": 13115.704815999998, + "assists": 365, + "type": "/Lotus/Powersuits/Archwing/StealthJetPack/DistractionDroneBeamWeapon" + }, + { + "kills": 247, + "assists": 100, + "type": "/Lotus/Objects/ExplodingBarrel" + }, + { + "kills": 191, + "assists": 67, + "type": "/Lotus/Objects/OrokinExplodingBarrel" + }, + { + "kills": 411, + "assists": 148, + "type": "/Lotus/Objects/GrnExplodingBarrel" + }, + { + "kills": 152, + "assists": 104, + "type": "/Lotus/Objects/ExplodingBarrelFrozen" + }, + { + "kills": 6279, + "headshots": 516, + "equipTime": 50274.67434299996, + "assists": 1825, + "type": "/Lotus/Powersuits/Dragon/DragonPeltWeapon" + }, + { + "kills": 6, + "type": "/Lotus/Language/Bosses/BossKelaDeThaym" + }, + { + "kills": 11, + "assists": 1, + "type": "/Lotus/Weapons/Corpus/LongGuns/CrpShockRifle/CrpShockRifle" + }, + { + "kills": 1, + "assists": 3, + "type": "/Lotus/Types/Enemies/GrineerChampions/ChampionWeapons/TankRocketLauncher" + }, + { + "kills": 5, + "type": "/Lotus/Language/Bosses/BossHyenaIce" + }, + { + "kills": 3, + "headshots": 1, + "assists": 6, + "type": "/Lotus/Types/Game/AttractorProjectile" + }, + { + "kills": 21, + "headshots": 2, + "equipTime": 4115.688013999999, + "assists": 40, + "type": "/Lotus/Weapons/Grineer/CatMasterWeapons/CatMasterFlameThrower" + }, + { + "kills": 77, + "headshots": 5, + "equipTime": 45303.41956830001, + "assists": 41, + "type": "/Lotus/Weapons/Grineer/Melee/BeastmasterDisarmBoomerangWeapon" + }, + { + "kills": 25, + "equipTime": 5561.646734, + "assists": 59, + "type": "/Lotus/Types/NeutralCreatures/Catbrow/CatbrowMeleeWeapon" + }, + { + "kills": 264, + "headshots": 12, + "equipTime": 5816.498267799999, + "assists": 158, + "type": "/Lotus/Weapons/Tenno/Beam/SuperMoaBeamWeapon" + }, + { + "kills": 267, + "headshots": 9, + "equipTime": 35298.201370199975, + "assists": 339, + "type": "/Lotus/Weapons/Tenno/Melee/SawMeleeWeapon" + }, + { + "kills": 119, + "headshots": 13, + "equipTime": 14259.207007099998, + "assists": 874, + "type": "/Lotus/Weapons/Grineer/GrineerRifle/Rifle" + }, + { + "kills": 52, + "equipTime": 3514.4443631, + "assists": 67, + "type": "/Lotus/Weapons/Tenno/Melee/MacheteMeleeWeaponNPC" + }, + { + "kills": 4, + "type": "/Lotus/Language/Bosses/BossJ3Golem" + }, + { + "kills": 569, + "equipTime": 51400.98515900002, + "xp": 4109172, + "assists": 99, + "type": "/Lotus/Powersuits/MonkeyKing/MonkeyKing" + }, + { + "kills": 5, + "assists": 6, + "type": "/Lotus/Objects/CrpMegaExplodingBarrel" + }, + { + "kills": 5, + "type": "/Lotus/Language/Bosses/BossGeneralSargasRuk" + }, + { + "kills": 185, + "headshots": 5, + "equipTime": 12524.2168326, + "assists": 142, + "type": "/Lotus/Weapons/ClanTech/Energy/AICrpLaserRifle" + }, + { + "kills": 7, + "type": "/Lotus/Language/Bosses/BossTheRaptor" + }, + { + "kills": 3, + "type": "/Lotus/Language/Bosses/BossAmbulas" + }, + { + "kills": 1, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/Weapons/NullifierBarrel" + }, + { + "kills": 7, + "type": "/Lotus/Language/Bosses/BossLieutenantLechKril" + }, + { + "kills": 4, + "type": "/Lotus/Language/Bosses/BossHyenaElectric" + }, + { + "kills": 14, + "assists": 26, + "type": "/Lotus/Powersuits/NpcPowersuits/PoisonDroneSuit" + }, + { + "kills": 165, + "assists": 189, + "type": "/Lotus/Powersuits/NpcPowersuits/InfestedNaniteMoaSuit" + }, + { + "kills": 4, + "type": "/Lotus/Language/Bosses/BossTylRegor" + }, + { + "kills": 5, + "assists": 5, + "type": "/Lotus/Powersuits/NpcPowersuits/SuicideDroneSuit" + }, + { + "kills": 4, + "type": "/Lotus/Language/Bosses/BossHyenaGun" + }, + { + "kills": 1494, + "headshots": 111, + "equipTime": 27395.403275600012, + "xp": 2798396, + "assists": 348, + "type": "/Lotus/Powersuits/Fairy/Fairy" + }, + { + "kills": 1976, + "headshots": 5, + "equipTime": 37925.31262390002, + "xp": 4194043, + "assists": 1136, + "type": "/Lotus/Powersuits/Jade/NyxPrime" + }, + { + "kills": 41, + "assists": 48, + "type": "/Lotus/Weapons/Grineer/Melee/GrineerCombatKnife/NPCGrineerCombatKnife" + }, + { + "kills": 14, + "headshots": 1, + "equipTime": 1940.7262630999999, + "assists": 112, + "type": "/Lotus/Weapons/Grineer/GrineerRifle/CamoRifle" + }, + { + "kills": 28, + "headshots": 3, + "equipTime": 1473.918619, + "assists": 34, + "type": "/Lotus/Weapons/Grineer/GrineerShotgun/CamoShotgun" + }, + { + "kills": 3, + "assists": 1, + "type": "/Lotus/Powersuits/NpcPowersuits/ConcussionBlastSuit" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Weapon/RiotBipedShockwaveEntity" + }, + { + "kills": 2925, + "headshots": 16, + "equipTime": 71381.18958849997, + "xp": 9034674, + "assists": 732, + "type": "/Lotus/Powersuits/Ranger/Ranger" + }, + { + "kills": 8873, + "equipTime": 79409.59947350003, + "xp": 5547328, + "assists": 3604, + "type": "/Lotus/Powersuits/Archwing/DemolitionJetPack/DemolitionJetPack" + }, + { + "kills": 61, + "headshots": 3, + "equipTime": 476.753264, + "assists": 115, + "type": "/Lotus/Powersuits/NpcPowersuits/KubrowSuit" + }, + { + "kills": 2, + "equipTime": 212.28753, + "assists": 2, + "type": "/Lotus/Weapons/Grineer/GrineerPistol/CamoBurstPistol" + }, + { + "kills": 2, + "assists": 8, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/Weapons/BipedRobotMeleeWeapon" + }, + { + "kills": 181, + "equipTime": 26373.935416999997, + "assists": 230, + "type": "/Lotus/Types/NeutralCreatures/Kubrow/KubrowMeleeWeapon" + }, + { + "kills": 233, + "headshots": 7, + "equipTime": 20156.853070499998, + "assists": 177, + "type": "/Lotus/Weapons/Grineer/GrineerPistol/BurstPistol" + }, + { + "kills": 2473, + "equipTime": 140700.54243770003, + "xp": 19536747, + "assists": 408, + "type": "/Lotus/Types/Game/KubrowPet/FurtiveKubrowPetPowerSuit" + }, + { + "kills": 1, + "type": "/Lotus/Powersuits/NpcPowersuits/VipQuadSuit" + }, + { + "kills": 1155, + "equipTime": 17221.319862800003, + "xp": 916218, + "assists": 2140, + "type": "/Lotus/Powersuits/Banshee/Banshee" + }, + { + "kills": 35374, + "equipTime": 103882.56054940002, + "xp": 29842525, + "assists": 23531, + "type": "/Lotus/Powersuits/Saryn/SarynPrime" + }, + { + "kills": 46, + "assists": 15, + "type": "/Lotus/Powersuits/Saryn/WeaponPoisonCloudElement" + }, + { + "kills": 2, + "assists": 5, + "type": "/Lotus/Weapons/Grineer/AiNightwatchRocketLauncher" + }, + { + "kills": 7760, + "headshots": 354, + "equipTime": 49326.49937260002, + "xp": 5762332, + "assists": 1347, + "type": "/Lotus/Powersuits/Cowgirl/Cowgirl" + }, + { + "kills": 2, + "type": "/Lotus/Language/Bosses/BossCouncilorVayHek" + }, + { + "kills": 7, + "headshots": 1, + "equipTime": 601.5292186, + "xp": 577636, + "assists": 13, + "type": "/Lotus/Weapons/Corpus/LongGuns/CrpFreezeRay/CrpFreezeRayRifle" + }, + { + "kills": 10, + "headshots": 4, + "equipTime": 778.1208205999999, + "assists": 32, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/LightningRifle" + }, + { + "kills": 3, + "equipTime": 151.43363680000002, + "assists": 20, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrineerM16Homage/GrineerM16RifleAI" + }, + { + "kills": 1, + "type": "/Lotus/Powersuits/NpcPowersuits/ModularCorpusDetectorSuit" + }, + { + "kills": 3, + "assists": 2, + "type": "/Lotus/Powersuits/Trapper/Deployables/MagHole" + }, + { + "kills": 11, + "headshots": 1, + "assists": 5, + "type": "/Lotus/Weapons/Grineer/Emplacements/GrnEmplcmntStndng/GrineerFortressStandingEmplacementTurret" + }, + { + "kills": 9, + "assists": 75, + "type": "/Lotus/Types/Friendly/Tenno/OperatorAvatar" + }, + { + "kills": 405, + "equipTime": 183305.91141839995, + "xp": 21949837, + "assists": 333, + "type": "/Lotus/Powersuits/Necro/NekrosPrime" + }, + { + "kills": 5, + "assists": 1, + "type": "/Lotus/Weapons/Grineer/Melee/GrnDualFireAxe/AIGrnDualFireAxe" + }, + { + "kills": 71, + "headshots": 4, + "equipTime": 45188.154548700026, + "assists": 41, + "type": "/Lotus/Weapons/Grineer/Melee/GrineerBeastmasterBoomerangWeapon" + }, + { + "kills": 966, + "headshots": 9, + "equipTime": 7749.082487, + "xp": 1893838, + "assists": 53, + "type": "/Lotus/Powersuits/Brawler/Brawler" + }, + { + "kills": 1, + "assists": 6, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/PowerFistShockwaveEntity" + }, + { + "kills": 20, + "headshots": 1, + "equipTime": 911.6493389999999, + "assists": 15, + "type": "/Lotus/Weapons/Tenno/Melee/ManicGrineerMeleeWeapon" + }, + { + "kills": 1, + "headshots": 1, + "equipTime": 474.91863, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/Railgun" + }, + { + "kills": 380, + "assists": 11, + "type": "/Lotus/Powersuits/Archwing/DemolitionJetPack/ExhaustAugmentDamageTrigger" + }, + { + "kills": 109, + "type": "/Lotus/Powersuits/Harlequin/HarlequinLockerTrigger" + }, + { + "kills": 2, + "equipTime": 415.18728, + "assists": 4, + "type": "/Lotus/Powersuits/NpcPowersuits/SuperMoaSuit" + }, + { + "kills": 1, + "assists": 4, + "type": "/Lotus/Weapons/Grineer/GuidedRocketProjectile" + }, + { + "kills": 10, + "assists": 74, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedDrones/PoisonBombElement" + }, + { + "kills": 4, + "assists": 1, + "type": "/Lotus/Objects/GrnSuperMegaExplodingBarrel" + }, + { + "kills": 466, + "assists": 944, + "type": "/Lotus/Types/Sentinels/SentinelAvatar" + }, + { + "kills": 800, + "headshots": 29, + "equipTime": 6549.6335715999985, + "assists": 87, + "type": "/Lotus/Powersuits/Brawler/SummonMeleeWeapon" + }, + { + "kills": 35, + "headshots": 10, + "equipTime": 11110.1808026, + "assists": 26, + "type": "/Lotus/Powersuits/Brawler/SummonPowerSuit" + }, + { + "kills": 11, + "assists": 15, + "type": "/Lotus/Types/Enemies/Grineer/Vip/SargasRuk/SargasFireBlastEntity" + }, + { + "kills": 4, + "headshots": 1, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/Weapons/RiotStraightGuidedProjectile" + }, + { + "kills": 1, + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/Drones/DroneAvatars/DroneProjectile" + }, + { + "kills": 7, + "assists": 4, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/SpacemanMeleeWeapon" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Powersuits/NpcPowersuits/PowerFistSuit" + }, + { + "kills": 36041, + "equipTime": 121373.61498279996, + "xp": 23782936, + "assists": 17816, + "type": "/Lotus/Powersuits/YinYang/YinYang" + }, + { + "kills": 3253, + "equipTime": 223145.1894576, + "assists": 1085, + "type": "/Lotus/Types/Friendly/Pets/CatbrowPetMeleeWeapon" + }, + { + "kills": 86, + "headshots": 1, + "equipTime": 51128.83614690001, + "xp": 6907338, + "assists": 214, + "type": "/Lotus/Types/Game/CatbrowPet/MirrorCatbrowPetPowerSuit" + }, + { + "kills": 3948, + "equipTime": 99181.53718039999, + "xp": 10068726, + "assists": 271, + "type": "/Lotus/Powersuits/Berserker/ValkyrPrime" + }, + { + "kills": 1440, + "equipTime": 8283.121991300002, + "xp": 1847309, + "assists": 1014, + "type": "/Lotus/Powersuits/Tengu/Tengu" + }, + { + "kills": 25534, + "equipTime": 83064.37295150002, + "xp": 11131619, + "assists": 4652, + "type": "/Lotus/Powersuits/Ember/EmberPrime" + }, + { + "kills": 1439, + "assists": 601, + "type": "/Lotus/Types/Player/TennoAvatar" + }, + { + "kills": 1, + "assists": 5, + "type": "/Lotus/Weapons/Grineer/Emplacements/GrnEmplcmntStndng/GrineerEmplacementStanding" + }, + { + "kills": 9, + "type": "/Lotus/Language/Bosses/BossSeargentNefAnyo" + }, + { + "kills": 4, + "assists": 4, + "type": "/Lotus/Powersuits/NpcPowersuits/MacheteWomanSuit" + }, + { + "kills": 3, + "equipTime": 501.02871910000005, + "xp": 497040, + "assists": 11, + "type": "/Lotus/Weapons/Corpus/LongGuns/ChainLightningGun/ChainLightningRifle" + }, + { + "kills": 2, + "assists": 4, + "type": "/Lotus/Types/LevelObjects/GrineerUnderwaterMine" + }, + { + "kills": 55063, + "equipTime": 241732.15508699976, + "xp": 91341847, + "assists": 8704, + "type": "/Lotus/Powersuits/Infestation/Infestation" + }, + { + "kills": 634, + "assists": 1151, + "type": "/Lotus/Powersuits/Infestation/PodMinionSuit" + }, + { + "kills": 7826, + "headshots": 35, + "equipTime": 269571.0435079999, + "xp": 75472052, + "assists": 4059, + "type": "/Lotus/Types/Game/KubrowPet/ChargerKubrowPetPowerSuit" + }, + { + "kills": 1425, + "equipTime": 23642.536241100006, + "xp": 2308473, + "assists": 916, + "type": "/Lotus/Powersuits/Frost/FrostPrime" + }, + { + "kills": 2, + "assists": 2, + "type": "/Lotus/Powersuits/NpcPowersuits/InfestedAladPowerSuit" + }, + { + "kills": 32, + "headshots": 1, + "equipTime": 2055.639595, + "assists": 14, + "type": "/Lotus/Weapons/ClanTech/Chemical/FortressFlameThrower" + }, + { + "kills": 32, + "equipTime": 9484.7896914, + "assists": 411, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrnSpark/FortressGrnSparkRifle" + }, + { + "kills": 200, + "headshots": 6, + "equipTime": 11617.2636401, + "assists": 328, + "type": "/Lotus/Weapons/Tenno/Shotgun/FortressQuadShotgunAI" + }, + { + "kills": 111, + "headshots": 3, + "equipTime": 7738.472282, + "assists": 86, + "type": "/Lotus/Weapons/Grineer/Pistols/GrineerLeverActionPistol/FortressGLAPistol" + }, + { + "kills": 1, + "type": "/Lotus/Weapons/Tenno/Melee/FortressMacheteMeleeWeaponNPC" + }, + { + "kills": 17, + "headshots": 1, + "equipTime": 7340.058426, + "assists": 18, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrnVulkar/FortressGrnSniperRifleAI" + }, + { + "kills": 84, + "headshots": 4, + "equipTime": 11681.6823906, + "assists": 250, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrineerLeverActionRifle/FortressGLARifle" + }, + { + "kills": 6, + "assists": 22, + "type": "/Lotus/Powersuits/NpcPowersuits/FortressNpcRadialBlastSuit" + }, + { + "kills": 229, + "headshots": 3, + "equipTime": 4508.125883999999, + "assists": 268, + "type": "/Lotus/Weapons/Grineer/FortressNapalmLauncher" + }, + { + "kills": 19, + "equipTime": 8714.3779816, + "assists": 72, + "type": "/Lotus/Weapons/Tenno/Melee/FortressSawMeleeWeapon" + }, + { + "kills": 9, + "headshots": 1, + "equipTime": 15113.087266999999, + "assists": 20, + "type": "/Lotus/Weapons/Grineer/Melee/FortressBeastmasterDisarmBoomerangWeapon" + }, + { + "kills": 9, + "equipTime": 15128.585865, + "assists": 24, + "type": "/Lotus/Weapons/Grineer/Melee/FortressGrineerBeastmasterBoomerangWeapon" + }, + { + "kills": 3, + "assists": 5, + "type": "/Lotus/Weapons/Tenno/Grenades/NpcThrowGrenadeFireWeapon" + }, + { + "kills": 2, + "equipTime": 570.9967489999999, + "assists": 10, + "type": "/Lotus/Weapons/Grineer/GrineerPistol/AiFortressGrnHeavyPistol" + }, + { + "kills": 1, + "assists": 2, + "type": "/Lotus/Weapons/Grineer/Emplacements/AutoTurrets/GrnTurretAutoRifle" + }, + { + "kills": 2, + "type": "/Lotus/Types/LevelObjects/GrineerLandmine" + }, + { + "kills": 3, + "headshots": 3, + "assists": 2, + "type": "/Lotus/Types/Game/Projectiles/AttractorProjectile" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Corpus/Drones/DroneAvatars/SuperDroneProjectile" + }, + { + "kills": 2, + "assists": 6, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/Gear/SpikeProjectile" + }, + { + "kills": 1, + "equipTime": 128.367267, + "assists": 102, + "type": "/Lotus/Powersuits/NpcPowersuits/GenericAncientPowerSuit" + }, + { + "kills": 892, + "headshots": 166, + "equipTime": 67948.94067500003, + "xp": 12696157, + "assists": 346, + "type": "/Lotus/Weapons/Grineer/Pistols/GrineerMicrowavegun/GrnMicrowavePistol" + }, + { + "kills": 10372, + "equipTime": 32081.198637099995, + "xp": 4860668, + "assists": 3921, + "type": "/Lotus/Powersuits/Pirate/Pirate" + }, + { + "kills": 199, + "headshots": 3, + "equipTime": 22834.276722900002, + "xp": 3434521, + "assists": 709, + "type": "/Lotus/Types/Sentinels/SentinelWeapons/SentBioWeapon" + }, + { + "kills": 25, + "equipTime": 8163.234526099999, + "xp": 1052020, + "assists": 12, + "type": "/Lotus/Types/Sentinels/SentinelPowersuits/TnSentinelCrossPowerSuit" + }, + { + "kills": 28040, + "headshots": 1328, + "equipTime": 144833.793883, + "xp": 8284895, + "assists": 8541, + "type": "/Lotus/Weapons/ClanTech/Chemical/FlameThrowerWraith" + }, + { + "kills": 317, + "headshots": 21, + "assists": 371, + "type": "/Lotus/Types/Friendly/Pets/KubrowPetPrecepts/ChargerSpikeProjectile" + }, + { + "kills": 2027, + "equipTime": 2787.002279, + "xp": 1100878, + "assists": 1406, + "type": "/Lotus/Powersuits/Bard/Bard" + }, + { + "kills": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/StickyRollingDroneDeco" + }, + { + "kills": 62208, + "headshots": 8017, + "equipTime": 1608355.4692416037, + "xp": 217025463, + "assists": 20782, + "type": "/Lotus/Types/Sentinels/SentinelWeapons/DeconstructorPrime/PrimeHeliosGlaiveWeapon" + }, + { + "kills": 2, + "assists": 1, + "type": "/Lotus/Powersuits/NpcPowersuits/InfestedGraspingCrawlerSuit" + }, + { + "kills": 46, + "headshots": 2, + "assists": 14, + "type": "/Lotus/Types/Enemies/Corpus/QuadRobot/MicroHyenaBeamWeapon" + }, + { + "kills": 6, + "headshots": 1, + "equipTime": 10743.834753900002, + "xp": 996230, + "assists": 13, + "type": "/Lotus/Types/Sentinels/SentinelWeapons/Gremlin" + }, + { + "kills": 1805, + "assists": 306, + "type": "/Lotus/Weapons/ClanTech/Chemical/RocketLauncherFireElement" + }, + { + "kills": 27, + "headshots": 3, + "equipTime": 2019.3346992000002, + "xp": 518913, + "assists": 3, + "type": "/Lotus/Weapons/Corpus/Pistols/CrpChargeGun/CrpChargeGun" + }, + { + "kills": 28, + "headshots": 2, + "assists": 6, + "type": "/Lotus/Weapons/Sentients/SentientMeleeWeaponLeft" + }, + { + "kills": 8, + "headshots": 2, + "assists": 26, + "type": "/Lotus/Weapons/Sentients/SentientMeleeWeaponRight" + }, + { + "kills": 7, + "headshots": 2, + "assists": 7, + "type": "/Lotus/Types/Enemies/Sentients/Abilities/GodRaysBeam" + }, + { + "kills": 7, + "type": "/Lotus/Types/Enemies/Corpus/SpecialEvents/ArmoredJackal/ArmoredJackalGrenadeLauncher" + }, + { + "kills": 38, + "headshots": 6, + "equipTime": 967.492453, + "assists": 24, + "type": "/Lotus/Weapons/Grineer/CatMasterWeapons/FlameLancerFlameThrower" + }, + { + "kills": 180, + "equipTime": 2203099.0720254965, + "xp": 369021326, + "assists": 6268, + "type": "/Lotus/Types/Sentinels/SentinelPowersuits/PrimeHeliosPowerSuit" + }, + { + "kills": 4222, + "equipTime": 6505.167356000001, + "xp": 3389743, + "assists": 1645, + "type": "/Lotus/Powersuits/Banshee/BansheePrime" + }, + { + "kills": 5, + "type": "/Lotus/Powersuits/Nezha/TrailAugmentElement" + }, + { + "kills": 220, + "equipTime": 66602.034674, + "xp": 13043055, + "assists": 213, + "type": "/Lotus/Powersuits/Priest/Priest" + }, + { + "kills": 1, + "equipTime": 38813.87885039999, + "xp": 4427962, + "assists": 3, + "type": "/Lotus/Types/Sentinels/SentinelPowersuits/PrismaShadePowerSuit" + }, + { + "kills": 35, + "xp": 908616, + "assists": 55, + "type": "/Lotus/Powersuits/Jade/Jade" + }, + { + "kills": 6, + "equipTime": 1974289.8975471074, + "xp": 150829814, + "assists": 107, + "type": "/Lotus/Types/Sentinels/SentinelPowersuits/PrimeCarrierPowerSuit" + }, + { + "kills": 2, + "equipTime": 1841.8405331, + "xp": 953050, + "assists": 15, + "type": "/Lotus/Powersuits/AntiMatter/Anti" + }, + { + "kills": 161, + "equipTime": 1486.3513719999999, + "xp": 1031882, + "assists": 554, + "type": "/Lotus/Powersuits/Volt/Volt" + }, + { + "kills": 15, + "equipTime": 1932.638414, + "xp": 900014, + "assists": 82, + "type": "/Lotus/Powersuits/Trinity/Trinity" + }, + { + "kills": 3, + "assists": 5, + "type": "/Lotus/Powersuits/NpcPowersuits/DeployGrinderSuit" + }, + { + "kills": 13, + "headshots": 2, + "equipTime": 11820.952529000004, + "xp": 1941332, + "assists": 53, + "type": "/Lotus/Types/Sentinels/SentinelWeapons/PrismaBurstLaserPistol" + }, + { + "kills": 1, + "assists": 4, + "type": "/Lotus/Powersuits/NpcPowersuits/SpaceManSuit" + }, + { + "kills": 414, + "equipTime": 418.632108, + "xp": 911796, + "assists": 149, + "type": "/Lotus/Powersuits/Ember/Ember" + }, + { + "kills": 1, + "type": "/Lotus/Types/Gameplay/Grineer/ShrapnelMineProj" + }, + { + "kills": 411, + "headshots": 33, + "equipTime": 10490.905372000001, + "xp": 1330473, + "assists": 121, + "type": "/Lotus/Types/Sentinels/SentinelWeapons/SentElecRailgun" + }, + { + "kills": 3969, + "equipTime": 5782.324129, + "xp": 3703980, + "assists": 1377, + "type": "/Lotus/Powersuits/Pirate/HydroidPrime" + }, + { + "kills": 24, + "assists": 2, + "type": "/Lotus/Weapons/Grineer/Pistols/GrineerLeverActionPistol/EidolonGLAPistol" + }, + { + "kills": 19, + "assists": 11, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrnVulkar/EidolonSniperRifleAI" + }, + { + "kills": 41, + "assists": 136, + "type": "/Lotus/Types/Friendly/Tenno/CombatOperatorAvatar" + }, + { + "kills": 2498, + "equipTime": 654871.4481569022, + "assists": 2064, + "type": "/Lotus/Powersuits/Operator/OperatorSuitFemale" + }, + { + "kills": 6, + "headshots": 1, + "assists": 91, + "type": "/Lotus/Weapons/Grineer/GrineerRifle/EidolonGrakata" + }, + { + "kills": 7, + "headshots": 1, + "assists": 36, + "type": "/Lotus/Weapons/Grineer/GrineerPistol/EidolonGrnHeavyPistol" + }, + { + "kills": 98, + "equipTime": 2758.554802, + "xp": 978418, + "assists": 92, + "type": "/Lotus/Powersuits/Glass/Glass" + }, + { + "kills": 18, + "assists": 21, + "type": "/Lotus/Powersuits/Glass/ShatterElement" + }, + { + "kills": 4, + "equipTime": 173.459394, + "assists": 1, + "type": "/Lotus/Weapons/Tenno/Rifle/DesertHeavyRifle" + }, + { + "kills": 6, + "assists": 90, + "type": "/Lotus/Weapons/Grineer/LongGuns/BurstRifle/AIGrnEidolonBurstRifle" + }, + { + "kills": 2, + "assists": 91, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrineerM16Homage/EidolonM16RifleAI" + }, + { + "kills": 1, + "assists": 2, + "type": "/Lotus/Weapons/Grineer/RollerTurretWeapons/AutoTurretCannon" + }, + { + "kills": 2, + "assists": 16, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrineerLeverActionRifle/EidolonGLARifle" + }, + { + "kills": 1, + "equipTime": 45920.00654800004, + "xp": 1307569, + "assists": 10, + "type": "/Lotus/Types/Game/KubrowPet/RetrieverKubrowPetPowerSuit" + }, + { + "kills": 3, + "assists": 3, + "type": "/Lotus/Types/Enemies/Infested/Eidolon/GolemEidolonGunWeapon" + }, + { + "kills": 2, + "assists": 6, + "type": "/Lotus/Weapons/Grineer/SwarmMissileLauncher/EidolonSwarmMissileLauncher" + }, + { + "kills": 3, + "assists": 1, + "type": "/EE/Types/Engine/Mover" + }, + { + "kills": 282, + "xp": 950236, + "assists": 454, + "type": "/Lotus/Powersuits/Saryn/Saryn" + }, + { + "kills": 5, + "assists": 42, + "type": "/Lotus/Powersuits/NpcPowersuits/CatbrowSuit" + }, + { + "kills": 4568, + "headshots": 4, + "equipTime": 23098.904388000003, + "xp": 4514250, + "assists": 881, + "type": "/Lotus/Powersuits/Harlequin/MiragePrime" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Sentients/Eidolon/TeralystClusterHomingProjectile" + }, + { + "kills": 1358, + "headshots": 142, + "equipTime": 32492.004552599992, + "xp": 4077175, + "assists": 1207, + "type": "/Lotus/Types/Sentinels/SentinelWeapons/PrimeLaserRifle" + }, + { + "kills": 4, + "equipTime": 44520.99353350001, + "xp": 2025679, + "assists": 337, + "type": "/Lotus/Types/Sentinels/SentinelPowersuits/PrimeWyrmPowerSuit" + }, + { + "kills": 298, + "headshots": 3, + "equipTime": 191530.3899754003, + "xp": 28118628, + "assists": 245, + "type": "/Lotus/Types/Game/CatbrowPet/CheshireCatbrowPetPowerSuit" + }, + { + "kills": 9, + "equipTime": 2853.7684520000003, + "xp": 1207729, + "assists": 53, + "type": "/Lotus/Powersuits/Loki/LokiPrime" + }, + { + "kills": 1415, + "equipTime": 8380.3820845, + "xp": 2316047, + "assists": 435, + "type": "/Lotus/Powersuits/Khora/Khora" + }, + { + "kills": 481, + "headshots": 4, + "equipTime": 17376.8765864, + "xp": 1365599, + "assists": 270, + "type": "/Lotus/Powersuits/Khora/Kavat/KhoraKavatPowerSuit" + }, + { + "kills": 1, + "equipTime": 2100.2206293000004, + "assists": 17, + "type": "/Lotus/Weapons/Grineer/GrineerRifle/FortressGrakata" + }, + { + "kills": 7, + "headshots": 1, + "assists": 4, + "type": "/Lotus/Weapons/Tenno/Shotgun/FortressEviseratorWeapon" + }, + { + "kills": 1372, + "headshots": 85, + "equipTime": 2064.102426, + "xp": 2582454, + "assists": 188, + "type": "/Lotus/Powersuits/Excalibur/ExcaliburUmbra" + }, + { + "kills": 236, + "headshots": 1, + "equipTime": 2464.852592, + "xp": 957508, + "assists": 902, + "type": "/Lotus/Powersuits/Tengu/ZephyrPrime" + }, + { + "kills": 5, + "equipTime": 198644.79066569995, + "xp": 32909399, + "type": "/Lotus/Types/Game/KubrowPet/HunterKubrowPetPowerSuit" + }, + { + "kills": 2, + "assists": 4, + "type": "/Lotus/Weapons/Grineer/Emplacements/AutoTurrets/EidolonTurretAutoRifle" + }, + { + "kills": 596, + "assists": 79, + "type": "/Lotus/Powersuits/Revenant/AfflictionElement" + }, + { + "kills": 1620, + "headshots": 35, + "equipTime": 12564.389288099996, + "xp": 3765735, + "assists": 1028, + "type": "/Lotus/Powersuits/Revenant/Revenant" + }, + { + "kills": 4, + "assists": 12, + "type": "/Lotus/Types/EnvDangers/InfestedHive/MagneticCloudHazard" + }, + { + "kills": 3, + "equipTime": 1912.8642605999999, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Weapons/VenusAiOpticor" + }, + { + "kills": 6, + "assists": 5, + "type": "/Lotus/Objects/Guild/GasCityRemaster/Props/CrpExplodingBarrelGas" + }, + { + "kills": 1733, + "headshots": 30, + "equipTime": 649819.9909389985, + "xp": 36869209, + "assists": 14102, + "type": "/Lotus/Powersuits/Dragon/ChromaPrime" + }, + { + "kills": 366, + "headshots": 18, + "equipTime": 7486.907028799998, + "xp": 524746, + "assists": 109, + "type": "/Lotus/Weapons/Corpus/LongGuns/CrpFreezeRay/Vandal/CrpFreezeRayVandalRifle" + }, + { + "kills": 1, + "assists": 2, + "type": "/Lotus/Types/EnvDangers/InfestedHive/MagneticCloudHazardTimed" + }, + { + "kills": 230, + "headshots": 8, + "equipTime": 3113.6366924999998, + "xp": 929605, + "assists": 988, + "type": "/Lotus/Powersuits/Wisp/Wisp" + }, + { + "kills": 6, + "type": "/EE/Types/Game/DamageTrigger" + }, + { + "kills": 26, + "headshots": 1, + "assists": 30, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Weapons/PilotFlameThrower" + }, + { + "kills": 4, + "headshots": 2, + "assists": 9, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Weapon/GasFlyingEliteUMP" + }, + { + "kills": 4, + "headshots": 1, + "assists": 17, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Weapon/GasLaserDiscGun" + }, + { + "kills": 9, + "equipTime": 2881.368002, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Weapon/GasMeleeDualWeapon" + }, + { + "kills": 11, + "equipTime": 1338.616022, + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Weapon/GasRailgunBFG" + }, + { + "kills": 18, + "headshots": 2, + "assists": 14, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Weapon/GasSuperMoaBeamWeapon" + }, + { + "kills": 1, + "equipTime": 1235.974841, + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Weapons/AmalgamCarrusCannon" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/MineDroneRifle" + }, + { + "kills": 6, + "headshots": 2, + "equipTime": 330.39167100000003, + "assists": 5, + "type": "/Lotus/Weapons/Corpus/LongGuns/CrpArSniper/AiCrpArSniperRifle" + }, + { + "kills": 309, + "equipTime": 15096.087464000002, + "xp": 1989393, + "assists": 502, + "type": "/Lotus/Powersuits/Magician/LimboPrime" + }, + { + "kills": 2, + "assists": 1, + "type": "/Lotus/Objects/Guild/GasCityRemaster/Props/CrpExplodingBarrelRadiation" + }, + { + "kills": 2, + "assists": 4, + "type": "/Lotus/Objects/Guild/GasCityRemaster/Props/CrpExplodingBarrel" + }, + { + "kills": 11299, + "equipTime": 106810.89958360002, + "xp": 21010779, + "assists": 8170, + "type": "/Lotus/Powersuits/Runner/Runner" + }, + { + "kills": 318, + "headshots": 7, + "equipTime": 24601.52233550001, + "xp": 3203163, + "assists": 415, + "type": "/Lotus/Types/Game/CatbrowPet/VampireCatbrowPetPowerSuit" + }, + { + "kills": 22, + "headshots": 1, + "assists": 18, + "type": "/Lotus/Powersuits/PowersuitAbilities/FireBallAbility" + }, + { + "kills": 13, + "assists": 7, + "type": "/Lotus/Weapons/Tenno/Grenades/NpcOrokinThrowGrenadeWeapon" + }, + { + "kills": 12, + "assists": 11, + "type": "/Lotus/Powersuits/NpcPowersuits/VenusShockwaveBipedSuit" + }, + { + "kills": 4, + "equipTime": 17859.626184800007, + "xp": 2386967, + "assists": 4, + "type": "/Lotus/Types/Game/KubrowPet/AdventurerKubrowPetPowerSuit" + }, + { + "kills": 716, + "headshots": 89, + "equipTime": 4917.059934299999, + "xp": 2090932, + "assists": 172, + "type": "/Lotus/Powersuits/Brawler/AtlasPrime" + }, + { + "kills": 1777, + "headshots": 105, + "equipTime": 76280.0231073, + "xp": 5390021, + "assists": 3807, + "type": "/Lotus/Types/Sentinels/SentinelWeapons/PrimeDethMachineRifle" + }, + { + "kills": 212, + "headshots": 2, + "equipTime": 4825.330002, + "xp": 1549294, + "assists": 72, + "type": "/Lotus/Powersuits/MonkeyKing/WukongPrime" + }, + { + "kills": 14, + "equipTime": 78.316643, + "assists": 7, + "type": "/Lotus/Weapons/CrewShip/Laser/PulseLaser/PulseLaser" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Weapons/CrewShip/Laser/Beam/ZektiRailJackBeamWeaponTierB" + }, + { + "kills": 3, + "assists": 9, + "type": "/Lotus/Weapons/CrewShip/Laser/PulseLaser/ZektiPulseLaserTierB" + }, + { + "kills": 1, + "assists": 2, + "type": "/Lotus/Weapons/Grineer/RailJack/DeepSpace/GrnDSCrewTwinGrakatas" + }, + { + "kills": 508, + "equipTime": 7636.2984408, + "xp": 1759967, + "assists": 241, + "type": "/Lotus/Powersuits/Devourer/Devourer" + }, + { + "kills": 1225, + "equipTime": 71628.76420719999, + "xp": 11298186, + "assists": 179, + "type": "/Lotus/Types/Sentinels/SentinelPowersuits/PrimeDethCubePowerSuit" + }, + { + "kills": 12, + "equipTime": 38549.696240199984, + "assists": 160, + "type": "/Lotus/Powersuits/Dragon/DragonPeltPrimePowerSuit" + }, + { + "kills": 449, + "equipTime": 3600.607287, + "xp": 1240085, + "assists": 288, + "type": "/Lotus/Powersuits/YinYang/EquinoxPrime" + }, + { + "kills": 21, + "headshots": 4, + "equipTime": 3056.6491548000004, + "assists": 29, + "type": "/Lotus/Weapons/Corpus/LongGuns/CrpEnergyRifle/CrpEnergyRifleWeapon" + }, + { + "kills": 3, + "equipTime": 32441.351971700005, + "xp": 1843144, + "assists": 173, + "type": "/Lotus/Types/Friendly/Pets/MoaPets/MoaPetParts/MoaPetHeadPara" + }, + { + "kills": 383, + "headshots": 14, + "equipTime": 4940.066705, + "xp": 1062643, + "assists": 29, + "type": "/Lotus/Powersuits/Cowgirl/MesaPrime" + }, + { + "kills": 3, + "equipTime": 429.15209319999997, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Weapons/ShipOspreyMineBurstGrenadeLauncher" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/VenusTerraShockwaveMoaSpikeProjPullTo" + }, + { + "kills": 1, + "assists": 2, + "type": "/Lotus/Weapons/Tenno/Grenades/NpcVenusThrowGrenadeWeapon" + }, + { + "kills": 1, + "equipTime": 2859.6166886, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/VenusElitePowerSpacemanHatchet" + }, + { + "kills": 15, + "headshots": 1, + "equipTime": 3593.2729286, + "assists": 7, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/VenusVipPowerSpacemanHatchet" + }, + { + "kills": 1, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/Hyenas/VenusFireHyenaPetSuit" + }, + { + "kills": 2, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusHeavyMeleeSpacemanAvatarLeader" + }, + { + "kills": 6, + "headshots": 1, + "equipTime": 6977.8497691, + "assists": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Weapons/AiCrpShotgun" + }, + { + "kills": 1, + "assists": 6, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Weapons/VenusHyenaRifleBurner" + }, + { + "kills": 23, + "equipTime": 3336.7955843000004, + "assists": 27, + "type": "/Lotus/Weapons/Corpus/LongGuns/CrpEnergyRifle/VenusEliteEnergyRifleWeapon" + }, + { + "kills": 3496, + "equipTime": 37785.506047, + "xp": 10335030, + "assists": 4998, + "type": "/Lotus/Powersuits/IronFrame/IronFrame" + }, + { + "kills": 1, + "equipTime": 3032.2456775, + "type": "/Lotus/Weapons/SpaceWeapons/Corpus/VenusShieldDroneRifle" + }, + { + "kills": 4, + "assists": 2, + "type": "/Lotus/Powersuits/NpcPowersuits/VenusIcewaveBipedSuit" + }, + { + "kills": 9, + "equipTime": 2270.0895646, + "assists": 12, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Weapons/VenusHeavyEliteDroneRifle" + }, + { + "kills": 3, + "assists": 372, + "type": "/Lotus/Types/Friendly/Pets/MoaPets/MoaPetPowerSuit" + }, + { + "kills": 1, + "assists": 2, + "type": "/Lotus/Powersuits/NpcPowersuits/AshenPowerSuit" + }, + { + "kills": 3, + "assists": 5, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/InfestedAttackDroneMicroplanetAWGun" + }, + { + "kills": 1, + "assists": 6, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/GreyStrain/BoneBlade/BoneBladeWeapon" + }, + { + "kills": 1, + "assists": 5, + "type": "/Lotus/Powersuits/NpcPowersuits/ShellAncientPowerSuit" + }, + { + "kills": 17, + "assists": 4, + "type": "/Lotus/Types/Enemies/Orokin/Entrati/EntratiTech/NechroTech/ExaltedArtilleryProjectile" + }, + { + "kills": 69, + "headshots": 3, + "equipTime": 3925.042558, + "xp": 928567, + "assists": 73, + "type": "/Lotus/Powersuits/Pacifist/Pacifist" + }, + { + "kills": 13, + "assists": 276, + "type": "/Lotus/Powersuits/PowersuitAbilities/PacifistDisarmAbility" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Sentients/Eidolon/EidolonGhostCannon" + }, + { + "kills": 1, + "assists": 6, + "type": "/Lotus/Levels/InfestedMicroplanet/InfestedLandmine" + }, + { + "kills": 5, + "headshots": 1, + "assists": 4, + "type": "/Lotus/Powersuits/EntratiMech/ThanoTechLandscapeSuit" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Sentients/Eidolon/EidolonGhostCasterGuidedProjectile" + }, + { + "kills": 1717, + "equipTime": 29834.855155999994, + "xp": 5133162, + "assists": 420, + "type": "/Lotus/Powersuits/Alchemist/Alchemist" + }, + { + "kills": 43, + "headshots": 1, + "xp": 900000, + "assists": 59, + "type": "/Lotus/Powersuits/EntratiMech/ThanoTech" + }, + { + "kills": 48, + "equipTime": 8631.684382, + "xp": 1057974, + "assists": 7, + "type": "/Lotus/Powersuits/BrokenFrame/BrokenFrame" + }, + { + "kills": 10, + "headshots": 1, + "equipTime": 82.9656605, + "type": "/Lotus/Weapons/CrewShip/Laser/PulseLaser/ZektiPulseLaserTierC" + }, + { + "kills": 15, + "xp": 1702627, + "assists": 44, + "type": "/Lotus/Powersuits/Wraith/Reaper" + }, + { + "kills": 1, + "equipTime": 423.760674, + "assists": 2, + "type": "/Lotus/Powersuits/NpcPowersuits/BeastMasterPowerSuit" + }, + { + "kills": 3, + "equipTime": 57.4869402, + "type": "/Lotus/Weapons/CrewShip/Laser/GatlingLaser/ZektiGatlingLaserTierC" + }, + { + "kills": 189, + "headshots": 37, + "equipTime": 2919.0349060000003, + "xp": 954262, + "assists": 173, + "type": "/Lotus/Powersuits/Fairy/TitaniaPrime" + }, + { + "kills": 6, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Hoverboard/CrpHoverboardTrickDamageTrigger" + }, + { + "kills": 503, + "equipTime": 5005.929631000001, + "xp": 912217, + "assists": 121, + "type": "/Lotus/Powersuits/Odalisk/Odalisk" + }, + { + "kills": 1, + "headshots": 1, + "equipTime": 100.219978, + "assists": 1, + "type": "/Lotus/Weapons/CrewShip/Laser/PulseLaser/VidarPulseLaserTierC" + }, + { + "kills": 3, + "equipTime": 1951.257485, + "xp": 59993, + "assists": 163, + "type": "/Lotus/Types/Friendly/Pets/MoaPets/MoaPetComponents/HextraWeapon" + }, + { + "kills": 447, + "headshots": 28, + "equipTime": 5571.941602, + "xp": 6217563, + "assists": 122, + "type": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetMeleeWeaponIS" + }, + { + "kills": 37, + "headshots": 2, + "assists": 114, + "type": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetPreceptComponents/ZanukaPlayerPetLaserBeam" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Weapons/AiTetraRifle" + }, + { + "kills": 253, + "equipTime": 5863.613936, + "xp": 1702627, + "assists": 314, + "type": "/Lotus/Powersuits/Wraith/Wraith" + }, + { + "kills": 263, + "headshots": 9, + "equipTime": 61317.913608600014, + "xp": 14742344, + "assists": 1222, + "type": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetParts/ZanukaPetPartHeadB" + }, + { + "kills": 1, + "equipTime": 5255.320637, + "assists": 50, + "type": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetParts/ZanukaPetPartHeadA" + }, + { + "kills": 38, + "headshots": 4, + "equipTime": 1210.084091, + "xp": 450000, + "assists": 50, + "type": "/Lotus/Weapons/Corpus/BoardExec/Secondary/CrpBECycron/CrpBECycron" + }, + { + "kills": 22, + "assists": 51, + "type": "/Lotus/Powersuits/Ember/EmberFireBlastEntity" + }, + { + "kills": 31, + "xp": 595716, + "assists": 4, + "type": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetMeleeWeaponPS" + }, + { + "kills": 2, + "equipTime": 1645.963408, + "xp": 1069956, + "assists": 88, + "type": "/Lotus/Powersuits/Yareli/Yareli" + }, + { + "kills": 187, + "headshots": 6, + "equipTime": 13956.978770400003, + "xp": 10250134, + "assists": 44, + "type": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetMeleeWeaponIP" + }, + { + "kills": 274, + "headshots": 10, + "assists": 171, + "type": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetBPowerSuit" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Corpus/QuadRobot/TNWDummyExplosionAction" + }, + { + "kills": 15, + "type": "/Lotus/Weapons/Grineer/Eidolon/EidolonStandingEmplacementTurret" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Sentients/Vip/Erra/SentientErraConduitRight" + }, + { + "kills": 6, + "equipTime": 1322.5383249000001, + "assists": 4, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Weapons/VenusHeavyDroneRifle" + }, + { + "kills": 1, + "type": "/Lotus/Types/Weapon/VenusShockwaveEntity" + }, + { + "kills": 12, + "equipTime": 4694.312910500001, + "assists": 3, + "type": "/Lotus/Powersuits/Operator/AdultFemaleOperatorSuit" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Weapons/Grineer/Emplacements/GrnEmplcmntStndng/GrineerFortressEmplacementStanding" + }, + { + "kills": 37, + "headshots": 1, + "equipTime": 722.6112543, + "assists": 9, + "type": "/Lotus/Types/Gameplay/Zariman/EncounterObjects/AssassinateEndless/TurretChainWeapon" + }, + { + "kills": 2, + "equipTime": 496.24814339999995, + "assists": 1, + "type": "/Lotus/Types/Gameplay/Zariman/EncounterObjects/AssassinateEndless/TurretWeapon" + }, + { + "kills": 9, + "assists": 278, + "type": "/Lotus/Types/Enemies/LeaderAuras/HealthLeechTrigger" + }, + { + "kills": 12, + "assists": 92, + "type": "/Lotus/Powersuits/NpcPowersuits/ShockEximusOrbSuit" + }, + { + "kills": 2, + "assists": 6, + "type": "/Lotus/Weapons/Tenno/Grenades/NpcGrineerThrowGrenadeWeapon" + }, + { + "kills": 9, + "assists": 18, + "type": "/Lotus/Powersuits/NpcPowersuits/BlitzEximusChainBlastSuit" + }, + { + "kills": 14, + "assists": 149, + "type": "/Lotus/Types/Enemies/Enhancements/FireEximusBlastEntity" + }, + { + "kills": 2, + "headshots": 1, + "equipTime": 324.57367969999996, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Weapons/AiDualCestraPistols" + }, + { + "kills": 193, + "equipTime": 3693.7959057000003, + "xp": 960236, + "assists": 18, + "type": "/Lotus/Powersuits/Werewolf/Werewolf" + }, + { + "kills": 131, + "equipTime": 2153.3284541000003, + "xp": 1357115, + "assists": 139, + "type": "/Lotus/Powersuits/Geode/Geode" + }, + { + "kills": 143, + "headshots": 5, + "equipTime": 3236.2324017, + "xp": 1116258, + "assists": 75, + "type": "/Lotus/Powersuits/Hoplite/Hoplite" + }, + { + "kills": 3, + "type": "/Lotus/Types/Enemies/Duviri/Dragon/DragonBreathWeaponAngryQuest" + }, + { + "kills": 2, + "equipTime": 16163.010638, + "type": "/Lotus/Types/Friendly/PlayerControllable/FemaleControllableDuviriDrifterSuit" + }, + { + "kills": 11, + "headshots": 1, + "equipTime": 966.0821030000001, + "assists": 6, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrnGrenadeLauncher/AIGrnGrenadeLauncherPistol" + }, + { + "kills": 240, + "assists": 236, + "type": "/Lotus/Objects/Entrati/Lab/Gameplay/ORKxLabsVialScriptDamageTrigger" + }, + { + "kills": 26, + "equipTime": 360.05716, + "type": "/Lotus/Powersuits/Excalibur/ExcaliburLasriaSuit" + }, + { + "kills": 6, + "assists": 133, + "type": "/Lotus/Objects/Entrati/Lab/Gameplay/ORKxLabVialScriptTrigger" + }, + { + "kills": 2, + "type": "/Lotus/Types/Gameplay/EntratiLab/Alchemy/ElementalGrenades/AlchemyElectricityThrowableProjectile" + }, + { + "kills": 3, + "assists": 1, + "type": "/Lotus/Types/Gameplay/EntratiLab/Alchemy/ElementalGrenades/AlchemyFireThrowableProjectile" + }, + { + "kills": 5, + "assists": 1, + "type": "/Lotus/Types/Gameplay/EntratiLab/Alchemy/ElementalGrenades/AlchemyToxinThrowableProjectile" + }, + { + "kills": 1, + "equipTime": 781.7738284000001, + "assists": 3, + "type": "/Lotus/Weapons/Mitw/MITWArmMeleeWeapon" + }, + { + "kills": 15, + "type": "/Lotus/Types/Enemies/Orokin/Entrati/EntratiTech/EntratiTechAvatar" + }, + { + "kills": 2, + "assists": 62, + "type": "/Lotus/Powersuits/NpcPowersuits/MITWNecramechRangedSuit" + }, + { + "kills": 1, + "assists": 62, + "type": "/Lotus/Types/Friendly/Tenno/AdultOperatorAvatar" + }, + { + "kills": 3, + "equipTime": 347.3070085, + "assists": 1, + "type": "/Lotus/Weapons/Mitw/HandBomberGrenadeLauncher" + }, + { + "kills": 1, + "assists": 2, + "type": "/Lotus/Powersuits/NpcPowersuits/EnergyLeechEximusSuit" + }, + { + "kills": 3, + "equipTime": 253.5605721, + "assists": 9, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Weapons/AiExergisShotgun" + }, + { + "kills": 2, + "headshots": 1, + "equipTime": 21.005316, + "type": "/Lotus/Weapons/CrewShip/Laser/Beam/ZektiRailJackBeamWeaponTierC" + }, + { + "kills": 1, + "assists": 2, + "type": "/Lotus/Weapons/Tenno/Melee/Hammer/GlassHammer/GlassHammerDamageTrigger" + }, + { + "kills": 3, + "assists": 6, + "type": "/Lotus/Types/EnvDangers/CrpFlameValveDamageTrigger" + }, + { + "kills": 15, + "assists": 18, + "type": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetCPowerSuit" + }, + { + "kills": 3, + "assists": 1, + "type": "/Lotus/Powersuits/NpcPowersuits/Lawyers/Powers/PowerComponents/PetStompShockwaveEntityPrecept" + }, + { + "kills": 3, + "equipTime": 9369.039949, + "assists": 27, + "type": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetParts/ZanukaPetPartHeadC" + }, + { + "kills": 588, + "headshots": 14, + "equipTime": 4748.761396299999, + "xp": 1237772, + "assists": 296, + "type": "/Lotus/Powersuits/Pagemaster/Pagemaster" + }, + { + "equipTime": 188627.95076250006, + "xp": 15270066, + "type": "/Lotus/Types/Sentinels/SentinelPowersuits/CarrierPowerSuit" + }, + { + "equipTime": 25576.179643999996, + "xp": 1607182, + "type": "/Lotus/Types/Sentinels/SentinelPowersuits/DethCubePowerSuit" + }, + { + "equipTime": 11873.560240500005, + "xp": 2079583, + "type": "/Lotus/Types/Game/KubrowPet/GuardKubrowPetPowerSuit" + }, + { + "equipTime": 69160.78164429999, + "xp": 6259475, + "type": "/Lotus/Types/Sentinels/SentinelPowersuits/ShadePowerSuit" + }, + { + "equipTime": 23546.115629900003, + "xp": 1393433, + "assists": 6, + "type": "/Lotus/Powersuits/Loki/Loki" + }, + { + "equipTime": 266015.2071827999, + "xp": 24114066, + "type": "/Lotus/Types/Sentinels/SentinelPowersuits/MeleePetPowerSuit" + }, + { + "equipTime": 1512.438513, + "assists": 2, + "type": "/Lotus/Weapons/Grineer/Melee/GrineerHeavyStaff/GrineerStaffWeapon" + }, + { + "equipTime": 27895.325130699992, + "type": "/Lotus/Weapons/Grineer/Shield/Shield" + }, + { + "equipTime": 4152.793002799999, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/Weapons/ModularCorpusWhip" + }, + { + "equipTime": 2326.5926940000004, + "type": "/Lotus/Powersuits/Fairy/FlightAgentGun" + }, + { + "equipTime": 5308.41141, + "type": "/Lotus/Powersuits/Operator/OperatorSuit" + }, + { + "equipTime": 37460.8981333, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Runners/InfestedVomitGun" + }, + { + "equipTime": 39387.34779589999, + "xp": 4960786, + "assists": 1, + "type": "/Lotus/Types/Sentinels/SentinelPowersuits/GubberPowerSuit" + }, + { + "equipTime": 20231.426837500003, + "xp": 1006846, + "type": "/Lotus/Powersuits/Archwing/SupportJetPack/SupportJetPack" + }, + { + "equipTime": 15749.826201999995, + "xp": 1149633, + "type": "/Lotus/Types/Sentinels/SentinelPowersuits/ArcDronePowerSuit" + }, + { + "equipTime": 5016.365547, + "type": "/Lotus/Weapons/Tenno/Gear/MiningLaserWeapon" + }, + { + "equipTime": 9142.302820899999, + "type": "/Lotus/Weapons/Tenno/Gear/MiningLaserBWeapon" + }, + { + "equipTime": 35501.39485089999, + "assists": 1, + "type": "/Lotus/Weapons/Tenno/Gear/MiningLaserCWeapon" + }, + { + "equipTime": 99.57181489999999, + "type": "/Lotus/Levels/MiniGames/Sentinel/WyrmPowerSuit" + }, + { + "equipTime": 9770.922607299999, + "type": "/Lotus/Powersuits/Khora/Kavat/KhoraKavatMeleeWeapon" + }, + { + "equipTime": 13781.170205199998, + "type": "/Lotus/Powersuits/Vehicles/CrpHoverboard" + }, + { + "equipTime": 24349.491198500004, + "type": "/Lotus/Weapons/Tenno/Gear/MiningLaserSolarisWeaponA" + }, + { + "equipTime": 1361.116821, + "xp": 690872, + "assists": 4, + "type": "/Lotus/Weapons/Corpus/Pistols/CorpusModularPistol/Vandal/CrpLaserPistolVandal" + }, + { + "equipTime": 47.249073, + "type": "/Lotus/Weapons/Tenno/Melee/Fist/FightingFists" + }, + { + "equipTime": 1182.4350511, + "type": "/Lotus/Types/Gameplay/Conservation/Lures/SnowRodentLureWeapon" + }, + { + "equipTime": 640.73928, + "type": "/Lotus/Types/Gameplay/Conservation/Lures/SnowCritterLureWeapon" + }, + { + "equipTime": 511.018487, + "type": "/Lotus/Types/Gameplay/Conservation/Lures/SnowBirdLureWeapon" + }, + { + "equipTime": 424864.62277339946, + "xp": 450000, + "type": "/Lotus/Weapons/Tenno/HackingDevices/TnHackingDevice/TnHackingDeviceWeapon" + }, + { + "equipTime": 191.3383, + "type": "/Lotus/Types/Gameplay/Conservation/Lures/VampKavatLureWeapon" + }, + { + "equipTime": 26.460238, + "xp": 600777, + "type": "/Lotus/Weapons/Tenno/Rifle/SniperRifle" + }, + { + "equipTime": 39.950966, + "type": "/Lotus/Weapons/CrewShip/Laser/Blaster/BlasterTierC" + }, + { + "equipTime": 41.5638844, + "type": "/Lotus/Weapons/CrewShip/MassDriver/AutoCannon/VidarAutoCannonTierC" + }, + { + "equipTime": 279.09378, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Weapons/VenusMoaSniperRifleAI" + }, + { + "equipTime": 3073.3001991, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/Weapons/ModularCorpusShieldWeapon" + }, + { + "equipTime": 1009.3075001000001, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Weapons/VenusHyenaRifleAstro" + }, + { + "equipTime": 3619.3421096, + "type": "/Lotus/Types/Gameplay/Conservation/Lures/InfestedMaggotLureWeapon" + }, + { + "equipTime": 2589.5731579999997, + "type": "/Lotus/Types/Gameplay/Conservation/Lures/InfestedPredatorLureWeapon" + }, + { + "equipTime": 2472.420153, + "type": "/Lotus/Types/Gameplay/Conservation/Lures/InfestedCritterLureWeapon" + }, + { + "equipTime": 1538.5690209999998, + "type": "/Lotus/Types/Gameplay/Conservation/Lures/InfestedMergooLureWeapon" + }, + { + "equipTime": 1951.3026429999998, + "xp": 60448, + "type": "/Lotus/Types/Sentinels/SentinelPowersuits/RadarPowerSuit" + }, + { + "equipTime": 556.838729, + "type": "/Lotus/Weapons/CrewShip/Laser/PulseLaser/VidarPulseLaserTierB" + }, + { + "equipTime": 1062.724207, + "xp": 406742, + "type": "/Lotus/Types/Vehicles/Hoverboard/HoverboardParts/PartComponents/HoverboardSolarisA/HoverboardSolarisADeck" + }, + { + "equipTime": 4682.684139000001, + "xp": 925777, + "assists": 1, + "type": "/Lotus/Powersuits/Ranger/IvaraPrime" + }, + { + "equipTime": 7550.133419999999, + "type": "/Lotus/Types/Friendly/PlayerControllable/FemaleControllableDrifterSuit" + }, + { + "equipTime": 904.85669, + "type": "/Lotus/Weapons/Orokin/BallasSword/TNWQuestBallasSwordWeapon" + }, + { + "equipTime": 1628.9125, + "type": "/Lotus/Types/Friendly/PlayerControllable/ControllableKahlSuit" + }, + { + "equipTime": 70.918762, + "type": "/Lotus/Types/Game/FlightJetPackItems/PlayerGrnFlightJetPackItem" + }, + { + "equipTime": 6976.2166161, + "type": "/Lotus/Types/Enemies/Corrupted/Weapons/CorruptedKubrowMeleeWeapon" + }, + { + "equipTime": 154.5527609, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Weapons/ShipMoaGlaxionRifle" + }, + { + "equipTime": 3.0779197, + "type": "/Lotus/Weapons/Tenno/Melee/Tonfa/TonfaContestWinner/TennoTonfa" + }, + { + "equipTime": 4.7572513, + "type": "/Lotus/Types/Friendly/PlayerControllable/Weapons/LotusHandCompass" + }, + { + "equipTime": 966.0821010000001, + "type": "/Lotus/Weapons/Grineer/Shield/ShieldElitePunchThroughImmunity" + }, + { + "equipTime": 725.548927, + "type": "/Lotus/Types/Gameplay/Conservation/Lures/ZongroLureWeapon" + }, + { + "equipTime": 495.54500269999994, + "assists": 4, + "type": "/Lotus/Weapons/Mitw/NecramechMeleeWeapon" + }, + { + "equipTime": 203.5833514, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Weapons/ShipOspreyOxiumBeamWeapon" + }, + { + "equipTime": 347.7752114, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Weapons/ShipOspreyShieldRifle" + }, + { + "equipTime": 179.95913330000002, + "type": "/Lotus/Types/Enemies/Corpus/Zariman/Weapons/AiCrpInterrupterSniperRifle" + }, + { + "xp": 86103, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/DarkSword/DarkSwordDaggerHybridWeapon" + }, + { + "xp": 2713430, + "type": "/Lotus/Types/Game/CrewShip/RailJack/DefaultHarness" + }, + { + "xp": 406742, + "type": "/Lotus/Types/Vehicles/Hoverboard/HoverboardSuit" + }, + { + "xp": 0, + "type": "/Lotus/Powersuits/Yareli/BoardSuit" + }, + { + "assists": 10, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedMoas/SlowGooDamageTrigger" + }, + { + "assists": 1, + "type": "/Lotus/Types/Sentinels/SentinelWeapons/LaserPistolProjectile" + }, + { + "assists": 2, + "type": "/Lotus/Weapons/Grineer/DeathSquadWeapons/DeathSquadHandCannon" + }, + { + "assists": 4, + "type": "/Lotus/Powersuits/NpcPowersuits/RiotDispersionMoaSuit" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/Weapons/LaserDisc" + }, + { + "assists": 2, + "type": "/Lotus/Types/Weapon/SmallBipedRobotShockwaveEntity" + }, + { + "assists": 18, + "type": "/Lotus/Powersuits/NpcPowersuits/ToxicAncientPowerSuit" + }, + { + "assists": 1, + "type": "/Lotus/Weapons/SpaceWeapons/Grineer/PursuitSpaceTurretMissileGun" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Stalker/SentientStalkerSuit" + }, + { + "assists": 1, + "type": "/Lotus/Powersuits/NpcPowersuits/CaptureSuitSmokeScreen" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedMoas/SlowBombProjectile" + }, + { + "assists": 3, + "type": "/Lotus/Types/Enemies/Orokin/Weapons/OrokinGuidedRocketProjectile" + }, + { + "assists": 1, + "type": "/Lotus/Weapons/SpaceWeapons/Infested/InfestedWeakGuidedProjectile" + }, + { + "assists": 19, + "type": "/Lotus/Weapons/Grineer/CatMasterWeapons/ScorchDamageTrigger" + }, + { + "assists": 1, + "type": "/Lotus/Powersuits/NpcPowersuits/JuggernautSuit" + }, + { + "assists": 7, + "type": "/Lotus/Weapons/Grineer/LongGuns/GrineerFlakCannon/AiFortressFlakProjectile" + }, + { + "assists": 7, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamA/HeavySuicideDroneElectricWeapon" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Hyena/HyenaRifleIce" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/LeechDroneRifle" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/AladVPet/AladVPetMeleeWeapon" + }, + { + "assists": 1, + "type": "/Lotus/Powersuits/NpcPowersuits/BossCaptainVorPowerStage2Suit" + }, + { + "assists": 1, + "type": "/Lotus/Types/Weapon/RiotBipedDispersionShockwaveEntity" + }, + { + "assists": 1, + "type": "/Lotus/Weapons/Grineer/Emplacements/AutoTurrets/GrnTurretFlameThrower" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/CorpusChampions/ChampionWeapons/CorpusChampionGlaxion" + }, + { + "assists": 6, + "type": "/Lotus/Weapons/Grineer/Pistols/GrnKohmPistol/AiGrnKohmPistol" + }, + { + "assists": 1, + "type": "/Lotus/Weapons/Grineer/Eidolon/EidolonAntiAWMissileLauncherRifle" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Grineer/ChemStrike/ChemStrikeNoxSuit" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Weapons/QuadGuidedMissileProj" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Weapons/AmalgamMoaSatyrRifle" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AmalgamMoaRifle" + }, + { + "assists": 6, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/MineProjectile" + }, + { + "assists": 1, + "type": "/Lotus/Weapons/Corpus/LongGuns/CrpShapeBlast/AiCrpShapeBlastProj" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/Weapons/CrpTechRifleProjectile" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Infested/Vip/InfestedMaggotSpawnPodTwoStageDisruption" + }, + { + "assists": 14, + "type": "/Lotus/Weapons/Tenno/Grenades/EliteGrineerNpcThrowGrenadeWeapon" + }, + { + "assists": 1, + "type": "/Lotus/Powersuits/NpcPowersuits/KuvaLich/KuvaLichHenchmenPowerSuit" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Weapons/VenusQuadRobotRifle" + }, + { + "assists": 1, + "type": "/Lotus/Weapons/Corpus/LongGuns/CrpEnergyRifle/VenusGuardEnergyRifleWeapon" + }, + { + "assists": 5, + "type": "/Lotus/Weapons/Corpus/LongGuns/VenusAntiAWMissileLauncher" + }, + { + "assists": 2, + "type": "/Lotus/Weapons/Tenno/Melee/RoyalJesterMeleeWeapon" + }, + { + "assists": 4, + "type": "/Lotus/Powersuits/NpcPowersuits/VenusQuadBipedSuit" + }, + { + "assists": 2, + "type": "/Lotus/Powersuits/NpcPowersuits/JesterPowerSuit" + }, + { + "assists": 4, + "type": "/Lotus/Powersuits/NpcPowersuits/SpaceFighterDredgerSuit" + }, + { + "assists": 2, + "type": "/Lotus/Weapons/Grineer/RailJack/BoardingDemoSwarmMissileLauncher" + }, + { + "assists": 11, + "type": "/Lotus/Powersuits/NpcPowersuits/SpaceFighterEliteDredgerSuit" + }, + { + "assists": 2, + "type": "/Lotus/Weapons/CrewShip/Laser/PulseLaser/LavanPulseLaserTierC" + }, + { + "assists": 1, + "type": "/Lotus/Weapons/Grineer/RailJack/DeepSpace/GrnDSCrewRifleWeapon" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Ambulas/AmbulasMortarProjectile" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Gamemodes/PurgatoryEyeWeapon" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/QuadRobot/QuadRobotDataKnifeAction" + }, + { + "assists": 3, + "type": "/Lotus/Powersuits/NpcPowersuits/VenusLaserCannonRetreatBipedSuit" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Grineer/Vip/HammerBossFireElement" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusModularAvatarWalkingLaser" + }, + { + "assists": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusShockwaveBipedAvatar" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusModularAvatarWalkingTesla" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusModularAvatarWalkingDetector" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Weapons/AiCorpusUMPProjectile" + }, + { + "assists": 54, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/GreyStrain/Femur/FemurCloudElement" + }, + { + "assists": 1, + "type": "/Lotus/Powersuits/NpcPowersuits/AncientTankPowersuit" + }, + { + "assists": 1, + "type": "/Lotus/Powersuits/NpcPowersuits/AristocratManagerSuit" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Weapons/GoxBigSwarmProj" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/Weapons/CrpCrewShockMoaRifle/CrpCrewShockMoaRifle" + }, + { + "assists": 1, + "type": "/Lotus/Types/Vehicles/Hoverboard/HoverboardAbility/GrindSlamShockwave" + }, + { + "assists": 47, + "type": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetPreceptComponents/ZanukaPlayerPetDisarmPulseShockwaveEntity" + }, + { + "assists": 1, + "type": "/Lotus/Fx/Enemies/Golem/GolemMeleeShockwaveEntity" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Duviri/Weapons/DuviriSwarmMissileLauncher" + }, + { + "assists": 4, + "type": "/Lotus/Weapons/Tenno/Archwing/Primary/TnConcreteArchgun/TnConcreteArchgunAltFireDamageHeavyTrigger" + }, + { + "assists": 1, + "type": "/Lotus/Objects/Entrati/Lab/Gameplay/Destructible/ORKxLabTableBCrn4mItemsCDestructibleDeco" + }, + { + "assists": 3, + "type": "/Lotus/Objects/Entrati/Lab/Gameplay/Destructible/ORKxLabTableBCrn8mItemsCDestructibleDeco" + }, + { + "assists": 2, + "type": "/Lotus/Types/Gameplay/EntratiLab/Alchemy/ElementalGrenades/AlchemyIceThrowableProjectile" + }, + { + "assists": 1, + "type": "/Lotus/Objects/Entrati/Lab/Gameplay/ORKxLabsVialDamageTrigger" + }, + { + "assists": 1, + "type": "/Lotus/Objects/Entrati/Lab/Gameplay/Destructible/ORKxLabTableAStrVialsADestructibleDeco" + }, + { + "assists": 2, + "type": "/Lotus/Objects/Entrati/Lab/Gameplay/Destructible/ORKxLabTableBCrn8mItemsBDestructibleDeco" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/Weapons/RiotMoaRocketProjectile" + }, + { + "assists": 1, + "type": "/Lotus/Objects/Entrati/Lab/Gameplay/Destructible/ORKxLabMachineLiftADestructible" + }, + { + "assists": 78, + "type": "/Lotus/Types/Gameplay/EntratiLab/Swarm/PulseScanShockwave" + }, + { + "assists": 2, + "type": "/Lotus/Powersuits/NpcPowersuits/HealthLeechEximusSuit" + }, + { + "assists": 2, + "type": "/Lotus/Objects/Entrati/Lab/Gameplay/Destructible/ORKxLabTableBCrn8mItemsADestructibleDeco" + }, + { + "assists": 2, + "type": "/Lotus/Objects/Entrati/Lab/Gameplay/Destructible/ORKxLabTableBCrn4mItemsBDestructibleDeco" + }, + { + "assists": 2, + "type": "/Lotus/Objects/Entrati/Lab/Gameplay/Destructible/ORKxLabCoverMachine3x2mASemiDeco" + }, + { + "assists": 4, + "type": "/Lotus/Objects/Entrati/Lab/Gameplay/Destructible/ORKxLabTableAStrItemsBDestructibleDeco" + }, + { + "assists": 1, + "type": "/Lotus/Powersuits/IronFrame/IronFramePrime" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/NewWar/Archons/AmarWolfPackCrowdPNWDecoChild" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Infested/Disruption/Powersuits/DisruptionJuggernautSuit" + }, + { + "assists": 1, + "type": "/Lotus/Powersuits/Harlequin/IllusionMirrorAvatar" + } + ], + "Enemies": [ + { + "kills": 30, + "headshots": 4, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/RifleLancerTutorialAvatar" + }, + { + "kills": 4922, + "executions": 443, + "headshots": 129, + "assists": 459, + "deaths": 18, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/ShotgunLancerAvatar" + }, + { + "kills": 11, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/BladeSawmanAvatarTutorial" + }, + { + "kills": 134, + "executions": 19, + "headshots": 11, + "type": "/Lotus/Types/Enemies/Grineer/GrineerAvatars/TutoralMarinerAvatar" + }, + { + "kills": 12898, + "executions": 750, + "headshots": 400, + "assists": 673, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/RifleLancerAvatar" + }, + { + "kills": 29190, + "executions": 972, + "headshots": 1132, + "assists": 2772, + "deaths": 19, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/BladeSawmanAvatar" + }, + { + "kills": 5, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/FemaleGrineerTutorialAvatar" + }, + { + "kills": 15756, + "executions": 846, + "headshots": 575, + "assists": 2850, + "deaths": 50, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/ShieldLancerAvatar" + }, + { + "kills": 32699, + "executions": 2089, + "headshots": 1382, + "assists": 12709, + "deaths": 176, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/ShotgunLancerAvatar" + }, + { + "kills": 70732, + "executions": 6286, + "headshots": 2636, + "assists": 9850, + "deaths": 234, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/LaserCannonBipedAvatar" + }, + { + "kills": 12291, + "executions": 1127, + "headshots": 256, + "assists": 1684, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/ShieldDroneAvatar" + }, + { + "kills": 16223, + "executions": 722, + "headshots": 432, + "assists": 755, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/RifleSpacemanAvatar" + }, + { + "kills": 4176, + "executions": 157, + "headshots": 169, + "assists": 281, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/MeleeSpacemanAvatar" + }, + { + "kills": 7758, + "executions": 301, + "assists": 36, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/StickyRollingDroneAvatar" + }, + { + "kills": 18, + "headshots": 2, + "assists": 22, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/Vip/Avatars/CaptainVorBossAvatar" + }, + { + "kills": 6428, + "executions": 585, + "headshots": 195, + "assists": 1605, + "deaths": 31, + "type": "/Lotus/Types/Enemies/Grineer/GrineerAvatars/GrineerMarinePistolAvatar" + }, + { + "kills": 1022, + "executions": 25, + "headshots": 54, + "assists": 691, + "deaths": 9, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/AncientAvatarLeader" + }, + { + "kills": 185013, + "executions": 8298, + "headshots": 3668, + "assists": 69989, + "deaths": 175, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Quadrupeds/QuadrupedAvatar" + }, + { + "kills": 927, + "executions": 138, + "headshots": 31, + "assists": 315, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/BladeSawmanAvatarLeader" + }, + { + "kills": 6740, + "executions": 447, + "headshots": 326, + "assists": 1765, + "deaths": 39, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/FemaleGrineerAvatar" + }, + { + "kills": 631, + "executions": 20, + "headshots": 17, + "assists": 356, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/RifleLancerAvatarLeader" + }, + { + "kills": 743, + "executions": 97, + "headshots": 34, + "assists": 264, + "deaths": 14, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/ShieldLancerAvatarLeader" + }, + { + "kills": 28309, + "executions": 1616, + "headshots": 828, + "assists": 5873, + "deaths": 21, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Runners/LeapingRunnerAvatar" + }, + { + "kills": 39549, + "executions": 1251, + "headshots": 1322, + "assists": 7841, + "deaths": 6, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Runners/SuicideRunnerAvatar" + }, + { + "kills": 19987, + "executions": 689, + "headshots": 908, + "assists": 13286, + "deaths": 37, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/AncientAvatar" + }, + { + "kills": 6752, + "executions": 328, + "headshots": 175, + "assists": 4723, + "deaths": 32, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Quadrupeds/QuadrupedAvatarLeader" + }, + { + "kills": 5380, + "executions": 181, + "headshots": 246, + "assists": 588, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/CrawlerAvatar" + }, + { + "kills": 81, + "executions": 2, + "headshots": 5, + "assists": 33, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/GrenadeAvatarLeader" + }, + { + "kills": 6944, + "executions": 334, + "headshots": 282, + "assists": 1385, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/NoxiousCrawlerAvatar" + }, + { + "kills": 6892, + "executions": 341, + "headshots": 312, + "assists": 1318, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/GrenadeAvatar" + }, + { + "kills": 21103, + "executions": 1382, + "headshots": 857, + "assists": 5638, + "deaths": 9, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Runners/RunnerAvatar" + }, + { + "kills": 888, + "executions": 55, + "headshots": 44, + "assists": 422, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Runners/LeapingRunnerAvatarLeader" + }, + { + "kills": 4975, + "executions": 280, + "headshots": 159, + "assists": 589, + "deaths": 14, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/RailgunBipedAvatar" + }, + { + "kills": 15837, + "executions": 887, + "headshots": 456, + "assists": 1185, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/ShockwaveBipedAvatar" + }, + { + "kills": 27606, + "executions": 2401, + "headshots": 1014, + "assists": 4644, + "deaths": 94, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/ShotgunSpacemanAvatar" + }, + { + "kills": 2601, + "executions": 495, + "headshots": 82, + "assists": 776, + "deaths": 11, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/LaserCannonBipedAvatarLeader" + }, + { + "kills": 3592, + "assists": 53, + "type": "/Lotus/Types/Enemies/Corpus/Turrets/TurretAvatars/SecurityCameraNarrowAvatar" + }, + { + "kills": 147, + "executions": 6, + "headshots": 7, + "assists": 9, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/RifleSpacemanAvatarLeader" + }, + { + "kills": 332, + "executions": 72, + "assists": 14, + "type": "/Lotus/Types/Enemies/GrineerChampions/ChampionDrones/ChampionDroneBaseAvatar" + }, + { + "kills": 243, + "executions": 25, + "headshots": 6, + "assists": 36, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionChargerAvatar" + }, + { + "kills": 130, + "executions": 22, + "headshots": 1, + "assists": 12, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionHealerAvatar" + }, + { + "kills": 7221, + "executions": 388, + "headshots": 243, + "assists": 836, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/RifleLancerAvatar" + }, + { + "kills": 383, + "executions": 26, + "headshots": 8, + "assists": 120, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/GrineerMarinePistolAvatar" + }, + { + "kills": 1573, + "executions": 58, + "headshots": 71, + "assists": 52, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/BladeSawmanAvatar" + }, + { + "kills": 65, + "executions": 5, + "headshots": 2, + "assists": 16, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/RifleLancerAvatarLeader" + }, + { + "kills": 3099, + "executions": 139, + "headshots": 133, + "assists": 861, + "deaths": 5, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/ShotgunLancerAvatar" + }, + { + "kills": 473, + "executions": 25, + "headshots": 23, + "assists": 152, + "type": "/Lotus/Types/Enemies/Grineer/GrineerAvatars/GrineerMarineLeaderAvatar" + }, + { + "kills": 529, + "executions": 22, + "headshots": 25, + "assists": 294, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/Desert/HeavyFemaleGrineerAvatarDesert" + }, + { + "kills": 7860, + "executions": 475, + "headshots": 396, + "assists": 3278, + "deaths": 25, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/HeavyFemaleGrineerAvatar" + }, + { + "kills": 4989, + "executions": 672, + "headshots": 157, + "assists": 1109, + "deaths": 41, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/PistonSawmanAvatar" + }, + { + "kills": 8174, + "executions": 574, + "headshots": 209, + "assists": 1836, + "deaths": 14, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/SuperMoaBipedAvatar" + }, + { + "kills": 43, + "executions": 1, + "headshots": 1, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/MeleeSpacemanAvatarLeader" + }, + { + "kills": 18, + "executions": 1, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/SpacemanAvatar" + }, + { + "kills": 35, + "executions": 1, + "headshots": 3, + "assists": 23, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Desert/HeavyFemaleGrineerAvatarDesertLeader" + }, + { + "kills": 11582, + "executions": 690, + "headshots": 679, + "assists": 4621, + "deaths": 39, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/MacheteWomanAvatar" + }, + { + "kills": 33, + "executions": 1, + "headshots": 1, + "assists": 2, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/GrineerAvatars/GrineerMarineAvatar" + }, + { + "kills": 724, + "executions": 34, + "headshots": 40, + "assists": 379, + "deaths": 14, + "type": "/Lotus/Types/Enemies/Orokin/OrokinDroneAttackAvatar" + }, + { + "kills": 9858, + "executions": 865, + "headshots": 303, + "assists": 3676, + "deaths": 28, + "type": "/Lotus/Types/Enemies/Orokin/OrokinMoaBipedAvatar" + }, + { + "kills": 7453, + "executions": 1285, + "assists": 1012, + "type": "/Lotus/Types/Enemies/Orokin/OrokinShieldDroneAvatar" + }, + { + "kills": 29823, + "executions": 2830, + "headshots": 1168, + "assists": 6374, + "deaths": 34, + "type": "/Lotus/Types/Enemies/Orokin/OrokinBladeSawmanAvatar" + }, + { + "kills": 1076, + "executions": 117, + "headshots": 46, + "assists": 719, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Orokin/OrokinBladeSawmanAvatarLeader" + }, + { + "kills": 8510, + "executions": 395, + "headshots": 434, + "assists": 3018, + "deaths": 4, + "type": "/Lotus/Types/Enemies/Orokin/OrokinHealingAncientAvatar" + }, + { + "kills": 9526, + "executions": 1251, + "headshots": 416, + "assists": 5116, + "deaths": 38, + "type": "/Lotus/Types/Enemies/Orokin/OrokinHeavyFemaleAvatar" + }, + { + "kills": 49441, + "executions": 5630, + "headshots": 1761, + "assists": 13063, + "deaths": 63, + "type": "/Lotus/Types/Enemies/Orokin/RifleLancerAvatar" + }, + { + "kills": 583, + "executions": 47, + "headshots": 16, + "assists": 296, + "deaths": 4, + "type": "/Lotus/Types/Enemies/Orokin/OrokinMoaBipedLeaderAvatar" + }, + { + "kills": 37532, + "executions": 4282, + "headshots": 1734, + "assists": 7469, + "deaths": 192, + "type": "/Lotus/Types/Enemies/Orokin/RifleSpacemanAvatar" + }, + { + "kills": 2531, + "executions": 295, + "headshots": 99, + "assists": 1471, + "deaths": 11, + "type": "/Lotus/Types/Enemies/Orokin/RifleLancerLeaderAvatar" + }, + { + "kills": 1347, + "executions": 132, + "headshots": 80, + "assists": 529, + "deaths": 13, + "type": "/Lotus/Types/Enemies/Orokin/RifleSpacemanLeaderAvatar" + }, + { + "kills": 1829, + "executions": 112, + "headshots": 84, + "assists": 213, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/GraspingCrawlerAvatar" + }, + { + "kills": 7099, + "executions": 329, + "headshots": 377, + "assists": 1429, + "deaths": 6, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/LightningAvatar" + }, + { + "kills": 5874, + "executions": 464, + "assists": 2163, + "deaths": 47, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedDrones/PoisonDroneAvatar" + }, + { + "kills": 12444, + "executions": 1214, + "headshots": 344, + "assists": 630, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/RifleLancerAvatar" + }, + { + "kills": 930, + "executions": 95, + "headshots": 28, + "assists": 156, + "deaths": 10, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/GrineerMarinePistolAvatar" + }, + { + "kills": 7702, + "executions": 688, + "headshots": 245, + "assists": 889, + "deaths": 7, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/BladeSawmanAvatar" + }, + { + "kills": 1293, + "executions": 163, + "headshots": 83, + "assists": 301, + "deaths": 3, + "type": "/Lotus/Types/NeutralCreatures/Kubrow/KubrowAvatar" + }, + { + "kills": 278, + "executions": 53, + "type": "/Lotus/Types/Enemies/Grineer/SpecialEvents/ForestDroneAvatar" + }, + { + "kills": 129, + "executions": 21, + "headshots": 4, + "assists": 7, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionSniperAvatar" + }, + { + "kills": 113, + "executions": 15, + "headshots": 6, + "assists": 6, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionSniperDecoyAvatar" + }, + { + "kills": 111, + "executions": 16, + "headshots": 2, + "assists": 23, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionTankAvatar" + }, + { + "kills": 184, + "executions": 22, + "headshots": 3, + "assists": 13, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionGruntAvatar" + }, + { + "kills": 8591, + "executions": 561, + "headshots": 1038, + "assists": 5726, + "deaths": 37, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/CombatCatbrowAvatar" + }, + { + "kills": 18652, + "executions": 503, + "headshots": 709, + "assists": 9176, + "deaths": 24, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/HealingAncientAvatar" + }, + { + "kills": 10526, + "executions": 660, + "headshots": 373, + "assists": 6041, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/DiseasedAncientAvatar" + }, + { + "kills": 10295, + "executions": 529, + "headshots": 832, + "assists": 6830, + "deaths": 6, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/SpawningAncientAvatar" + }, + { + "kills": 9197, + "executions": 371, + "headshots": 395, + "assists": 4416, + "deaths": 133, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/ToxicAncientAvatar" + }, + { + "kills": 67308, + "executions": 1387, + "assists": 1914, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Quadrupeds/RusherAvatar" + }, + { + "kills": 14316, + "executions": 903, + "headshots": 326, + "assists": 7609, + "deaths": 131, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedMoas/SlowBombBipedAvatar" + }, + { + "kills": 117, + "executions": 21, + "headshots": 7, + "assists": 8, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionBeastmasterAvatar" + }, + { + "kills": 330, + "executions": 25, + "assists": 5, + "type": "/Lotus/Types/Enemies/GrineerChampions/ChampionDrones/EngineerRollingDroneTurretAvatar" + }, + { + "kills": 6, + "headshots": 1, + "type": "/Lotus/Types/Enemies/Grineer/GrineerAvatars/GrineerMarineMeleeAvatar" + }, + { + "kills": 2200, + "executions": 338, + "headshots": 60, + "assists": 541, + "deaths": 7, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/MineDroneAvatar" + }, + { + "kills": 484, + "executions": 73, + "headshots": 17, + "assists": 124, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/ShieldDroneAvatarLeader" + }, + { + "kills": 222, + "executions": 3, + "headshots": 2, + "assists": 3, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Corpus/QuadRobot/MiniBoss/ShieldDroneMiniBossAvatar" + }, + { + "kills": 127, + "assists": 2, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Corpus/QuadRobot/MiniBoss/TurretQuadMiniBossAvatar" + }, + { + "kills": 6061, + "executions": 95, + "headshots": 344, + "assists": 375, + "deaths": 93, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/NullifySpacemanAvatar" + }, + { + "kills": 138771, + "executions": 7831, + "headshots": 5116, + "assists": 35542, + "deaths": 211, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/EliteRifleLancerAvatar" + }, + { + "kills": 3701, + "executions": 135, + "assists": 461, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/RollingDroneAvatar" + }, + { + "kills": 506, + "executions": 18, + "headshots": 27, + "assists": 267, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Orokin/OrokinHealingAncientLeaderAvatar" + }, + { + "kills": 1210, + "executions": 211, + "headshots": 35, + "assists": 194, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/LeechDroneAvatar" + }, + { + "kills": 32, + "executions": 1, + "assists": 8, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Corpus/QuadRobot/MiniBoss/QuadRobotMiniBossAvatar" + }, + { + "kills": 2092, + "executions": 321, + "headshots": 63, + "assists": 442, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/CarrierSpacemanAvatar" + }, + { + "kills": 1082, + "executions": 113, + "headshots": 23, + "assists": 278, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/CarrierRifleLancerAvatar" + }, + { + "kills": 12973, + "executions": 1242, + "assists": 8090, + "deaths": 98, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedDrones/CellCarrierDroneAvatar" + }, + { + "kills": 13769, + "executions": 859, + "headshots": 355, + "assists": 7247, + "deaths": 4, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedMoas/NaniteCloudBipedAvatar" + }, + { + "kills": 67, + "executions": 3, + "headshots": 1, + "assists": 13, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/RifleLancerAvatarLeader" + }, + { + "kills": 585, + "executions": 54, + "headshots": 43, + "assists": 249, + "deaths": 11, + "type": "/Lotus/Types/Enemies/Grineer/Forest/HeavyFemaleGrineerAvatarDesert" + }, + { + "kills": 44284, + "executions": 3940, + "headshots": 1608, + "assists": 6082, + "deaths": 111, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/EliteSpacemanAvatar" + }, + { + "kills": 3142, + "executions": 409, + "headshots": 204, + "assists": 2011, + "deaths": 7, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/SuicideDroneAvatar" + }, + { + "kills": 3395, + "executions": 350, + "headshots": 146, + "assists": 1242, + "deaths": 22, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/RocketBombardAvatar" + }, + { + "kills": 13278, + "executions": 834, + "headshots": 1220, + "assists": 3474, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/CombatKubrowAvatar" + }, + { + "kills": 1620, + "executions": 207, + "headshots": 63, + "assists": 972, + "deaths": 10, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/EviseratorLancerAvatar" + }, + { + "kills": 442, + "executions": 75, + "headshots": 11, + "assists": 98, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/JetpackMarineAvatar" + }, + { + "kills": 5435, + "executions": 616, + "headshots": 171, + "assists": 1279, + "deaths": 66, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/DiscDroneAvatar" + }, + { + "kills": 5048, + "executions": 421, + "headshots": 220, + "assists": 1536, + "deaths": 134, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/DeployableSpacemanAvatar" + }, + { + "kills": 4055, + "executions": 339, + "headshots": 146, + "assists": 357, + "deaths": 5, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/SniperSpacemanAvatar" + }, + { + "kills": 69, + "executions": 17, + "headshots": 6, + "assists": 31, + "deaths": 5, + "type": "/Lotus/Types/Enemies/Grineer/Gamemodes/WardenGrineerHeavyAvatar" + }, + { + "kills": 2546, + "executions": 131, + "headshots": 110, + "assists": 2034, + "deaths": 30, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/CatMasterAvatar" + }, + { + "kills": 116, + "executions": 19, + "headshots": 6, + "assists": 42, + "deaths": 5, + "type": "/Lotus/Types/Enemies/Corpus/Gamemodes/DeployableSpacemanWardenAvatar" + }, + { + "kills": 42, + "assists": 2, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/GrineerMissilePlatAvatar" + }, + { + "kills": 2294, + "assists": 260, + "deaths": 2, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Drones/GrineerSpaceDroneAvatar" + }, + { + "kills": 1480, + "assists": 157, + "deaths": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Drones/LaserDroneAvatar" + }, + { + "kills": 2320, + "headshots": 8, + "assists": 424, + "deaths": 2, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Skiffs/GrineerSpaceMarineAvatar" + }, + { + "kills": 158, + "assists": 56, + "deaths": 14, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Skiffs/MissileShieldSkiffAvatar" + }, + { + "kills": 716, + "assists": 165, + "deaths": 39, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Skiffs/MissileSkiffAvatar" + }, + { + "kills": 1010, + "assists": 141, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Skiffs/ShieldSkiffAvatar" + }, + { + "kills": 738, + "executions": 119, + "headshots": 22, + "assists": 116, + "deaths": 7, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/BlowtorchSawmanAvatar" + }, + { + "kills": 417, + "executions": 55, + "headshots": 20, + "assists": 64, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/RailgunBipedAvatarLeader" + }, + { + "kills": 2595, + "assists": 298, + "deaths": 11, + "type": "/Lotus/Types/Enemies/Corpus/Turrets/TurretAvatars/AutoTurretAvatar" + }, + { + "kills": 1155, + "executions": 90, + "headshots": 36, + "assists": 685, + "deaths": 26, + "type": "/Lotus/Types/Enemies/Corpus/Drones/DroneAvatars/DroneAttackAvatar" + }, + { + "kills": 67, + "executions": 8, + "assists": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/CameraDroneAvatar" + }, + { + "kills": 3807, + "executions": 307, + "headshots": 112, + "assists": 1127, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/BeastMasterAvatar" + }, + { + "kills": 3892, + "executions": 394, + "headshots": 121, + "assists": 1071, + "deaths": 196, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/FlameLancerAvatar" + }, + { + "kills": 2686, + "executions": 264, + "headshots": 126, + "assists": 1112, + "deaths": 92, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/IncendiaryBombardAvatar" + }, + { + "kills": 5526, + "executions": 748, + "headshots": 248, + "assists": 2660, + "deaths": 28, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/EliteRifleLancerAvatarLeader" + }, + { + "kills": 4627, + "assists": 1338, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/CrpSpaceDroneAttackAvatar" + }, + { + "kills": 4764, + "assists": 658, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/CrewMan/JetpackMarineAvatar" + }, + { + "kills": 2900, + "assists": 712, + "deaths": 3, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/FlakShipAvatar" + }, + { + "kills": 3451, + "assists": 897, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/LaserShipAvatar" + }, + { + "kills": 89, + "assists": 32, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Corpus/Turrets/TurretAvatars/AutoTurretHeavyAvatar" + }, + { + "kills": 330, + "executions": 30, + "headshots": 20, + "assists": 167, + "deaths": 5, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/FemaleGrineerAvatarLeader" + }, + { + "kills": 1455, + "executions": 184, + "headshots": 54, + "assists": 804, + "deaths": 21, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/ShotgunLancerAvatarLeader" + }, + { + "kills": 147, + "executions": 7, + "headshots": 16, + "assists": 60, + "deaths": 7, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/ModularSpacemanAvatarSkatingLaser" + }, + { + "kills": 454, + "executions": 85, + "headshots": 7, + "assists": 154, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/SuperMoaBipedAvatarLeader" + }, + { + "kills": 550, + "executions": 68, + "headshots": 29, + "assists": 355, + "deaths": 11, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/HeavyFemaleGrineerAvatarLeader" + }, + { + "kills": 462, + "executions": 37, + "headshots": 28, + "assists": 449, + "deaths": 8, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/MacheteWomanAvatarLeader" + }, + { + "kills": 141, + "executions": 23, + "headshots": 16, + "assists": 46, + "deaths": 6, + "type": "/Lotus/Types/Enemies/Corpus/Gamemodes/DeployableSpacemanWardenAvatarLeader" + }, + { + "kills": 642, + "executions": 117, + "headshots": 15, + "assists": 114, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/ShockwaveBipedAvatarLeader" + }, + { + "kills": 18, + "assists": 26, + "deaths": 15, + "type": "/Lotus/Types/Enemies/Corpus/QuadRobot/QuadRobotAvatar" + }, + { + "kills": 10, + "executions": 2, + "assists": 1, + "type": "/Lotus/Types/Enemies/Grineer/GrineerAvatars/GrineerMarineShieldAvatar" + }, + { + "kills": 101, + "executions": 12, + "headshots": 9, + "assists": 45, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/MineDroneAvatarLeader" + }, + { + "kills": 56, + "executions": 10, + "assists": 5, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/CameraDroneAvatarLeader" + }, + { + "kills": 3202, + "executions": 163, + "headshots": 105, + "assists": 692, + "deaths": 14, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/LaserDiscBipedAvatar" + }, + { + "kills": 195, + "executions": 20, + "headshots": 11, + "assists": 67, + "deaths": 7, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/DiscDroneAvatarLeader" + }, + { + "kills": 824, + "executions": 57, + "headshots": 29, + "assists": 186, + "deaths": 11, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/VacDroneAvatar" + }, + { + "kills": 6, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/SpawningAncientAvatarMiniboss" + }, + { + "kills": 7093, + "executions": 277, + "headshots": 398, + "assists": 5380, + "deaths": 29, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/EliteRifleLancerAvatar" + }, + { + "kills": 884, + "executions": 40, + "headshots": 33, + "assists": 381, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/JetpackMarineAvatar" + }, + { + "kills": 535, + "executions": 33, + "headshots": 21, + "assists": 263, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/EvisceratorLancerAvatar" + }, + { + "kills": 1784, + "executions": 399, + "headshots": 65, + "assists": 401, + "deaths": 16, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/EliteSpacemanAvatarLeader" + }, + { + "kills": 72, + "executions": 7, + "headshots": 3, + "assists": 25, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/ModularSpacemanAvatarWalkingDetector" + }, + { + "kills": 3440, + "executions": 89, + "headshots": 126, + "assists": 946, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/GrineerMeleeStaffAvatar" + }, + { + "kills": 330, + "executions": 28, + "headshots": 19, + "assists": 149, + "deaths": 22, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/FlameLancerAvatarLeader" + }, + { + "kills": 2484, + "assists": 12, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Drones/SwarmDroneAvatar" + }, + { + "kills": 1980, + "assists": 539, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/SwarmShipAvatar" + }, + { + "kills": 160, + "executions": 23, + "headshots": 10, + "assists": 142, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/EviseratorLancerAvatarLeader" + }, + { + "kills": 375, + "executions": 48, + "headshots": 18, + "assists": 153, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/GrineerAvatars/GrineerMarinePistolAvatarLeader" + }, + { + "kills": 59, + "executions": 7, + "headshots": 1, + "assists": 21, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/ShotgunLancerAvatarLeader" + }, + { + "kills": 12, + "executions": 3, + "assists": 5, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/GrineerMarinePistolAvatarLeader" + }, + { + "kills": 533, + "executions": 37, + "assists": 179, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/RollingDroneAvatarLeader" + }, + { + "kills": 300, + "executions": 25, + "headshots": 10, + "assists": 136, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/PistonSawmanAvatarLeader" + }, + { + "kills": 265, + "assists": 30, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Drones/StasisDroneAvatar" + }, + { + "kills": 65, + "headshots": 4, + "assists": 45, + "deaths": 8, + "type": "/Lotus/Types/Enemies/Infested/Vip/Avatars/QuadrupedVIPAvatar" + }, + { + "kills": 4, + "headshots": 1, + "type": "/Lotus/Types/Enemies/CaptureTargets/CaptureTargetGrineerRollerAvatar" + }, + { + "kills": 456, + "assists": 16, + "deaths": 5, + "type": "/Lotus/Types/Enemies/Orokin/OrokinAutoTurretAvatar" + }, + { + "kills": 73, + "executions": 1, + "headshots": 5, + "assists": 23, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/NoxiousCrawlerAvatarLeader" + }, + { + "kills": 113, + "executions": 6, + "headshots": 5, + "assists": 28, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/ModularSpacemanAvatarWalkingTesla" + }, + { + "kills": 342, + "executions": 69, + "headshots": 11, + "assists": 130, + "deaths": 16, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/DeployableSpacemanAvatarLeader" + }, + { + "kills": 287, + "executions": 19, + "headshots": 13, + "assists": 37, + "deaths": 26, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/NullifySpacemanAvatarLeader" + }, + { + "kills": 165, + "executions": 31, + "headshots": 9, + "assists": 128, + "deaths": 9, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/IncendiaryBombardAvatarLeader" + }, + { + "kills": 136, + "executions": 14, + "headshots": 11, + "assists": 48, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/BladeSawmanAvatarLeader" + }, + { + "kills": 866, + "executions": 136, + "headshots": 40, + "assists": 299, + "deaths": 8, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/ShotgunSpacemanAvatarLeader" + }, + { + "kills": 123, + "executions": 7, + "headshots": 9, + "assists": 54, + "deaths": 7, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/ModularSpacemanAvatarSkatingShield" + }, + { + "kills": 165, + "executions": 11, + "headshots": 14, + "assists": 69, + "deaths": 7, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/ModularSpacemanAvatarSkatingTesla" + }, + { + "kills": 222, + "executions": 41, + "assists": 14, + "type": "/Lotus/Types/Enemies/Grineer/SpecialEvents/SurveillanceDroneAvatar" + }, + { + "kills": 3772, + "executions": 27, + "headshots": 211, + "assists": 304, + "deaths": 34, + "type": "/Lotus/Types/Enemies/Orokin/OrokinNullifySpacemanAvatar" + }, + { + "kills": 4131, + "executions": 436, + "headshots": 168, + "assists": 2243, + "deaths": 34, + "type": "/Lotus/Types/Enemies/Orokin/OrokinRocketBombardAvatar" + }, + { + "kills": 73, + "executions": 7, + "headshots": 3, + "assists": 17, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/ModularSpacemanAvatarWalkingLaser" + }, + { + "kills": 687, + "executions": 22, + "headshots": 54, + "assists": 481, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/SpawningAncientAvatarLeader" + }, + { + "kills": 91, + "executions": 1, + "headshots": 6, + "assists": 34, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/LightningAvatarLeader" + }, + { + "kills": 599, + "executions": 36, + "headshots": 22, + "assists": 357, + "deaths": 18, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/ToxicAncientAvatarLeader" + }, + { + "kills": 1340, + "executions": 201, + "headshots": 64, + "assists": 270, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/JetpackMarineAvatar" + }, + { + "kills": 285, + "executions": 7, + "headshots": 5, + "assists": 84, + "deaths": 25, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/RiotBipedDispersionAvatar" + }, + { + "kills": 316, + "executions": 9, + "headshots": 12, + "assists": 115, + "deaths": 5, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/RiotBipedPreventionAvatar" + }, + { + "kills": 4723, + "executions": 272, + "headshots": 297, + "assists": 2871, + "deaths": 26, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/EliteRifleLancerAvatar" + }, + { + "kills": 183, + "executions": 2, + "headshots": 7, + "assists": 52, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/EvisceratorLancerAvatar" + }, + { + "kills": 68, + "executions": 7, + "headshots": 5, + "assists": 7, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/LeechDroneAvatarLeader" + }, + { + "kills": 1685, + "assists": 242, + "deaths": 6, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/CrewMan/JetpackMarineTwoAvatar" + }, + { + "kills": 225, + "assists": 28, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/CrewMan/JetpackMarineThreeAvatar" + }, + { + "kills": 67, + "assists": 33, + "deaths": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/CrpPodAvatar" + }, + { + "kills": 1761, + "executions": 29, + "headshots": 89, + "assists": 1127, + "deaths": 24, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/HealingAncientAvatarLeader" + }, + { + "kills": 179, + "executions": 18, + "assists": 76, + "type": "/Lotus/Types/Enemies/Orokin/OrokinShieldDroneLeaderAvatar" + }, + { + "kills": 4848, + "executions": 420, + "headshots": 110, + "assists": 533, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/RifleLancerAvatar" + }, + { + "kills": 843, + "executions": 190, + "headshots": 30, + "assists": 131, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/GrineerMarinePistolAvatar" + }, + { + "kills": 10563, + "executions": 1762, + "headshots": 438, + "assists": 3518, + "deaths": 6, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/EliteRifleLancerAvatar" + }, + { + "kills": 3871, + "executions": 443, + "headshots": 105, + "assists": 403, + "deaths": 4, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/BladeSawmanAvatar" + }, + { + "kills": 195, + "executions": 60, + "headshots": 4, + "assists": 43, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/BladeSawmanAvatarLeader" + }, + { + "kills": 736, + "executions": 264, + "headshots": 19, + "assists": 175, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/EliteRifleLancerAvatarLeader" + }, + { + "kills": 3874, + "executions": 540, + "headshots": 143, + "assists": 942, + "deaths": 9, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/ShotgunLancerAvatar" + }, + { + "kills": 206, + "executions": 71, + "headshots": 6, + "assists": 35, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/ShotgunLancerAvatarLeader" + }, + { + "kills": 834, + "executions": 184, + "headshots": 27, + "assists": 112, + "deaths": 6, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/EvisceratorLancerAvatar" + }, + { + "kills": 1109, + "executions": 226, + "headshots": 50, + "assists": 264, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/FemaleGrineerHeavyAvatar" + }, + { + "kills": 1454, + "executions": 197, + "headshots": 57, + "assists": 463, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/FemaleGrineerMacheteAvatar" + }, + { + "kills": 607, + "executions": 115, + "headshots": 26, + "assists": 87, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/FemaleGrineerSniperAvatar" + }, + { + "kills": 296, + "executions": 9, + "headshots": 8, + "assists": 77, + "deaths": 37, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/RiotBipedControlAvatar" + }, + { + "kills": 73, + "executions": 21, + "headshots": 2, + "assists": 10, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/FemaleGrineerMacheteAvatarLeader" + }, + { + "kills": 54, + "executions": 2, + "headshots": 1, + "assists": 6, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/RifleLancerAvatarLeader" + }, + { + "kills": 9, + "assists": 14, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/DeathSquad/Avatars/DeathSquadAvatarB" + }, + { + "kills": 36, + "executions": 6, + "headshots": 2, + "assists": 1, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/GrineerMarinePistolAvatarLeader" + }, + { + "kills": 13, + "headshots": 3, + "assists": 11, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/DeathSquad/Avatars/DeathSquadAvatarA" + }, + { + "kills": 763, + "executions": 123, + "assists": 399, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/KelaRollingDroneAvatar" + }, + { + "kills": 147, + "executions": 4, + "assists": 11, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/RollingDroneTurretAvatar" + }, + { + "kills": 315, + "executions": 11, + "headshots": 27, + "assists": 314, + "deaths": 9, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/EliteRifleLancerAvatarLeader" + }, + { + "kills": 80, + "executions": 9, + "headshots": 3, + "assists": 19, + "type": "/Lotus/Types/NeutralCreatures/CreatureAvatars/SandRayAvatar" + }, + { + "kills": 15, + "executions": 1, + "assists": 38, + "deaths": 176, + "type": "/Lotus/Types/Enemies/Grineer/Vip/KelaDeThaym/KelaDeThaymAvatar" + }, + { + "kills": 54, + "executions": 3, + "headshots": 3, + "assists": 30, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/GrineerMeleeStaffAvatarLeader" + }, + { + "kills": 72, + "executions": 1, + "headshots": 9, + "assists": 20, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/CrawlerAvatarLeader" + }, + { + "kills": 529, + "executions": 47, + "headshots": 9, + "assists": 84, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/JetpackMarineCarrierAvatar" + }, + { + "kills": 282, + "headshots": 11, + "assists": 283, + "deaths": 4, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/ManicGrineerAvatar" + }, + { + "kills": 257, + "executions": 54, + "headshots": 14, + "assists": 60, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/JetpackMarineAvatar" + }, + { + "kills": 65, + "assists": 1, + "type": "/Lotus/Types/Enemies/Water/Grineer/Avatars/EelLancerAvatar" + }, + { + "kills": 444, + "headshots": 17, + "assists": 28, + "type": "/Lotus/Types/Enemies/Water/Grineer/Avatars/FrogLancerAvatar" + }, + { + "kills": 67, + "headshots": 2, + "assists": 4, + "type": "/Lotus/Types/Enemies/Water/Grineer/Avatars/SquidLancerAvatar" + }, + { + "kills": 65, + "type": "/Lotus/Types/Enemies/Water/Grineer/Avatars/WaterMineDroneAvatar" + }, + { + "kills": 764, + "executions": 6, + "headshots": 14, + "assists": 806, + "deaths": 43, + "type": "/Lotus/Types/Enemies/Sentients/Troopers/SentientTrooperAvatar" + }, + { + "kills": 585, + "headshots": 19, + "assists": 748, + "deaths": 6, + "type": "/Lotus/Types/Enemies/Sentients/Troopers/SentientMeleeTrooperAvatar" + }, + { + "kills": 493, + "executions": 55, + "headshots": 25, + "assists": 397, + "deaths": 6, + "type": "/Lotus/Types/Enemies/Orokin/OrokinHeavyFemaleLeaderAvatar" + }, + { + "kills": 255, + "executions": 1, + "headshots": 17, + "assists": 51, + "deaths": 5, + "type": "/Lotus/Types/Enemies/Orokin/OrokinNullifySpacemanAvatarLeader" + }, + { + "kills": 305, + "executions": 28, + "headshots": 9, + "assists": 192, + "deaths": 7, + "type": "/Lotus/Types/Enemies/Orokin/OrokinRocketBombardAvatarLeader" + }, + { + "kills": 451, + "executions": 26, + "headshots": 18, + "assists": 148, + "type": "/Lotus/Types/NeutralCreatures/Catbrow/CatbrowAvatar" + }, + { + "kills": 13, + "assists": 8, + "deaths": 7, + "type": "/Lotus/Types/Enemies/Infested/Vip/Avatars/GolemFullAvatar" + }, + { + "kills": 146, + "executions": 13, + "headshots": 3, + "assists": 38, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/SniperSpacemanAvatarLeader" + }, + { + "kills": 11, + "assists": 18, + "deaths": 5, + "type": "/Lotus/Types/Enemies/Corpus/AladVPet/AladVPetAvatar" + }, + { + "kills": 63, + "executions": 5, + "headshots": 4, + "assists": 42, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/ShotgunLancerAvatarLeader" + }, + { + "kills": 123, + "assists": 58, + "deaths": 11, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Pods/CombatPodAvatar" + }, + { + "kills": 355, + "executions": 52, + "headshots": 26, + "assists": 168, + "deaths": 4, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/RocketBombardAvatarLeader" + }, + { + "kills": 4, + "type": "/Lotus/Types/Friendly/Agents/HiveMode/InfestedHiveAvatarF" + }, + { + "kills": 4, + "type": "/Lotus/Types/Friendly/Agents/HiveMode/InfestedHiveAvatarD" + }, + { + "kills": 4, + "type": "/Lotus/Types/Friendly/Agents/HiveMode/InfestedHiveAvatarE" + }, + { + "kills": 54, + "headshots": 12, + "assists": 11, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/JetpackMeleeAvatar" + }, + { + "kills": 115, + "executions": 36, + "headshots": 4, + "assists": 44, + "deaths": 12, + "type": "/Lotus/Types/Enemies/Grineer/Gamemodes/WardenGrineerHeavyAvatarLeader" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/TennoReplicantGunslingerAvatar" + }, + { + "kills": 49, + "headshots": 13, + "assists": 20, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/JetpackSniperAvatar" + }, + { + "kills": 24, + "assists": 7, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/BladeSawmanAvatarLeader" + }, + { + "kills": 27, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/CameraDroneAvatarOrokin" + }, + { + "kills": 69, + "assists": 9, + "type": "/Lotus/Types/Enemies/Orokin/OrokinRollingDroneAvatar" + }, + { + "kills": 4, + "headshots": 1, + "assists": 2, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Orokin/Gamemodes/CorruptedWardenAvatar" + }, + { + "kills": 6, + "executions": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Orokin/Gamemodes/CorruptedWardenAvatarLeader" + }, + { + "kills": 162, + "executions": 28, + "headshots": 1, + "assists": 8, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionEngineerAvatar" + }, + { + "kills": 36, + "executions": 8, + "assists": 6, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionJetpackAvatar" + }, + { + "kills": 318, + "executions": 10, + "headshots": 14, + "assists": 126, + "deaths": 4, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/LaserDiscBipedAvatarLeader" + }, + { + "kills": 127, + "executions": 21, + "headshots": 4, + "assists": 28, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/VacDroneAvatarLeader" + }, + { + "kills": 67, + "headshots": 1, + "assists": 60, + "deaths": 11, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Hyena/HyenaFireAvatar" + }, + { + "kills": 25, + "assists": 21, + "type": "/Lotus/Types/Enemies/Grineer/Vip/VorTwo/VorTwoBossAvatar" + }, + { + "kills": 9, + "assists": 15, + "type": "/Lotus/Types/Enemies/Corpus/Vip/AladV/AladBossAvatar" + }, + { + "kills": 707, + "executions": 34, + "headshots": 23, + "assists": 471, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/DiseasedAncientAvatarLeader" + }, + { + "kills": 107, + "type": "/Stalker" + }, + { + "kills": 669, + "executions": 43, + "headshots": 25, + "assists": 486, + "deaths": 14, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedMoas/SlowBombBipedAvatarLeader" + }, + { + "kills": 718, + "executions": 45, + "headshots": 16, + "assists": 442, + "deaths": 8, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedMoas/NaniteCloudBipedAvatarLeader" + }, + { + "kills": 113, + "executions": 10, + "headshots": 7, + "assists": 43, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/ModularSpacemanAvatarWalkingShield" + }, + { + "kills": 75, + "executions": 15, + "headshots": 6, + "assists": 21, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/FemaleGrineerHeavyAvatarLeader" + }, + { + "kills": 6, + "executions": 2, + "assists": 4, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/ManicRocketBombardAvatar" + }, + { + "kills": 29, + "assists": 4, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/BipedRobotAvatar" + }, + { + "kills": 13, + "assists": 7, + "type": "/Lotus/Types/Enemies/Infested/Vip/Avatars/GolemGunHeadAvatar" + }, + { + "kills": 90, + "headshots": 2, + "assists": 65, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/SeaLabManicGrineerAvatar" + }, + { + "kills": 55, + "executions": 1, + "assists": 81, + "deaths": 41, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Quadrupeds/JuggernautAvatar" + }, + { + "kills": 13, + "assists": 3, + "type": "/Lotus/Types/Friendly/Agents/HiveMode/InfestedHiveAvatarA" + }, + { + "kills": 9, + "assists": 1, + "type": "/Lotus/Types/Friendly/Agents/HiveMode/InfestedHiveAvatarB" + }, + { + "kills": 8, + "assists": 4, + "type": "/Lotus/Types/Friendly/Agents/HiveMode/InfestedHiveAvatarC" + }, + { + "kills": 17, + "assists": 7, + "type": "/Lotus/Types/Enemies/Grineer/Vip/Hek/PropDrones/PropDroneAvatar" + }, + { + "kills": 11, + "assists": 6, + "type": "/Lotus/Types/Enemies/Grineer/Vip/Hek/PropDrones/StrikeDroneAvatar" + }, + { + "kills": 146, + "executions": 9, + "headshots": 7, + "assists": 67, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/ModularSpacemanAvatarSkatingDetector" + }, + { + "kills": 273, + "assists": 26, + "deaths": 4, + "type": "/Lotus/Types/Enemies/SpaceBattles/Infested/InfestedAttackDroneAvatar" + }, + { + "kills": 74, + "assists": 16, + "deaths": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Infested/CarrierLightningSpaceDroneAvatar" + }, + { + "kills": 16, + "assists": 5, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Quadrupeds/JuggernautAvatarBoss" + }, + { + "kills": 9, + "assists": 7, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Corpus/Vip/InfestedAladV/InfestedAladBossAvatar" + }, + { + "kills": 30, + "assists": 33, + "deaths": 19, + "type": "/Lotus/Types/Enemies/Grineer/Vip/Avatars/BossLechKrilAvatar" + }, + { + "kills": 31, + "type": "/Lotus/Powersuits/Brawler/SummonAvatarHostile" + }, + { + "kills": 4, + "type": "/Lotus/Types/Enemies/Quests/SandmanBoss/InarosGolemAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Quests/SandmanBoss/SandmanBossAvatar" + }, + { + "kills": 32, + "assists": 23, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Hyena/HyenaElecAvatar" + }, + { + "kills": 77, + "executions": 1, + "assists": 40, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Hyena/HyenaIceAvatar" + }, + { + "kills": 22, + "headshots": 1, + "assists": 16, + "deaths": 9, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Hyena/HyenaGunAvatar" + }, + { + "kills": 10, + "executions": 1, + "headshots": 1, + "assists": 8, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/GrineerMarinePistolAvatarLeader" + }, + { + "kills": 13, + "executions": 1, + "headshots": 1, + "assists": 17, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/DeathSquad/Avatars/DeathSquadAvatarC" + }, + { + "kills": 90, + "assists": 10, + "type": "/Lotus/Types/Enemies/SpaceBattles/Infested/CarrierSpaceDroneAvatar" + }, + { + "kills": 15, + "headshots": 1, + "assists": 10, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/Vip/BossBipedAvatar" + }, + { + "kills": 2, + "assists": 5, + "deaths": 8, + "type": "/Lotus/Types/Enemies/Corpus/Drones/Vip/DroneAttackAvatar" + }, + { + "kills": 180, + "executions": 3, + "headshots": 20, + "assists": 160, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/EliteRifleLancerAvatarLeader" + }, + { + "kills": 25, + "executions": 1, + "headshots": 4, + "assists": 11, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/Vip/SniperBossAvatar" + }, + { + "kills": 49, + "executions": 6, + "headshots": 4, + "assists": 23, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/Forest/HeavyFemaleGrineerAvatarDesertLeader" + }, + { + "kills": 9, + "assists": 6, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/AladVPet/ZanukaHunterAvatar" + }, + { + "kills": 4, + "assists": 2, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantFrostAvatar" + }, + { + "kills": 2, + "assists": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantVoltAvatar" + }, + { + "kills": 3, + "assists": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantRhinoAvatar" + }, + { + "kills": 42, + "assists": 17, + "deaths": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Skiffs/GrineerSpaceMarineAvatarLeader" + }, + { + "kills": 57, + "assists": 20, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/CrpSpaceDroneAttackAvatarLeader" + }, + { + "kills": 46, + "assists": 21, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/LaserShipAvatarLeader" + }, + { + "kills": 55, + "assists": 13, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/CrewMan/JetpackMarineAvatarLeader" + }, + { + "kills": 43, + "assists": 14, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Drones/GrineerSpaceDroneAvatarLeader" + }, + { + "kills": 28, + "assists": 10, + "deaths": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Skiffs/MissileSkiffAvatarLeader" + }, + { + "kills": 38, + "assists": 10, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Drones/LaserDroneAvatarLeader" + }, + { + "kills": 20, + "assists": 7, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Skiffs/ShieldSkiffAvatarLeader" + }, + { + "kills": 15, + "assists": 6, + "deaths": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Skiffs/MissileShieldSkiffAvatarLeader" + }, + { + "kills": 59, + "assists": 9, + "deaths": 3, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/CrewMan/JetpackMarineTwoAvatarLeader" + }, + { + "kills": 10, + "headshots": 1, + "assists": 2, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/GraspingCrawlerAvatarLeader" + }, + { + "kills": 30, + "executions": 3, + "assists": 23, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/DeltaProsecutorAvatarLeader" + }, + { + "kills": 65, + "assists": 18, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/CrewMan/JetpackMarineThreeAvatarLeader" + }, + { + "kills": 27, + "assists": 12, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/FlakShipAvatarLeader" + }, + { + "kills": 12, + "assists": 8, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Infested/Vip/Avatars/GolemGrenadeHeadAvatar" + }, + { + "kills": 13, + "assists": 5, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Infested/Vip/Avatars/GolemMeleeHeadAvatar" + }, + { + "kills": 15, + "headshots": 15, + "assists": 3, + "deaths": 7, + "type": "/Lotus/Types/Enemies/Infested/Vip/J3Golem/JuniorGolemSpaceAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantYinYangAvatar" + }, + { + "kills": 9, + "assists": 21, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Vip/TylRegor/TylRegorAvatar" + }, + { + "kills": 20, + "executions": 1, + "assists": 14, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/SeaLabManicBombardAvatar" + }, + { + "kills": 3, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantLokiAvatar" + }, + { + "kills": 1, + "assists": 3, + "deaths": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantExcaliburAvatar" + }, + { + "kills": 1, + "assists": 2, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantBerserkerAvatar" + }, + { + "kills": 4, + "executions": 1, + "assists": 3, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantEmberAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantNovaAvatar" + }, + { + "kills": 1, + "assists": 32, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/Vip/Hek/HekBipedAvatar" + }, + { + "kills": 9, + "assists": 22, + "deaths": 13, + "type": "/Lotus/Types/Enemies/Grineer/Vip/SargasRuk/Avatars/SargasRukAvatarNew" + }, + { + "kills": 5, + "assists": 11, + "type": "/Lotus/Types/Enemies/Corpus/SpecialEvents/ArtificerSuicideDroneAvatar" + }, + { + "kills": 64, + "executions": 12, + "assists": 8, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionHeavyAvatar" + }, + { + "kills": 2, + "type": "/Lotus/Types/Enemies/GrineerChampions/ChampionDrones/ChampionHealerDroneAvatar" + }, + { + "kills": 29, + "executions": 2, + "headshots": 2, + "assists": 22, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/EvisceratorLancerAvatarLeader" + }, + { + "kills": 1, + "type": "/Lotus/Types/Friendly/Agents/DefenseComputerCorpusAvatar" + }, + { + "kills": 10, + "executions": 4, + "assists": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/FairyQuest/FairyQuestLokiAvatar" + }, + { + "kills": 28, + "executions": 24, + "type": "/Lotus/Types/Enemies/TennoReplicants/FairyQuest/KnaveLokiDecoyAvatar" + }, + { + "kills": 5, + "executions": 2, + "assists": 1, + "deaths": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/FairyQuest/FairyQuestSarynAvatar" + }, + { + "kills": 1, + "executions": 1, + "type": "/Lotus/Types/Friendly/Rescue/DefenseAvatarMale" + }, + { + "kills": 2, + "executions": 2, + "type": "/Lotus/Powersuits/Fairy/FlightAvatar" + }, + { + "kills": 6, + "executions": 2, + "assists": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/FairyQuest/FairyQuestPaladinAvatar" + }, + { + "kills": 3, + "headshots": 1, + "type": "/Lotus/Types/Enemies/CaptureTargets/CaptureTargetGrineerMercuryAvatar" + }, + { + "kills": 11, + "executions": 1, + "assists": 16, + "type": "/Lotus/Types/Enemies/Corpus/Drones/Vip/RaptorTwoCarrierAvatar" + }, + { + "kills": 17, + "executions": 1, + "assists": 11, + "deaths": 7, + "type": "/Lotus/Types/Enemies/Corpus/Drones/Vip/RaptorTwoLaserAvatar" + }, + { + "kills": 18, + "assists": 16, + "deaths": 21, + "type": "/Lotus/Types/Enemies/Corpus/Drones/Vip/RaptorTwoMortarAvatar" + }, + { + "kills": 74, + "executions": 7, + "assists": 8, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Drones/Vip/RaptorTwoSwarmDroneAvatar" + }, + { + "kills": 3, + "executions": 1, + "headshots": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantSarynAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantGunslingerAvatarRelayBoss" + }, + { + "kills": 2, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantMagAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantTrinityAvatar" + }, + { + "kills": 1, + "deaths": 3, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Turrets/GrineerPursuitMissileTurretAvatar" + }, + { + "kills": 38, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/CameraDroneAvatarOrokinLeader" + }, + { + "kills": 46, + "executions": 16, + "headshots": 5, + "assists": 8, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/EvisceratorLancerAvatarLeader" + }, + { + "kills": 24, + "executions": 7, + "assists": 1, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/FemaleGrineerSniperAvatarLeader" + }, + { + "kills": 1, + "executions": 1, + "assists": 2, + "type": "/Lotus/Types/Friendly/Agents/ExcavatorAvatar" + }, + { + "kills": 151, + "executions": 56, + "headshots": 2, + "assists": 45, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/NightWatchShieldLancerAvatar" + }, + { + "kills": 126, + "executions": 37, + "headshots": 2, + "assists": 70, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/NightwatchCatMasterAvatar" + }, + { + "kills": 426, + "executions": 141, + "headshots": 6, + "assists": 113, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/NightwatchPowerfistAvatar" + }, + { + "kills": 95, + "executions": 44, + "headshots": 3, + "assists": 40, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/NightwatchHeavyGunnerAvatar" + }, + { + "kills": 774, + "executions": 248, + "headshots": 10, + "assists": 272, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/NightwatchRifleLancerAvatar" + }, + { + "kills": 168, + "executions": 62, + "headshots": 5, + "assists": 102, + "deaths": 4, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/NightwatchManicAvatar" + }, + { + "kills": 16, + "executions": 6, + "assists": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/NightwatchPowerfistAvatarLeader" + }, + { + "kills": 157, + "executions": 34, + "headshots": 4, + "assists": 71, + "deaths": 8, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/JetpackHeavyMarineAvatar" + }, + { + "kills": 8, + "executions": 4, + "assists": 6, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/JetpackHeavyMarineAvatarLeader" + }, + { + "kills": 93, + "executions": 27, + "headshots": 1, + "assists": 23, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/NightwatchFlamebladeAvatar" + }, + { + "kills": 203, + "executions": 55, + "headshots": 9, + "assists": 105, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/NightwatchGrineerChargerAvatar" + }, + { + "kills": 50, + "executions": 18, + "assists": 17, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/NightwatchGrineerMarinePistolAvatar" + }, + { + "kills": 7, + "executions": 5, + "assists": 1, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/NightWatchShieldLancerAvatarLeader" + }, + { + "kills": 2, + "type": "/Lotus/Types/Enemies/CaptureTargets/CaptureTargetGrineerBeastMasterAvatar" + }, + { + "kills": 170, + "executions": 20, + "headshots": 5, + "assists": 63, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamA/CCTeamARifleAvatar" + }, + { + "kills": 174, + "executions": 27, + "headshots": 7, + "assists": 51, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamA/CCTeamASkateAvatar" + }, + { + "kills": 176, + "executions": 13, + "headshots": 9, + "assists": 70, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamA/CCTeamASkateBAvatar" + }, + { + "kills": 154, + "executions": 3, + "headshots": 4, + "assists": 77, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamA/CCTeamAZanukaAvatar" + }, + { + "kills": 216, + "executions": 17, + "assists": 103, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamA/HeavySuicideDroneAvatar" + }, + { + "kills": 117, + "executions": 11, + "headshots": 3, + "assists": 53, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamB/CCTeamBDisruptorAvatar" + }, + { + "kills": 126, + "executions": 2, + "headshots": 14, + "assists": 62, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamB/CCTeamBHyenaAvatar" + }, + { + "kills": 100, + "assists": 76, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamB/CCTeamBOspreyAvatar" + }, + { + "kills": 128, + "headshots": 14, + "assists": 59, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamB/CCTeamBRiotMoaAvatar" + }, + { + "kills": 143, + "executions": 11, + "headshots": 11, + "assists": 64, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamC/CCTeamCDeceptionAvatar" + }, + { + "kills": 153, + "executions": 7, + "headshots": 22, + "assists": 61, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamC/CCTeamCMoaAvatar" + }, + { + "kills": 133, + "executions": 5, + "headshots": 4, + "assists": 71, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamC/CCTeamCSimplifiedHackerAvatar" + }, + { + "kills": 139, + "executions": 10, + "headshots": 8, + "assists": 72, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamC/CCTeamCStealthAvatar" + }, + { + "kills": 55, + "assists": 14, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamA/CCTeamASentinelAvatar" + }, + { + "kills": 59, + "headshots": 1, + "deaths": 334, + "type": "/Lotus/Types/Player/TennoAvatar" + }, + { + "kills": 223, + "headshots": 4, + "assists": 172, + "deaths": 9, + "type": "/Lotus/Types/Enemies/Grineer/Vip/GrineerRoyalGuard/GrineerRoyalGuardAvatar" + }, + { + "kills": 4913, + "executions": 11, + "headshots": 222, + "assists": 1120, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressBladeSawmanAvatar" + }, + { + "kills": 14050, + "executions": 211, + "headshots": 544, + "assists": 5231, + "deaths": 38, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressEliteRifleLancerAvatar" + }, + { + "kills": 519, + "executions": 12, + "headshots": 24, + "assists": 246, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressFlameLancerAvatar" + }, + { + "kills": 437, + "executions": 31, + "headshots": 35, + "assists": 218, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressMacheteWomanAvatar" + }, + { + "kills": 741, + "executions": 41, + "headshots": 43, + "assists": 224, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressPistonSawmanAvatar" + }, + { + "kills": 13769, + "executions": 200, + "headshots": 527, + "assists": 5452, + "deaths": 17, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressRifleLancerAvatar" + }, + { + "kills": 3729, + "executions": 60, + "headshots": 144, + "assists": 1651, + "deaths": 16, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressShotgunLancerAvatar" + }, + { + "kills": 468, + "executions": 7, + "headshots": 40, + "assists": 389, + "type": "/Lotus/Types/Enemies/Grineer/Vip/RoyalJester/RoyalJesterAvatar" + }, + { + "kills": 79, + "headshots": 3, + "assists": 19, + "type": "/Lotus/Types/Enemies/Grineer/GrineerAutoTurretStaticAvatar" + }, + { + "kills": 192, + "executions": 10, + "headshots": 10, + "assists": 208, + "deaths": 15, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressCatMasterAvatar" + }, + { + "kills": 1306, + "executions": 50, + "headshots": 43, + "assists": 716, + "deaths": 4, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressHeavyFemaleGrineerAvatar" + }, + { + "kills": 47, + "assists": 18, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/GrineerAutoFlameTurretAvatar" + }, + { + "kills": 468, + "executions": 7, + "headshots": 7, + "assists": 192, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressBeastMasterAvatar" + }, + { + "kills": 1666, + "executions": 21, + "headshots": 185, + "assists": 511, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressCombatKubrowAvatar" + }, + { + "kills": 33, + "executions": 5, + "assists": 16, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressEviseratorLancerAvatar" + }, + { + "kills": 910, + "executions": 18, + "headshots": 42, + "assists": 379, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressFemaleGrineerAvatar" + }, + { + "kills": 13, + "executions": 4, + "headshots": 1, + "assists": 3, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressGrineerChargerAvatar" + }, + { + "kills": 1016, + "executions": 7, + "headshots": 31, + "assists": 430, + "deaths": 7, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressGrineerMarinePistolAvatar" + }, + { + "kills": 545, + "executions": 5, + "headshots": 34, + "assists": 264, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressJetpackMarineAvatar" + }, + { + "kills": 510, + "executions": 28, + "headshots": 25, + "assists": 269, + "deaths": 4, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressRocketBombardAvatar" + }, + { + "kills": 16, + "executions": 1, + "assists": 7, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressSkiffAvatar" + }, + { + "kills": 79, + "headshots": 1, + "assists": 25, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/GrineerAutoTurretAvatar" + }, + { + "kills": 54, + "headshots": 1, + "assists": 14, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressBlowtorchSawmanAvatar" + }, + { + "kills": 508, + "executions": 6, + "assists": 129, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressRollingDroneAvatar" + }, + { + "kills": 2223, + "executions": 12, + "headshots": 74, + "assists": 585, + "deaths": 13, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressShieldLancerAvatar" + }, + { + "kills": 52, + "assists": 31, + "deaths": 6, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/GrineerAutoRocketTurretAvatar" + }, + { + "kills": 507, + "executions": 6, + "headshots": 14, + "assists": 342, + "deaths": 24, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressIncendiaryBombardAvatar" + }, + { + "kills": 5, + "assists": 2, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Turrets/GrineerPursuitTurretAvatar" + }, + { + "kills": 44, + "headshots": 2, + "assists": 20, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/GrineerWorkerAvatarB" + }, + { + "kills": 24, + "assists": 9, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/GrineerWorkerAvatarC" + }, + { + "kills": 82, + "executions": 4, + "headshots": 1, + "assists": 39, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/GrineerWorkerAvatar" + }, + { + "kills": 173, + "executions": 19, + "headshots": 10, + "assists": 47, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamD/CCTeamDBusterAAvatar" + }, + { + "kills": 167, + "executions": 15, + "headshots": 10, + "assists": 61, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamD/CCTeamDBusterBAvatar" + }, + { + "kills": 164, + "executions": 6, + "headshots": 8, + "assists": 44, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamD/CCTeamDBusterCAvatar" + }, + { + "kills": 106, + "headshots": 18, + "assists": 72, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamD/CCTeamDOspreyAvatar" + }, + { + "kills": 11, + "assists": 2, + "type": "/Lotus/Powersuits/Infestation/PodMinionAvatar" + }, + { + "kills": 24, + "executions": 2, + "headshots": 1, + "assists": 12, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/EvisceratorLancerAvatarLeader" + }, + { + "kills": 3, + "type": "/Lotus/Types/Player/ArenaTennoAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/CaptureTargets/CaptureTargetGrineerFortAAvatar" + }, + { + "kills": 13, + "assists": 6, + "deaths": 2, + "type": "/Lotus/Types/Sentinels/SentinelAvatar" + }, + { + "kills": 1, + "headshots": 1, + "deaths": 1, + "type": "/Lotus/Types/Enemies/CaptureTargets/CaptureTargetGrineerMiterAvatar" + }, + { + "kills": 775, + "assists": 301, + "deaths": 11, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedDrones/InfestedAttackDroneAvatar" + }, + { + "kills": 15, + "headshots": 1, + "assists": 6, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Quadrupeds/QuadrupedColonistAvatar" + }, + { + "kills": 3, + "assists": 1, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Quadrupeds/QuadrupedColonistAvatarLeader" + }, + { + "kills": 11, + "type": "/Lotus/Types/Enemies/Sentients/Troopers/SentientVoidMeleeTrooperAvatar" + }, + { + "kills": 6, + "type": "/Lotus/Types/Enemies/Sentients/Troopers/SentientVoidTrooperAvatar" + }, + { + "kills": 95, + "type": "/Lotus/Types/Enemies/Sentients/BardQuest/BardQuestSentientAvatar" + }, + { + "kills": 3716, + "executions": 32, + "headshots": 87, + "assists": 559, + "deaths": 8, + "type": "/Lotus/Types/Enemies/Corpus/QuadRobot/MicroHyenaAvatar" + }, + { + "kills": 2, + "type": "/Lotus/Types/Gameplay/Race/OrbiterMediumAvatar" + }, + { + "kills": 2, + "type": "/Lotus/Types/Gameplay/Race/OrbiterSmallAvatar" + }, + { + "kills": 45, + "assists": 62, + "deaths": 23, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Ambulas/BossAmbulasRangedAvatar" + }, + { + "kills": 238, + "headshots": 16, + "assists": 97, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Ambulas/AmbulasHackingDroneAvatarB" + }, + { + "kills": 32, + "assists": 3, + "deaths": 16, + "type": "/Lotus/Types/Enemies/Corpus/Dropship/CorpusDropshipTurretAvatar" + }, + { + "kills": 11, + "headshots": 2, + "assists": 35, + "deaths": 16, + "type": "/Lotus/Types/Enemies/Corpus/SpecialEvents/ArmoredJackal/ArmoredJackalAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Pods/HekCombatPodAvatar" + }, + { + "kills": 17, + "type": "/Lotus/Types/Enemies/TennoReplicants/SyndicateAllies/RedVeilEnemyAvatarCorrupted" + }, + { + "kills": 54, + "type": "/Lotus/Types/Enemies/TennoReplicants/SyndicateAllies/RedVeilEnemyAvatarCorruptedDagger" + }, + { + "kills": 215, + "headshots": 6, + "type": "/Lotus/Types/Enemies/TennoReplicants/SyndicateAllies/RedVeilZombieAvatar" + }, + { + "kills": 22, + "headshots": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/SyndicateAllies/RedVeilEnemyAvatarCorruptedBow" + }, + { + "kills": 4, + "type": "/Lotus/Types/Enemies/TennoReplicants/SyndicateAllies/RedVeilEnemyAvatarCorruptedSword" + }, + { + "kills": 940, + "executions": 21, + "headshots": 138, + "assists": 1025, + "deaths": 6, + "type": "/Lotus/Types/Enemies/Grineer/ChemStrike/ChemStrikeNoxAvatar" + }, + { + "kills": 54, + "executions": 9, + "headshots": 9, + "assists": 96, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/ChemStrike/ChemStrikeNoxAvatarLeader" + }, + { + "kills": 8, + "assists": 9, + "type": "/Lotus/Types/Enemies/TennoReplicants/SyndicateAllies/RedVeilEnemyAvatarA" + }, + { + "kills": 75, + "headshots": 12, + "assists": 138, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Corpus/Drones/DroneAvatars/DroneAttackAvatarLeader" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Grineer/GhostTower/GhostAvatar" + }, + { + "kills": 867, + "executions": 11, + "headshots": 59, + "assists": 154, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonBladeSawmanAvatar" + }, + { + "kills": 401, + "executions": 8, + "headshots": 30, + "assists": 70, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonBlowtorchSawmanAvatar" + }, + { + "kills": 618, + "executions": 6, + "headshots": 39, + "assists": 307, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonEliteRifleLancerAvatar" + }, + { + "kills": 1026, + "executions": 8, + "headshots": 83, + "assists": 269, + "deaths": 5, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonFemaleGrineerAvatar" + }, + { + "kills": 833, + "executions": 14, + "headshots": 75, + "assists": 354, + "deaths": 4, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonHeavyFemaleGrineerAvatar" + }, + { + "kills": 1514, + "executions": 20, + "headshots": 97, + "assists": 560, + "deaths": 5, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonJetpackMarineAvatar" + }, + { + "kills": 116, + "executions": 2, + "headshots": 15, + "assists": 25, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonJetpackMarineAvatarLeader" + }, + { + "kills": 1439, + "executions": 12, + "headshots": 113, + "assists": 567, + "deaths": 5, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonJetpackMeleeAvatar" + }, + { + "kills": 1223, + "executions": 8, + "headshots": 83, + "assists": 263, + "deaths": 4, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonPredatorAvatar" + }, + { + "kills": 2556, + "executions": 32, + "headshots": 163, + "assists": 745, + "deaths": 5, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonRifleLancerAvatar" + }, + { + "kills": 189, + "executions": 4, + "headshots": 13, + "assists": 47, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonRifleLancerAvatarLeader" + }, + { + "kills": 748, + "executions": 3, + "headshots": 66, + "assists": 150, + "deaths": 6, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonShieldLancerAvatar" + }, + { + "kills": 2246, + "executions": 37, + "headshots": 151, + "assists": 786, + "deaths": 4, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonShotgunLancerAvatar" + }, + { + "kills": 172, + "executions": 2, + "headshots": 17, + "assists": 47, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonShotgunLancerAvatarLeader" + }, + { + "kills": 573, + "assists": 76, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/GrineerDropship/GrineerDropshipAvatar" + }, + { + "kills": 164, + "assists": 26, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonAutoRocketTurretAvatar" + }, + { + "kills": 245, + "assists": 25, + "deaths": 7, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonAutoTurretAvatar" + }, + { + "kills": 90, + "executions": 1, + "headshots": 9, + "assists": 26, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonEliteRifleLancerAvatarLeader" + }, + { + "kills": 527, + "executions": 10, + "headshots": 49, + "assists": 156, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonEviseratorLancerAvatar" + }, + { + "kills": 75, + "executions": 1, + "headshots": 7, + "assists": 12, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonFemaleGrineerAvatarLeader" + }, + { + "kills": 681, + "executions": 6, + "headshots": 57, + "assists": 160, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonGrineerMarinePistolAvatar" + }, + { + "kills": 429, + "executions": 6, + "headshots": 62, + "assists": 201, + "deaths": 13, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonIncendiaryBombardAvatar" + }, + { + "kills": 640, + "executions": 15, + "headshots": 60, + "assists": 441, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonMortarBombardAvatar" + }, + { + "kills": 107, + "headshots": 5, + "assists": 16, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonPredatorAvatarLeader" + }, + { + "kills": 187, + "assists": 22, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/GrineerSkiff/GrineerSkiffAvatar" + }, + { + "kills": 60, + "headshots": 1, + "assists": 2, + "type": "/Lotus/Types/NeutralCreatures/ForestRodent/ForestRodentAvatar" + }, + { + "kills": 133, + "assists": 12, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonAlarmDroneAvatar" + }, + { + "kills": 160, + "assists": 20, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonAutoMortarTurretAvatar" + }, + { + "kills": 268, + "executions": 8, + "headshots": 23, + "assists": 199, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonRocketBombardAvatar" + }, + { + "kills": 58, + "headshots": 6, + "assists": 7, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonShieldLancerAvatarLeader" + }, + { + "kills": 1119, + "headshots": 22, + "assists": 395, + "deaths": 38, + "type": "/Lotus/Types/Enemies/Sentients/Eidolon/SentientVomvalystAvatar" + }, + { + "kills": 11, + "headshots": 1, + "assists": 11, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Vip/Avatars/EidolonVipSniperAvatar" + }, + { + "kills": 119, + "assists": 23, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/GrineerDropship/GrineerBigDropshipAvatar" + }, + { + "kills": 81, + "executions": 1, + "headshots": 6, + "assists": 8, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonBladeSawmanAvatarLeader" + }, + { + "kills": 18, + "headshots": 1, + "assists": 10, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonGrineerMarinePistolAvatarLeader" + }, + { + "kills": 202, + "executions": 2, + "assists": 59, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonRollingDroneAvatar" + }, + { + "kills": 258, + "headshots": 15, + "assists": 37, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonSkiffPilotAvatar" + }, + { + "kills": 146, + "assists": 18, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/GrineerSkiff/GrineerShieldSkiffAvatar" + }, + { + "kills": 38, + "executions": 1, + "headshots": 3, + "assists": 12, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonHeavyFemaleGrineerAvatarLeader" + }, + { + "kills": 50, + "headshots": 11, + "type": "/Lotus/Types/NeutralCreatures/BirdOfPrey/BirdOfPreyAvatar" + }, + { + "kills": 30, + "headshots": 1, + "assists": 2, + "type": "/Lotus/Types/NeutralCreatures/ForestRodent/ForestRodentAvatarResourceA" + }, + { + "kills": 23, + "headshots": 2, + "assists": 13, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonRocketBombardAvatarLeader" + }, + { + "kills": 24, + "executions": 1, + "headshots": 2, + "assists": 5, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonEviseratorLancerAvatarLeader" + }, + { + "kills": 21, + "headshots": 2, + "type": "/Lotus/Types/NeutralCreatures/BirdOfPrey/BirdOfPreyAvatarResourceA" + }, + { + "kills": 7, + "headshots": 2, + "assists": 10, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Vip/Avatars/EidolonVipGruntAvatar" + }, + { + "kills": 20, + "headshots": 3, + "assists": 4, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonIncendiaryBombardAvatarLeader" + }, + { + "kills": 15, + "assists": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/GrineerBomber/GrineerBomberAvatar" + }, + { + "kills": 12, + "assists": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Vip/Avatars/EidolonVipGruntDroneAvatar" + }, + { + "kills": 20, + "headshots": 2, + "assists": 7, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonBlowtorchSawmanAvatarLeader" + }, + { + "kills": 39, + "headshots": 15, + "assists": 80, + "deaths": 32, + "captures": 43, + "type": "/Lotus/Types/Enemies/Sentients/Eidolon/SentientTeralystAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Friendly/ClemSpecterAvatar" + }, + { + "kills": 18, + "assists": 75, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Infested/Eidolon/EidolonLephantisAvatar" + }, + { + "kills": 5, + "assists": 2, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Vip/Avatars/EidolonVipSkiffAvatar" + }, + { + "kills": 77, + "headshots": 6, + "assists": 31, + "type": "/Lotus/Types/Enemies/Grineer/Ghouls/GhoulDevourerAvatar" + }, + { + "kills": 155, + "headshots": 23, + "assists": 32, + "type": "/Lotus/Types/Enemies/Grineer/Ghouls/GhoulDrillAvatar" + }, + { + "kills": 264, + "headshots": 5, + "assists": 91, + "type": "/Lotus/Types/Enemies/Grineer/Ghouls/GhoulExpiredAvatar" + }, + { + "kills": 186, + "headshots": 16, + "assists": 72, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/Ghouls/GhoulSawmanAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Grineer/Ghouls/Vip/GhoulDrillVipDroneAvatar" + }, + { + "kills": 1, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/Vip/Hek/HekDroneAvatar" + }, + { + "kills": 4, + "assists": 6, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Vip/Avatars/EidolonVipPilotAvatar" + }, + { + "kills": 124, + "assists": 14, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/GrineerSkiff/GrineerSkiffUnmannedAvatar" + }, + { + "kills": 5, + "headshots": 1, + "assists": 15, + "deaths": 1, + "captures": 19, + "type": "/Lotus/Types/Enemies/Sentients/Eidolon/SentientTeralystBigAvatar" + }, + { + "kills": 19, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/GrineerSkiff/GrineerSkiffShieldUnmannedAvatar" + }, + { + "kills": 2, + "type": "/Lotus/Levels/MiniGames/Sentinel/Enemies/BulletHell/EliteSpacemanAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Levels/MiniGames/Sentinel/Enemies/BulletHell/AutoTurretAvatar" + }, + { + "kills": 2, + "headshots": 1, + "assists": 10, + "deaths": 22, + "captures": 10, + "type": "/Lotus/Types/Enemies/Sentients/Eidolon/SentientTeralystRainAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Grineer/Vip/Teshin/TeshinShadowAvatar" + }, + { + "kills": 45, + "headshots": 7, + "assists": 24, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Sentients/Mimics/SentientTrooperMimicAvatar" + }, + { + "kills": 2, + "assists": 2, + "type": "/Lotus/Types/Enemies/Quests/RevenantQuest/TennoReplicantRevenantQuestAvatar" + }, + { + "kills": 60, + "headshots": 6, + "assists": 8, + "type": "/Lotus/Types/Enemies/Quests/Chimera/VoidGhostSlowAvatar" + }, + { + "kills": 509, + "assists": 265, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Arachnoid/ArachnoidMicroAvatar" + }, + { + "kills": 65, + "assists": 10, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Corpus/Turrets/TurretAvatars/CartTurretEnergyBallAvatar" + }, + { + "kills": 1051, + "headshots": 142, + "assists": 425, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusDroneAttackAvatar" + }, + { + "kills": 1234, + "executions": 2, + "headshots": 173, + "assists": 231, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusEliteSpacemanAvatar" + }, + { + "kills": 1926, + "headshots": 173, + "assists": 467, + "deaths": 12, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusLaserCannonBipedAvatar" + }, + { + "kills": 965, + "headshots": 83, + "assists": 221, + "deaths": 8, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusShockwaveBipedAvatar" + }, + { + "kills": 839, + "headshots": 114, + "assists": 230, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusShotgunSpacemanAvatar" + }, + { + "kills": 145, + "headshots": 24, + "assists": 54, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusSniperSpacemanAvatar" + }, + { + "kills": 242, + "headshots": 49, + "assists": 53, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusHeavyMeleeSpacemanAvatar" + }, + { + "kills": 5, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/CorpusCameraDroneAvatar" + }, + { + "kills": 162, + "headshots": 28, + "assists": 36, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusGrenadierSpacemanAvatar" + }, + { + "kills": 63, + "headshots": 3, + "assists": 22, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusGuardSpacemanAvatar" + }, + { + "kills": 12, + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusGuardTurretAvatar" + }, + { + "kills": 96, + "headshots": 13, + "assists": 65, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusCarrierSpacemanAvatar" + }, + { + "kills": 55, + "headshots": 5, + "assists": 13, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusShieldDroneAvatarLeader" + }, + { + "kills": 33, + "assists": 24, + "deaths": 5, + "type": "/Lotus/Types/Enemies/Corpus/Vehicle/WheelCarDropshipAvatar" + }, + { + "kills": 35, + "headshots": 2, + "assists": 4, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusEliteSpacemanAvatarLeader" + }, + { + "kills": 91, + "executions": 1, + "headshots": 7, + "assists": 27, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusShockwaveBipedAvatarLeader" + }, + { + "kills": 68, + "headshots": 3, + "assists": 12, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusFlyingSpacemanAvatar" + }, + { + "kills": 306, + "headshots": 22, + "assists": 20, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusShieldDroneAvatar" + }, + { + "kills": 14, + "headshots": 2, + "assists": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusSniperSpacemanAvatarLeader" + }, + { + "kills": 11, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusFlyingSpacemanAvatarLeader" + }, + { + "kills": 17, + "headshots": 4, + "assists": 6, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusHeavyDroneAvatar" + }, + { + "kills": 82, + "headshots": 9, + "assists": 16, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusIcewaveBipedAvatar" + }, + { + "kills": 60, + "headshots": 8, + "assists": 38, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/Hyenas/VenusHyenaAstroAvatar" + }, + { + "kills": 50, + "headshots": 5, + "assists": 34, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/Hyenas/VenusHyenaBurnerAvatar" + }, + { + "kills": 59, + "assists": 11, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusAutoTurretAvatar" + }, + { + "kills": 7, + "headshots": 2, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/Hyenas/VenusHyenaHotrodAvatar" + }, + { + "kills": 5, + "headshots": 2, + "assists": 7, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Vip/Avatars/VenusVipPowerSpacemanAvatar" + }, + { + "kills": 35, + "headshots": 8, + "assists": 10, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusDroneAttackAvatarLeader" + }, + { + "kills": 262, + "headshots": 50, + "assists": 204, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusHeavyMeleeEliteSpacemanAvatar" + }, + { + "kills": 1416, + "headshots": 212, + "assists": 970, + "deaths": 15, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusHeavyEliteSpacemanAvatar" + }, + { + "kills": 80, + "assists": 22, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusLaserCannonBipedAvatarLeader" + }, + { + "kills": 54, + "headshots": 6, + "assists": 44, + "deaths": 7, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/QuadAvatar" + }, + { + "kills": 39, + "headshots": 4, + "assists": 69, + "deaths": 6, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusFlyingEliteSpacemanAvatar" + }, + { + "kills": 14, + "headshots": 1, + "assists": 32, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusFlyingEliteSpacemanAvatarLeader" + }, + { + "kills": 39, + "headshots": 5, + "assists": 29, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusHeavyMeleeEliteSpacemanAvatarLeader" + }, + { + "kills": 41, + "headshots": 7, + "assists": 31, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusHeavyEliteSpacemanAvatarLeader" + }, + { + "kills": 14, + "assists": 5, + "type": "/Lotus/Types/Enemies/Corpus/Dropship/Venus/VenusDropshipAvatar" + }, + { + "kills": 42, + "headshots": 11, + "assists": 76, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Arachnoid/ArachnoidHungerAvatar" + }, + { + "kills": 5, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusAutoRocketTurretAvatar" + }, + { + "kills": 2, + "assists": 7, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Vip/Avatars/VenusVipSniperSpacemanAvatar" + }, + { + "kills": 251, + "headshots": 56, + "assists": 96, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Arachnoid/ArachnoidCoolantAvatar" + }, + { + "kills": 100, + "assists": 31, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Arachnoid/ArachnoidMoltenAvatar" + }, + { + "kills": 32, + "headshots": 2, + "assists": 39, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamCarrusAvatar" + }, + { + "kills": 73, + "executions": 1, + "headshots": 30, + "assists": 76, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamMoaAvatar" + }, + { + "kills": 8, + "assists": 29, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamMoaSatyrBossAvatar" + }, + { + "kills": 1837, + "executions": 2, + "headshots": 194, + "assists": 586, + "deaths": 4, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasEliteSpacemanAvatar" + }, + { + "kills": 2120, + "headshots": 145, + "assists": 852, + "deaths": 8, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasLaserCannonBipedAvatar" + }, + { + "kills": 65, + "headshots": 9, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasMeleeSpacemanAvatar" + }, + { + "kills": 447, + "headshots": 62, + "assists": 68, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasNullifySpacemanAvatar" + }, + { + "kills": 243, + "headshots": 14, + "assists": 10, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasRifleSpacemanAvatar" + }, + { + "kills": 610, + "headshots": 92, + "assists": 136, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasShieldDroneAvatar" + }, + { + "kills": 836, + "headshots": 57, + "assists": 208, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasShockwaveBipedAvatar" + }, + { + "kills": 1381, + "executions": 1, + "headshots": 155, + "assists": 422, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasShotgunSpacemanAvatar" + }, + { + "kills": 250, + "headshots": 21, + "assists": 76, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasSniperSpacemanAvatar" + }, + { + "kills": 179, + "headshots": 44, + "assists": 111, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasSuicideDroneAvatar" + }, + { + "kills": 34, + "headshots": 3, + "assists": 29, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamCorpusSniperAvatar" + }, + { + "kills": 31, + "headshots": 3, + "assists": 27, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamMoaSatyrAvatar" + }, + { + "kills": 3, + "assists": 8, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamOspreyBossAvatar" + }, + { + "kills": 215, + "headshots": 19, + "assists": 98, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/CorpusCarrusPilotAvatar" + }, + { + "kills": 343, + "executions": 1, + "headshots": 41, + "assists": 116, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasDeployableSpacemanAvatar" + }, + { + "kills": 40, + "headshots": 5, + "assists": 39, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasLaserCannonBipedAvatarLeader" + }, + { + "kills": 329, + "headshots": 22, + "assists": 143, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasLaserDiscBipedAvatar" + }, + { + "kills": 383, + "headshots": 23, + "assists": 134, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasRailgunBipedAvatar" + }, + { + "kills": 549, + "headshots": 37, + "assists": 144, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasSuperMoaBipedAvatar" + }, + { + "kills": 11, + "headshots": 2, + "assists": 30, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamCorpusSniperBossAvatar" + }, + { + "kills": 5, + "assists": 26, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamMoaBossAvatar" + }, + { + "kills": 19, + "headshots": 3, + "assists": 17, + "deaths": 6, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamSniperReplicaAvatar" + }, + { + "kills": 60, + "headshots": 7, + "assists": 66, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasEliteSpacemanAvatarLeader" + }, + { + "kills": 9, + "assists": 7, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasLaserDiscBipedAvatarLeader" + }, + { + "kills": 21, + "headshots": 1, + "assists": 13, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasRailgunBipedAvatarLeader" + }, + { + "kills": 28, + "headshots": 1, + "assists": 27, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasSuperMoaBipedAvatarLeader" + }, + { + "kills": 19, + "headshots": 5, + "assists": 14, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasShieldDroneAvatarLead" + }, + { + "kills": 43, + "headshots": 4, + "assists": 27, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasShotgunSpacemanAvatarLeader" + }, + { + "kills": 6, + "assists": 29, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamCarrusPilotBossAvatar" + }, + { + "kills": 20, + "headshots": 1, + "assists": 20, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamCorpusOverrideAvatar" + }, + { + "kills": 18, + "headshots": 3, + "assists": 17, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasDeployableSpacemanAvatarLeader" + }, + { + "kills": 20, + "headshots": 4, + "assists": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasNullifySpacemanAvatarLeader" + }, + { + "kills": 97, + "headshots": 13, + "assists": 28, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasBaseFlyingSpacemanAvatar" + }, + { + "kills": 64, + "headshots": 6, + "assists": 38, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasEliteFlyingSpacemanAvatar" + }, + { + "kills": 53, + "headshots": 5, + "assists": 30, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasShotgunFlyingSpacemanAvatar" + }, + { + "kills": 63, + "headshots": 7, + "assists": 26, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasSniperFlyingSpacemanAvatar" + }, + { + "kills": 1, + "assists": 6, + "deaths": 16, + "type": "/Lotus/Types/Enemies/Sentients/Ropalolyst/SentientRopalolystAvatar" + }, + { + "kills": 33, + "headshots": 11, + "assists": 20, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamOspreyAvatar" + }, + { + "kills": 18, + "headshots": 1, + "assists": 21, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamCarrusPilotAvatar" + }, + { + "kills": 3, + "headshots": 1, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamPilotGhostAvatar" + }, + { + "kills": 8, + "headshots": 1, + "assists": 11, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasSniperSpacemanAvatarLeader" + }, + { + "kills": 296, + "headshots": 59, + "assists": 55, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasDiscDroneAvatar" + }, + { + "kills": 51, + "headshots": 10, + "assists": 18, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasDeployableFlyingSpacemanAvatar" + }, + { + "kills": 1, + "assists": 2, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamPilotGhostBossAvatar" + }, + { + "kills": 101, + "headshots": 19, + "assists": 32, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasNullifyFlyingSpacemanAvatar" + }, + { + "kills": 1, + "assists": 4, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasNullifyFlyingSpacemanAvatarLeader" + }, + { + "kills": 1, + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasSniperFlyingSpacemanAvatarLeader" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Sentients/Troopers/SentientGasCityMeleeTrooperAvatar" + }, + { + "kills": 3, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasBaseFlyingSpacemanAvatarLeader" + }, + { + "kills": 7, + "type": "/Lotus/Types/Enemies/Corpus/Turrets/TurretAvatars/VenusSecurityCameraAvatar" + }, + { + "kills": 10, + "headshots": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusRailgunBipedAvatar" + }, + { + "kills": 3, + "assists": 3, + "type": "/Lotus/Types/Enemies/GrineerChampions/Events/WFGrineerChampionBeastmasterAvatar" + }, + { + "kills": 8, + "assists": 3, + "type": "/Lotus/Types/Enemies/GrineerChampions/Events/WFGrineerChampionEngineerAvatar" + }, + { + "kills": 3, + "assists": 5, + "type": "/Lotus/Types/Enemies/GrineerChampions/Events/WFGrineerChampionHealerAvatar" + }, + { + "kills": 7, + "headshots": 1, + "assists": 7, + "type": "/Lotus/Types/Enemies/GrineerChampions/Events/WFGrineerChampionJetpackAvatar" + }, + { + "kills": 7, + "headshots": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/GrineerChampions/Events/WFGrineerChampionTankAvatar" + }, + { + "kills": 2, + "assists": 3, + "type": "/Lotus/Types/Enemies/GrineerChampions/Events/WFGrineerChampionChargerAvatar" + }, + { + "kills": 7, + "assists": 7, + "type": "/Lotus/Types/Enemies/GrineerChampions/Events/WFGrineerChampionGruntAvatar" + }, + { + "kills": 7, + "assists": 3, + "type": "/Lotus/Types/Enemies/GrineerChampions/Events/WFGrineerChampionHeavyAvatar" + }, + { + "kills": 3, + "assists": 6, + "type": "/Lotus/Types/Enemies/GrineerChampions/Events/WFGrineerChampionSniperAvatar" + }, + { + "kills": 24, + "headshots": 2, + "assists": 3, + "type": "/Lotus/Types/Enemies/Infested/SpecialEvents/ArloZealotDual/ArloZealotDualSwordGunAvatar" + }, + { + "kills": 24, + "headshots": 2, + "assists": 3, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Infested/SpecialEvents/ArloZealotGunAvatar" + }, + { + "kills": 44, + "assists": 7, + "type": "/Lotus/Types/Enemies/Corpus/Turrets/TurretAvatars/CartTurretLaserAvatar" + }, + { + "kills": 1, + "headshots": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusLaserDiscBipedAvatar" + }, + { + "kills": 8, + "assists": 10, + "type": "/Lotus/Types/Enemies/Corpus/Dropship/Venus/VenusSmallDropshipAvatar" + }, + { + "kills": 44, + "headshots": 4, + "assists": 11, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusShotgunSpacemanAvatarLeader" + }, + { + "kills": 157, + "headshots": 24, + "assists": 90, + "deaths": 21, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusGrenadierEliteSpacemanAvatar" + }, + { + "kills": 46, + "headshots": 10, + "assists": 18, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusModularAvatarWalkingShield" + }, + { + "kills": 34, + "headshots": 5, + "assists": 11, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusGrenadierSpacemanAvatarLeader" + }, + { + "kills": 18, + "assists": 9, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusIcewaveBipedLeaderAvatar" + }, + { + "kills": 83, + "headshots": 6, + "assists": 50, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusIcewaveEliteBipedAvatar" + }, + { + "kills": 2, + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Vip/Avatars/VenusVipShotgunSpacemanAvatar" + }, + { + "kills": 39, + "headshots": 2, + "assists": 56, + "type": "/Lotus/Types/Enemies/Grineer/Disruption/Avatars/DemoExpiredAvatar" + }, + { + "kills": 38, + "headshots": 6, + "assists": 78, + "type": "/Lotus/Types/Enemies/Grineer/Disruption/Avatars/DisruptionChargerAvatar" + }, + { + "kills": 32, + "headshots": 2, + "assists": 76, + "type": "/Lotus/Types/Enemies/Grineer/Disruption/Avatars/DisruptionMinigunBombardAvatar" + }, + { + "kills": 28, + "headshots": 2, + "assists": 65, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/Disruption/Avatars/DisruptionNoxAvatar" + }, + { + "kills": 13, + "headshots": 1, + "assists": 21, + "type": "/Lotus/Types/Enemies/Infested/Disruption/Avatars/DisruptionAncientTankAvatar" + }, + { + "kills": 9, + "headshots": 3, + "assists": 17, + "type": "/Lotus/Types/Enemies/Infested/Disruption/Avatars/DisruptionBoilerAvatar" + }, + { + "kills": 8, + "assists": 5, + "type": "/Lotus/Types/Enemies/Infested/Disruption/Avatars/DisruptionJuggernautAvatar" + }, + { + "kills": 16, + "headshots": 1, + "assists": 13, + "type": "/Lotus/Types/Enemies/Infested/Disruption/Avatars/DisruptionQuadrupedAvatar" + }, + { + "kills": 50, + "headshots": 5, + "assists": 42, + "deaths": 12, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusGrenadierEliteSpacemanAvatarLeader" + }, + { + "kills": 25, + "headshots": 2, + "assists": 23, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusIcewaveEliteBipedAvatarLeader" + }, + { + "kills": 26, + "headshots": 3, + "assists": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusHeavyMeleeSpacemanAvatarLeader" + }, + { + "kills": 11, + "headshots": 1, + "type": "/Lotus/Types/NeutralCreatures/Conservation/BirdOfPrey/CommonFemaleBirdOfPreyAvatar" + }, + { + "kills": 2, + "assists": 2, + "type": "/Lotus/Types/Enemies/Grineer/Thumper/ThumperAvatar" + }, + { + "kills": 2, + "type": "/Lotus/Types/NeutralCreatures/Conservation/ForestRodent/CommonFemaleForestRodentAvatar" + }, + { + "kills": 6, + "headshots": 1, + "assists": 13, + "type": "/Lotus/Types/Enemies/Corpus/Disruption/Avatars/LuaDisruptionCarrusPilotAvatar" + }, + { + "kills": 11, + "assists": 13, + "type": "/Lotus/Types/Enemies/Corpus/Disruption/Avatars/LuaDisruptionHyenaAvatar" + }, + { + "kills": 7, + "assists": 12, + "type": "/Lotus/Types/Enemies/Corpus/Disruption/Avatars/LuaDisruptionLaserDiscBipedAvatar" + }, + { + "kills": 8, + "headshots": 2, + "assists": 12, + "type": "/Lotus/Types/Enemies/Corpus/Disruption/Avatars/LuaDisruptionRiotMoaAvatar" + }, + { + "kills": 1, + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/Hyenas/VenusHyenaPacerAvatar" + }, + { + "kills": 16, + "assists": 22, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Arachnoid/ArachnoidWraithAvatar" + }, + { + "kills": 28, + "headshots": 2, + "assists": 19, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Emissary/AncientTankAvatar" + }, + { + "kills": 12, + "executions": 12, + "assists": 57, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Emissary/InfestedJetpackAvatar" + }, + { + "kills": 31, + "headshots": 8, + "assists": 37, + "deaths": 7, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusHeavyEliteDroneAvatar" + }, + { + "kills": 3, + "headshots": 1, + "assists": 2, + "type": "/Lotus/Types/Enemies/Infested/SpecialEvents/ArloZealotSwordAvatar" + }, + { + "kills": 43, + "headshots": 29, + "assists": 6, + "type": "/Lotus/Types/Gameplay/CrewShipPartsHunt/JammingDroneAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Powersuits/Khora/Kavat/KhoraKavatAvatar" + }, + { + "kills": 5, + "headshots": 1, + "assists": 1, + "type": "/Lotus/Types/Friendly/Pets/DecoyCatbrowPetAvatar" + }, + { + "kills": 310, + "assists": 72, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/CorpusEliteShieldDroneAvatar" + }, + { + "kills": 9, + "headshots": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Commanders/Avatars/VenusCommanderAquaAvatar" + }, + { + "kills": 10, + "headshots": 2, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Commanders/Avatars/VenusCommanderGreenAvatar" + }, + { + "kills": 10, + "headshots": 1, + "assists": 4, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Commanders/Avatars/VenusCommanderOrangeAvatar" + }, + { + "kills": 14, + "headshots": 3, + "assists": 7, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/Ambulas/VenusAmbulasAvatar" + }, + { + "kills": 5, + "headshots": 1, + "assists": 4, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusCombatSpacemanAvatarLeader" + }, + { + "kills": 71, + "headshots": 15, + "assists": 36, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusCombatSpacemanAvatar" + }, + { + "kills": 108, + "assists": 12, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/SpaceFighterBrutalistAvatar" + }, + { + "kills": 94, + "assists": 8, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/SpaceFighterDredgerAvatar" + }, + { + "kills": 75, + "headshots": 13, + "assists": 43, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnBoardingDemoAvatar" + }, + { + "kills": 72, + "headshots": 12, + "assists": 56, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnBoardingMeleeAvatar" + }, + { + "kills": 72, + "headshots": 5, + "assists": 59, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnBoardingShotgunAvatar" + }, + { + "kills": 231, + "assists": 41, + "deaths": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/SpaceFighterRagerAvatar" + }, + { + "kills": 393, + "assists": 36, + "deaths": 1, + "type": "/Lotus/Types/Game/CrewShip/GrineerGalleon/GrineerGalleonTurretAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Powersuits/Brawler/SummonAvatar" + }, + { + "kills": 21, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Ships/GrineerRamSledAvatar" + }, + { + "kills": 28, + "executions": 1, + "headshots": 5, + "assists": 17, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnCrewBladeAvatar" + }, + { + "kills": 44, + "headshots": 8, + "assists": 22, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnCrewEvisceratorAvatar" + }, + { + "kills": 5, + "executions": 1, + "assists": 6, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnCaptainHeavyAvatar" + }, + { + "kills": 37, + "assists": 14, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnCaptainRollingTurretAvatar" + }, + { + "kills": 31, + "headshots": 6, + "assists": 38, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnCrewEliteRifleAvatar" + }, + { + "kills": 34, + "headshots": 8, + "assists": 15, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnCrewFlameAvatar" + }, + { + "kills": 3, + "headshots": 1, + "assists": 3, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnPilotAvatar" + }, + { + "kills": 145, + "headshots": 17, + "assists": 112, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Saturn/GrnSaturnBoardingMeleeAvatar" + }, + { + "kills": 65, + "headshots": 8, + "assists": 38, + "deaths": 4, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Saturn/GrnSaturnCrewEvisceratorAvatar" + }, + { + "kills": 56, + "headshots": 9, + "assists": 37, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Saturn/GrnSaturnCrewFlameAvatar" + }, + { + "kills": 151, + "executions": 1, + "headshots": 17, + "assists": 118, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Saturn/GrnSaturnBoardingDemoAvatar" + }, + { + "kills": 158, + "executions": 2, + "headshots": 27, + "assists": 119, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Saturn/GrnSaturnBoardingShotgunAvatar" + }, + { + "kills": 129, + "assists": 30, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/Saturn/SpaceFighterSaturnBrutalistAvatar" + }, + { + "kills": 132, + "assists": 30, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/Saturn/SpaceFighterSaturnDredgerAvatar" + }, + { + "kills": 325, + "assists": 71, + "deaths": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/Saturn/SpaceFighterSaturnRagerAvatar" + }, + { + "kills": 1297, + "assists": 339, + "deaths": 5, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/Saturn/SpaceFighterSaturnRagerEliteAvatar" + }, + { + "kills": 213, + "assists": 61, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/Saturn/SpaceFighterSaturnDredgerEliteAvatar" + }, + { + "kills": 9, + "assists": 10, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Saturn/GrnSaturnCaptainHeavyAvatar" + }, + { + "kills": 60, + "headshots": 10, + "assists": 41, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Saturn/GrnSaturnCrewBladeAvatar" + }, + { + "kills": 80, + "headshots": 6, + "assists": 59, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Saturn/GrnSaturnCrewEliteRifleAvatar" + }, + { + "kills": 2, + "headshots": 1, + "assists": 2, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Saturn/GrnSaturnPilotAvatar" + }, + { + "kills": 194, + "assists": 58, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/Saturn/SpaceFighterSaturnBrutalistEliteAvatar" + }, + { + "kills": 172, + "assists": 7, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Ships/Saturn/GrineerSaturnRamSledAvatar" + }, + { + "kills": 231, + "executions": 1, + "headshots": 36, + "assists": 191, + "deaths": 9, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSBoardingShotgunAvatar" + }, + { + "kills": 1444, + "assists": 627, + "deaths": 9, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/DeepSpace/SpaceFighterDSRagerEliteAvatar" + }, + { + "kills": 180, + "headshots": 23, + "assists": 157, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSBoardingDemoAvatar" + }, + { + "kills": 210, + "executions": 1, + "headshots": 30, + "assists": 185, + "deaths": 4, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSBoardingMeleeAvatar" + }, + { + "kills": 7, + "executions": 2, + "headshots": 2, + "assists": 7, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSCaptainHeavyAvatar" + }, + { + "kills": 47, + "headshots": 19, + "assists": 26, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSCrewBladeAvatar" + }, + { + "kills": 67, + "headshots": 11, + "assists": 40, + "deaths": 6, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSCrewEvisceratorAvatar" + }, + { + "kills": 116, + "assists": 72, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/DeepSpace/SpaceFighterDSBrutalistEliteAvatar" + }, + { + "kills": 203, + "assists": 104, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/DeepSpace/SpaceFighterDSDredgerEliteAvatar" + }, + { + "kills": 54, + "headshots": 14, + "assists": 27, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSCrewFlameAvatar" + }, + { + "kills": 1946, + "headshots": 58, + "assists": 1109, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Sentients/Brachiolyst/SentientBrachiolystAvatar" + }, + { + "kills": 448, + "headshots": 37, + "assists": 465, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Sentients/Symbilyst/SentientSymbilystAvatar" + }, + { + "kills": 295, + "headshots": 10, + "assists": 362, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Sentients/Troopers/SentientTrooperNoPowersAvatar" + }, + { + "kills": 3, + "assists": 2, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/AdmiralLightningAvatar" + }, + { + "kills": 65, + "executions": 3, + "headshots": 15, + "assists": 49, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSCrewEliteRifleAvatar" + }, + { + "kills": 14, + "assists": 4, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/DeepSpace/SpaceFighterDSOutriderAvatar" + }, + { + "kills": 108, + "assists": 20, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/DeepSpace/SpaceFighterDSBrutalistAvatar" + }, + { + "kills": 137, + "assists": 29, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/DeepSpace/SpaceFighterDSDredgerAvatar" + }, + { + "kills": 319, + "assists": 58, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/DeepSpace/SpaceFighterDSRagerAvatar" + }, + { + "kills": 27, + "assists": 2, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Ships/DeepSpace/SentientGrineerRamSledAvatar" + }, + { + "kills": 5, + "assists": 3, + "deaths": 10, + "type": "/Lotus/Types/Game/CrewShip/GrineerDestroyer/DeepSpace/GrineerDSDestroyerAvatar" + }, + { + "kills": 1, + "assists": 2, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressCombatCatbrowAvatar" + }, + { + "kills": 2, + "executions": 5, + "assists": 15, + "deaths": 52, + "type": "/Lotus/Types/Enemies/KuvaLich/KuvaLichFemaleAAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/NeutralCreatures/Conservation/VampireKavat/RareVampireKavatFemaleAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/NeutralCreatures/Conservation/VampireKavat/RareVampireKavatMaleAvatar" + }, + { + "kills": 1, + "assists": 7, + "type": "/Lotus/Types/Enemies/Grineer/Disruption/Avatars/DisruptionRoyalGuardAvatar" + }, + { + "kills": 64, + "headshots": 1, + "assists": 56, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Sentients/RailJack/SentientBoardingHackerAvatar" + }, + { + "kills": 57, + "headshots": 8, + "assists": 48, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Sentients/RailJack/SentientBoardingNoPowersAvatar" + }, + { + "kills": 46, + "headshots": 4, + "assists": 26, + "type": "/Lotus/Types/Enemies/Sentients/RailJack/SentientBoardingSymbilystAvatar" + }, + { + "kills": 4, + "assists": 11, + "type": "/Lotus/Types/Enemies/Sentients/SentientFragmentVomvalystAvatar" + }, + { + "kills": 80, + "assists": 3, + "type": "/Lotus/Types/Enemies/SpaceBattles/Sentient/Fighters/SpaceFighterSntAssaultAvatar" + }, + { + "kills": 44, + "assists": 3, + "deaths": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Sentient/Fighters/SpaceFighterSntCoilAvatar" + }, + { + "kills": 31, + "assists": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Sentient/SentientRamSledAvatar" + }, + { + "kills": 40, + "assists": 14, + "type": "/Lotus/Types/Enemies/Sentients/RailJack/SentientBoardingBrachiolystAvatar" + }, + { + "kills": 14, + "headshots": 1, + "assists": 9, + "type": "/Lotus/Types/Enemies/Sentients/Aerolyst/SentientAerolystAvatar" + }, + { + "kills": 67, + "assists": 26, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Ships/DeepSpace/GrineerDSRamSledAvatar" + }, + { + "kills": 25, + "assists": 3, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/Saturn/SpaceFighterSaturnOutriderEliteAvatar" + }, + { + "kills": 21, + "assists": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/Saturn/SpaceFighterSaturnOutriderAvatar" + }, + { + "kills": 6, + "assists": 2, + "deaths": 17, + "type": "/Lotus/Types/Game/CrewShip/GrineerDestroyer/Saturn/GrineerSaturnDestroyerAvatar" + }, + { + "kills": 270, + "executions": 1, + "headshots": 18, + "assists": 124, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/EliteShieldLancerAvatar" + }, + { + "kills": 2, + "assists": 2, + "deaths": 2, + "type": "/Lotus/Types/Game/CrewShip/GrineerDestroyer/DeepSpace/GrineerDSDestroyerEliteAvatar" + }, + { + "kills": 25, + "headshots": 1, + "assists": 19, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/EliteShieldLancerAvatarLeader" + }, + { + "kills": 1, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamCorpusSniperAvatarLeader" + }, + { + "kills": 50, + "headshots": 14, + "assists": 16, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusModularAvatarWalkingDetector" + }, + { + "kills": 56, + "headshots": 10, + "assists": 22, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusModularAvatarWalkingLaser" + }, + { + "kills": 47, + "headshots": 9, + "assists": 20, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusModularAvatarWalkingTesla" + }, + { + "kills": 3, + "assists": 3, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Arachnoid/ArachnoidCamperTerraAvatar" + }, + { + "kills": 8, + "headshots": 1, + "assists": 2, + "type": "/Lotus/Types/NeutralCreatures/Conservation/VampireKavat/CommonVampireKavatMaleAvatar" + }, + { + "kills": 4, + "assists": 6, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/DeepSpace/SpaceFighterDSOutriderEliteAvatar" + }, + { + "kills": 11, + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCombaShieldAvatarLeader" + }, + { + "kills": 215, + "headshots": 21, + "assists": 30, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCrewmanAvatar" + }, + { + "kills": 5669, + "executions": 44, + "headshots": 678, + "assists": 2087, + "deaths": 5, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCrewmanEliteAvatar" + }, + { + "kills": 2, + "headshots": 1, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMachinistHammerAvatarLeader" + }, + { + "kills": 3154, + "executions": 18, + "headshots": 141, + "assists": 1364, + "deaths": 4, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMoaDeraAvatar" + }, + { + "kills": 243, + "headshots": 52, + "assists": 199, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipOspreyOxiumAvatar" + }, + { + "kills": 873, + "executions": 2, + "headshots": 44, + "assists": 342, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMoaDiscAvatar" + }, + { + "kills": 22, + "headshots": 2, + "assists": 16, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMoaDiscAvatarLeader" + }, + { + "kills": 414, + "executions": 1, + "headshots": 24, + "assists": 201, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMoaGlaxionAvatar" + }, + { + "kills": 6, + "assists": 11, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMoaGlaxionAvatarLeader" + }, + { + "kills": 547, + "executions": 2, + "headshots": 62, + "assists": 237, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipOspreyShieldAvatar" + }, + { + "kills": 61, + "headshots": 6, + "assists": 53, + "type": "/Lotus/Types/Enemies/Corpus/Aristocrats/Avatars/AristocratManagerAvatar" + }, + { + "kills": 345, + "executions": 2, + "headshots": 75, + "assists": 293, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCrewmanTechAvatar" + }, + { + "kills": 68, + "executions": 1, + "headshots": 3, + "assists": 81, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMoaDeraAvatarLeader" + }, + { + "kills": 101, + "headshots": 1, + "assists": 48, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMoaDualCannonAvatar" + }, + { + "kills": 800, + "executions": 1, + "assists": 90, + "type": "/Lotus/Types/Enemies/Corpus/Gamemodes/PurgatoryGhostAvatar" + }, + { + "kills": 1654, + "executions": 24, + "headshots": 72, + "assists": 205, + "type": "/Lotus/Types/Enemies/Corpus/Gamemodes/PurgatoryWarriorAvatar" + }, + { + "kills": 1727, + "executions": 19, + "headshots": 83, + "assists": 182, + "deaths": 8, + "type": "/Lotus/Types/Enemies/Corpus/Gamemodes/PurgatoryWarriorRangedAvatar" + }, + { + "kills": 26, + "headshots": 5, + "assists": 8, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCombaDetectorAvatar" + }, + { + "kills": 406, + "executions": 4, + "headshots": 71, + "assists": 195, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCrewmanSniperAvatar" + }, + { + "kills": 9, + "headshots": 2, + "assists": 11, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipOspreyShieldAvatarLeader" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/OdaliskQuest/OdaliskQuestSpecterAvatar" + }, + { + "kills": 392, + "executions": 2, + "headshots": 75, + "assists": 158, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCrewmanNullifierAvatar" + }, + { + "kills": 119, + "headshots": 1, + "assists": 36, + "type": "/Lotus/Types/Enemies/Corpus/Aristocrats/Avatars/MiniMoaAvatar" + }, + { + "kills": 321, + "headshots": 48, + "assists": 94, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipOspreyMineAvatar" + }, + { + "kills": 129, + "headshots": 20, + "assists": 122, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCrewmanEliteAvatarLeader" + }, + { + "kills": 9, + "headshots": 2, + "assists": 4, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCrewmanSniperAvatarLeader" + }, + { + "kills": 35, + "executions": 3, + "headshots": 1, + "assists": 36, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCrewmanTechAvatarLeader" + }, + { + "kills": 7, + "headshots": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMachinistHammerAvatar" + }, + { + "kills": 3, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSPilotAvatar" + }, + { + "kills": 6, + "headshots": 1, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/GuidedDummyBipedAvatar" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Powersuits/MonkeyKing/HairAvatar" + }, + { + "kills": 1, + "assists": 6, + "type": "/Lotus/Types/Enemies/Grineer/Disruption/Avatars/DisruptionChargerFortressAvatar" + }, + { + "kills": 3, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/SpaceFighterOutriderAvatar" + }, + { + "kills": 9, + "assists": 5, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/SpaceFighterRagerEliteAvatar" + }, + { + "kills": 1817, + "headshots": 266, + "assists": 2048, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Ashen/AshenAvatar" + }, + { + "kills": 280, + "headshots": 31, + "assists": 173, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/HealingAncientMicroPlanetAvatar" + }, + { + "kills": 1410, + "assists": 895, + "deaths": 4, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/InfestedAttackDroneMicroPlanetAvatar" + }, + { + "kills": 1545, + "headshots": 66, + "assists": 1002, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/QuadrupedMicroPlanetAvatar" + }, + { + "kills": 1071, + "headshots": 113, + "assists": 498, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/RunnerMicroPlanetAvatar" + }, + { + "kills": 261, + "headshots": 5, + "assists": 479, + "deaths": 12, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/GreyStrain/BoneBlade/BoneBladeAvatar" + }, + { + "kills": 346, + "headshots": 37, + "assists": 284, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/DiseasedAncientMicroPlanetAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/LeapingSuicideRunnerAvatar" + }, + { + "kills": 580, + "headshots": 55, + "assists": 850, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Emissary/AncientShellAvatar" + }, + { + "kills": 112, + "headshots": 11, + "assists": 127, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/AncientTankMicroPlanetAvatar" + }, + { + "kills": 417, + "headshots": 29, + "assists": 529, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Ashen/AshenBigAvatar" + }, + { + "kills": 20, + "assists": 38, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/JuggernautMicroPlanetCasualAvatar" + }, + { + "kills": 21, + "headshots": 3, + "assists": 50, + "deaths": 19, + "type": "/Lotus/Types/Enemies/Orokin/Entrati/EntratiTech/NechroTech/NechroTechAvatar" + }, + { + "kills": 389, + "assists": 658, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/GreyStrain/Femur/InfestedFemurAvatar" + }, + { + "kills": 119, + "assists": 125, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/CellCarrierDroneMicroPlanetAvatar" + }, + { + "kills": 97, + "assists": 80, + "deaths": 6, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Drones/Tendril/InfestedTendrilDroneAvatar" + }, + { + "kills": 1, + "headshots": 1, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedCritter/CommonInfestedCritterAvatar" + }, + { + "kills": 24, + "headshots": 2, + "assists": 7, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/DiseasedAncientMicroPlanetEximusAvatar" + }, + { + "kills": 8, + "headshots": 3, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedMaggot/UncommonInfestedMaggotAvatar" + }, + { + "kills": 10, + "headshots": 3, + "assists": 10, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/HealingAncientMicroPlanetEximusAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedKDrive/SwampInfKDriveAvatar" + }, + { + "kills": 6, + "headshots": 3, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedMaggot/CommonInfestedMaggotAvatar" + }, + { + "kills": 2, + "assists": 10, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/FemurAssassinateTargetAvatar" + }, + { + "kills": 31, + "headshots": 1, + "assists": 21, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Dropship/InfestedBigDropshipAvatar" + }, + { + "kills": 9, + "assists": 5, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipOspreyMineAvatarLeader" + }, + { + "kills": 3, + "assists": 4, + "type": "/Lotus/Types/Enemies/Corpus/Disruption/Avatars/DisruptionCarrusPilotAvatar" + }, + { + "kills": 5, + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/Disruption/Avatars/DisruptionHyenaAvatar" + }, + { + "kills": 3, + "assists": 7, + "type": "/Lotus/Types/Enemies/Corpus/Disruption/Avatars/DisruptionLaserDiscBipedAvatar" + }, + { + "kills": 2, + "assists": 9, + "type": "/Lotus/Types/Enemies/Corpus/Disruption/Avatars/DisruptionRiotMoaAvatar" + }, + { + "kills": 64, + "assists": 77, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Quadrupeds/RusherAvatarMist" + }, + { + "kills": 27, + "headshots": 6, + "assists": 21, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Ashen/AshenEximusAvatar" + }, + { + "kills": 41, + "assists": 36, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/InfestedAttackDroneMicroPlanetEximusAvatar" + }, + { + "kills": 58, + "headshots": 5, + "assists": 25, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/QuadrupedMicroPlanetEximusAvatar" + }, + { + "kills": 37, + "headshots": 6, + "assists": 58, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Splitter/SplitterSplitAvatar" + }, + { + "kills": 50, + "headshots": 11, + "assists": 52, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Splitter/SplitterTopSplitAvatar" + }, + { + "kills": 20, + "assists": 26, + "type": "/Lotus/Types/Enemies/Sentients/Dolicholyst/SentientDolicholystAvatar" + }, + { + "kills": 213, + "headshots": 3, + "assists": 48, + "type": "/Lotus/Types/Enemies/Sentients/Eidolon/SentientEidolonGhostCasterAvatar" + }, + { + "kills": 96, + "headshots": 4, + "assists": 43, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Sentients/Ortholyst/SentientOrtholystAvatar" + }, + { + "kills": 91, + "assists": 266, + "type": "/Lotus/Types/Enemies/Sentients/Condrix/SentientCondrixAvatarMechEvent" + }, + { + "kills": 2, + "headshots": 1, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasShotgunFlyingSpacemanAvatarLeader" + }, + { + "kills": 30, + "headshots": 1, + "assists": 11, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/RunnerMicroPlanetEximusAvatar" + }, + { + "kills": 1, + "headshots": 1, + "type": "/Lotus/Types/NeutralCreatures/Conservation/ForestRodent/RareFemaleForestRodentAvatar" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Grineer/Thumper/ThumperMedAvatar" + }, + { + "kills": 4, + "headshots": 2, + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasDiscDroneAvatarLeader" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasEliteFlyingSpacemanAvatarLeader" + }, + { + "kills": 2, + "assists": 2, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/GreyStrain/Femur/InfestedFemurEximusAvatar" + }, + { + "kills": 1, + "assists": 7, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/JuggernautMicroPlanetEscortAvatar" + }, + { + "kills": 32, + "headshots": 2, + "assists": 18, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCrewmanNullifierAvatarLeader" + }, + { + "kills": 5, + "assists": 21, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Orokin/Entrati/EntratiTech/Thanotech/ThanoTechAvatar" + }, + { + "kills": 2, + "headshots": 2, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedMaggot/RareInfestedMaggotAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedNexifera/CommonInfestedNexiferaAvatar" + }, + { + "kills": 1, + "headshots": 1, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/AncientTankMicroPlanetEximusAvatar" + }, + { + "kills": 2, + "type": "/Lotus/Powersuits/Dragon/DragonPeltAvatar" + }, + { + "kills": 1, + "headshots": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Splitter/SplitterSplitAvatarEximus" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Splitter/SplitterTopSplitAvatarEximus" + }, + { + "kills": 7, + "assists": 6, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCombaLaserAvatarLeader" + }, + { + "kills": 25, + "executions": 3, + "headshots": 4, + "assists": 15, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCombaDetectorAvatarLeader" + }, + { + "kills": 14, + "executions": 1, + "headshots": 4, + "assists": 8, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCombaTeslaAvatarLeader" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasMeleeSpacemanAvatarLeader" + }, + { + "kills": 11, + "headshots": 2, + "assists": 7, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMoaDualCannonAvatarLeader" + }, + { + "kills": 7, + "headshots": 5, + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/BoardingMeleeSpacemanAvatar" + }, + { + "kills": 7, + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/BoardingRifleSpacemanAvatar" + }, + { + "kills": 10, + "executions": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/BoardingShotgunSpacemanAvatar" + }, + { + "kills": 64, + "headshots": 4, + "assists": 42, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpCrewCannonBipedAvatar" + }, + { + "kills": 73, + "headshots": 25, + "assists": 45, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpCrewMeleeAvatar" + }, + { + "kills": 9, + "headshots": 2, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpCrewNullifierAvatar" + }, + { + "kills": 80, + "headshots": 21, + "assists": 47, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpCrewRifleAvatar" + }, + { + "kills": 63, + "headshots": 23, + "assists": 26, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpCrewShieldDroneAvatar" + }, + { + "kills": 81, + "headshots": 15, + "assists": 45, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpCrewShotgunAvatar" + }, + { + "kills": 52, + "headshots": 7, + "assists": 13, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpRJRailgunBipedAvatar" + }, + { + "kills": 12, + "headshots": 1, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpRailjackShockwaveBipedAvatar" + }, + { + "kills": 29, + "headshots": 3, + "assists": 15, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpSpecOpsRangedAvatarThree" + }, + { + "kills": 48, + "headshots": 10, + "assists": 46, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/SpecOpsFireMoaAvatar" + }, + { + "kills": 42, + "headshots": 10, + "assists": 35, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/SpecOpsIceMoaAvatar" + }, + { + "kills": 136, + "headshots": 25, + "assists": 86, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/SpecOpsStaffAvatar" + }, + { + "kills": 5, + "assists": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Fighters/SpaceFighterGoxAvatar" + }, + { + "kills": 8, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/SpaceFighterChargeAvatar" + }, + { + "kills": 7, + "assists": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/SpaceFighterLaserAvatar" + }, + { + "kills": 11, + "headshots": 5, + "assists": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/SpaceFighterPlasmaAvatar" + }, + { + "kills": 58, + "headshots": 5, + "assists": 35, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpCrewDiscBipedAvatar" + }, + { + "kills": 53, + "headshots": 16, + "assists": 26, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpCrewEliteAvatar" + }, + { + "kills": 38, + "headshots": 10, + "assists": 28, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpTechEngineerAvatar" + }, + { + "kills": 29, + "assists": 31, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/SpecOpsArachnoidAvatar" + }, + { + "kills": 16, + "headshots": 4, + "assists": 8, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CorpusRailjackFlyingSpacemanAvatar" + }, + { + "kills": 36, + "headshots": 11, + "assists": 19, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpSpecOpsRangedAvatarOne" + }, + { + "kills": 5, + "headshots": 2, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpTechDeployableAvatar" + }, + { + "kills": 10, + "assists": 3, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Fighters/SpaceFighterChargeEliteAvatar" + }, + { + "kills": 13, + "headshots": 4, + "assists": 2, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Fighters/SpaceFighterPlasmaEliteAvatar" + }, + { + "kills": 24, + "assists": 5, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Turrets/ObeliskTurretAvatar" + }, + { + "kills": 2, + "headshots": 1, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpCrewshipCaptainAvatar" + }, + { + "kills": 10, + "assists": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Fighters/SpaceFighterLaserEliteAvatar" + }, + { + "kills": 23, + "headshots": 7, + "assists": 12, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneBoardingRifleSpacemanAvatar" + }, + { + "kills": 10, + "headshots": 2, + "assists": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCorpusRailjackFlyingSpacemanAvatar" + }, + { + "kills": 79, + "headshots": 11, + "assists": 76, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpCrewCannonBipedAvatar" + }, + { + "kills": 111, + "headshots": 3, + "assists": 111, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpCrewDiscBipedAvatar" + }, + { + "kills": 81, + "headshots": 24, + "assists": 83, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpCrewMeleeAvatar" + }, + { + "kills": 135, + "headshots": 34, + "assists": 103, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpCrewRifleAvatar" + }, + { + "kills": 91, + "headshots": 20, + "assists": 68, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpCrewShotgunAvatar" + }, + { + "kills": 8, + "headshots": 4, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpCrewshipCaptainAvatar" + }, + { + "kills": 30, + "headshots": 3, + "assists": 17, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpRJRailgunBipedAvatar" + }, + { + "kills": 5, + "assists": 4, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpRailjackShockwaveBipedAvatar" + }, + { + "kills": 23, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/Neptune/SpaceFighterNeptuneChargeAvatar" + }, + { + "kills": 9, + "assists": 6, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/Neptune/SpaceFighterNeptuneGoxAvatar" + }, + { + "kills": 19, + "assists": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/Neptune/SpaceFighterNeptuneLaserAvatar" + }, + { + "kills": 17, + "headshots": 4, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/Neptune/SpaceFighterNeptunePlasmaAvatar" + }, + { + "kills": 21, + "headshots": 4, + "assists": 7, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneBoardingMeleeSpacemanAvatar" + }, + { + "kills": 16, + "headshots": 3, + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneBoardingShotgunSpacemanAvatar" + }, + { + "kills": 22, + "headshots": 5, + "assists": 9, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpCrewNullifierAvatar" + }, + { + "kills": 18, + "assists": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/Neptune/SpaceFighterNeptuneLaserEliteAvatar" + }, + { + "kills": 23, + "headshots": 9, + "assists": 2, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/Neptune/SpaceFighterNeptunePlasmaEliteAvatar" + }, + { + "kills": 16, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/Pluto/SpaceFighterPlutoLaserAvatar" + }, + { + "kills": 15, + "headshots": 3, + "assists": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/Pluto/SpaceFighterPlutoPlasmaAvatar" + }, + { + "kills": 9, + "headshots": 3, + "assists": 9, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpAdmiralFlyingAvatar" + }, + { + "kills": 61, + "headshots": 24, + "assists": 31, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/OverrideJammingDrone2Avatar" + }, + { + "kills": 43, + "headshots": 7, + "type": "/Lotus/Types/Enemies/Corpus/SpecialEvents/WraithM3PlutoCrpCrewMeleeAvatar" + }, + { + "kills": 14, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/Pluto/SpaceFighterPlutoChargeAvatar" + }, + { + "kills": 12, + "assists": 1, + "deaths": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/Pluto/SpaceFighterPlutoChargeEliteAvatar" + }, + { + "kills": 10, + "assists": 5, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/Pluto/SpaceFighterPlutoLaserEliteAvatar" + }, + { + "kills": 16, + "assists": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/Neptune/SpaceFighterNeptuneChargeEliteAvatar" + }, + { + "kills": 33, + "headshots": 9, + "assists": 16, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpCrewEliteAvatar" + }, + { + "kills": 27, + "headshots": 6, + "assists": 14, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpCrewShieldDroneAvatar" + }, + { + "kills": 17, + "headshots": 8, + "assists": 7, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpTechDeployableAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/SpaceFighterBrutalistEliteAvatar" + }, + { + "kills": 12, + "headshots": 2, + "assists": 6, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoBoardingMeleeSpacemanAvatar" + }, + { + "kills": 14, + "headshots": 3, + "assists": 4, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoBoardingRifleSpacemanAvatar" + }, + { + "kills": 10, + "headshots": 1, + "assists": 7, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCorpusRailjackFlyingSpacemanAvatar" + }, + { + "kills": 29, + "headshots": 2, + "assists": 15, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpCrewCannonBipedAvatar" + }, + { + "kills": 43, + "headshots": 2, + "assists": 16, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpCrewDiscBipedAvatar" + }, + { + "kills": 18, + "headshots": 3, + "assists": 9, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpCrewEliteAvatar" + }, + { + "kills": 29, + "headshots": 3, + "assists": 18, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpCrewMeleeAvatar" + }, + { + "kills": 13, + "headshots": 4, + "assists": 8, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpCrewNullifierAvatar" + }, + { + "kills": 69, + "headshots": 18, + "assists": 26, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpCrewRifleAvatar" + }, + { + "kills": 43, + "headshots": 9, + "assists": 10, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpCrewShieldDroneAvatar" + }, + { + "kills": 59, + "headshots": 15, + "assists": 32, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpCrewShotgunAvatar" + }, + { + "kills": 38, + "headshots": 1, + "assists": 15, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpRJRailgunBipedAvatar" + }, + { + "kills": 11, + "headshots": 3, + "assists": 11, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpRailjackShockwaveBipedAvatar" + }, + { + "kills": 13, + "headshots": 3, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpTechDeployableAvatar" + }, + { + "kills": 15, + "headshots": 2, + "assists": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoBoardingShotgunSpacemanAvatar" + }, + { + "kills": 8, + "assists": 2, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/Pluto/SpaceFighterPlutoGoxAvatar" + }, + { + "kills": 5, + "headshots": 2, + "assists": 4, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpSpecOpsRiotBipedControlAvatar" + }, + { + "kills": 88, + "headshots": 9, + "assists": 78, + "deaths": 4, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceBoardingRifleSpacemanAvatar" + }, + { + "kills": 49, + "headshots": 5, + "assists": 38, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpCrewCannonBipedAvatar" + }, + { + "kills": 91, + "headshots": 3, + "assists": 68, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpCrewDiscBipedAvatar" + }, + { + "kills": 32, + "headshots": 10, + "assists": 23, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpCrewEliteAvatar" + }, + { + "kills": 54, + "headshots": 16, + "assists": 31, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpCrewMeleeAvatar" + }, + { + "kills": 21, + "headshots": 7, + "assists": 12, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpCrewNullifierAvatar" + }, + { + "kills": 49, + "headshots": 15, + "assists": 32, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpCrewShieldDroneAvatar" + }, + { + "kills": 90, + "headshots": 22, + "assists": 75, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpCrewShotgunAvatar" + }, + { + "kills": 79, + "headshots": 2, + "assists": 37, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpRJRailgunBipedAvatar" + }, + { + "kills": 20, + "headshots": 3, + "assists": 4, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpRailjackShockwaveBipedAvatar" + }, + { + "kills": 20, + "headshots": 2, + "assists": 28, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpTechDeployableAvatar" + }, + { + "kills": 4, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCorpusRailjackFlyingSpacemanAvatar" + }, + { + "kills": 13, + "headshots": 1, + "assists": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpCrewRifleAvatar" + }, + { + "kills": 4, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpCrewshipCaptainAvatar" + }, + { + "kills": 17, + "headshots": 2, + "assists": 4, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceBoardingMeleeSpacemanAvatar" + }, + { + "kills": 29, + "assists": 5, + "deaths": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/DeepSpace/SpaceFighterDSChargeEliteAvatar" + }, + { + "kills": 5, + "assists": 2, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/DeepSpace/SpaceFighterDSGoxAvatar" + }, + { + "kills": 13, + "assists": 3, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/DeepSpace/SpaceFighterDSLaserEliteAvatar" + }, + { + "kills": 17, + "headshots": 2, + "assists": 9, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceBoardingShotgunSpacemanAvatar" + }, + { + "kills": 23, + "headshots": 7, + "assists": 3, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/DeepSpace/SpaceFighterDSPlasmaEliteAvatar" + }, + { + "kills": 9, + "assists": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/CorpusRamSledAvatar" + }, + { + "kills": 20, + "headshots": 6, + "type": "/Lotus/Types/Enemies/Quests/WraithQuest/GroundEnemies/CorpusM3PlasmaAvatarB" + }, + { + "kills": 12, + "headshots": 2, + "assists": 3, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/Pluto/SpaceFighterPlutoPlasmaEliteAvatar" + }, + { + "kills": 2, + "headshots": 2, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpCrewshipCaptainAvatar" + }, + { + "kills": 83, + "executions": 83, + "assists": 140, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Corpus/Lawyers/Pets/LawyerDogPetThrallAvatar" + }, + { + "kills": 47, + "headshots": 6, + "assists": 74, + "type": "/Lotus/Types/Enemies/Corpus/Lawyers/Pets/LawyerDogPetCloneAvatar" + }, + { + "kills": 34, + "executions": 34, + "assists": 91, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Corpus/Lawyers/Pets/LawyerDogPetAvatar" + }, + { + "kills": 3, + "assists": 3, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantFairyAvatar" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantNecroAvatar" + }, + { + "kills": 1, + "assists": 3, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantPaladinAvatar" + }, + { + "kills": 9, + "headshots": 2, + "assists": 2, + "type": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPeCloneAvatar" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Friendly/Pets/CreaturePets/CreaturePreceptComponents/InfestedCritterSentinelAvatar" + }, + { + "kills": 2, + "assists": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantBardAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Friendly/Pets/MoaPets/MoaPetAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Corpus/Dropship/CorpusHunterShipEliteAvatar" + }, + { + "kills": 3, + "executions": 3, + "assists": 16, + "deaths": 19, + "type": "/Lotus/Types/Enemies/Corpus/Lawyers/LawyerAvatarA" + }, + { + "kills": 1, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Orokin/Entrati/EntratiTech/EntratiTechAvatar" + }, + { + "kills": 4, + "headshots": 1, + "type": "/Lotus/Types/NeutralCreatures/Conservation/VampireKavat/UncommonVampireKavatMaleAvatar" + }, + { + "kills": 1, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/NewWar/Avatars/SentAutoTurretAvatar" + }, + { + "kills": 17, + "headshots": 6, + "type": "/Lotus/Types/Enemies/Corpus/NewWar/Avatars/SentMoaDeraAvatar" + }, + { + "kills": 4, + "headshots": 2, + "type": "/Lotus/Types/Enemies/Corpus/NewWar/Avatars/SentMoaDiscAvatar" + }, + { + "kills": 3, + "headshots": 1, + "type": "/Lotus/Types/Enemies/Corpus/NewWar/Avatars/SentOspreyOxiumAvatar" + }, + { + "kills": 1, + "executions": 1, + "type": "/Lotus/Types/Enemies/Corpus/QuadRobot/TNWQuadRobotAvatar" + }, + { + "kills": 42, + "headshots": 4, + "type": "/Lotus/Types/Enemies/Sentients/NewWar/NewWarKahlBrachiolystAvatar" + }, + { + "kills": 4, + "headshots": 1, + "type": "/Lotus/Types/Enemies/Sentients/NewWar/NewWarKahlOrtholystAvatar" + }, + { + "kills": 34, + "executions": 1, + "headshots": 3, + "type": "/Lotus/Types/Enemies/Sentients/NewWar/NewWarKahlTrooperAvatar" + }, + { + "kills": 4, + "headshots": 4, + "type": "/Lotus/Types/Enemies/Sentients/MedusaTowerAvatar" + }, + { + "kills": 20, + "headshots": 1, + "assists": 17, + "type": "/Lotus/Types/Enemies/Sentients/Troopers/SentientMeleeTrooperNoPowersAvatar" + }, + { + "kills": 65, + "headshots": 9, + "assists": 25, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerRifleLancerAvatar" + }, + { + "kills": 3, + "type": "/Lotus/Types/Enemies/Narmer/Drone/NarmerPropDroneAvatar" + }, + { + "kills": 44, + "headshots": 6, + "assists": 9, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Narmer/NarmerCrewmanAvatar" + }, + { + "kills": 11, + "headshots": 2, + "type": "/Lotus/Types/Enemies/Narmer/NarmerMinigunAvatar" + }, + { + "kills": 3, + "headshots": 1, + "type": "/Lotus/Types/Enemies/Narmer/NarmerMinigunSecurityNodeAvatar" + }, + { + "kills": 14, + "assists": 1, + "type": "/Lotus/Types/Enemies/Narmer/NarmerMoaDeraAvatar" + }, + { + "kills": 2, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Narmer/NarmerMoaDiscAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Narmer/NarmerOspreyShieldAvatar" + }, + { + "kills": 52, + "executions": 5, + "headshots": 2, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Narmer/NarmerRifleLancerAvatar" + }, + { + "kills": 6, + "type": "/Lotus/Types/Enemies/Narmer/NarmerShieldAvatar" + }, + { + "kills": 3, + "assists": 2, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Narmer/NarmerSniperAvatar" + }, + { + "kills": 16, + "headshots": 4, + "assists": 1, + "type": "/Lotus/Types/Enemies/Narmer/NarmerTechAvatar" + }, + { + "kills": 12, + "headshots": 1, + "type": "/Lotus/Types/Enemies/Sentients/NewWar/DrifterFlyingBrachiolystAvatar" + }, + { + "kills": 37, + "headshots": 14, + "type": "/Lotus/Types/Enemies/Sentients/NewWar/DrifterSentientMeleeTrooperNoPowersAvatar" + }, + { + "kills": 50, + "headshots": 4, + "type": "/Lotus/Types/Enemies/Sentients/NewWar/DrifterSentientTrooperNoPowersAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Sentients/NewWar/DrifterSymbilystAvatar" + }, + { + "kills": 6, + "type": "/Lotus/Types/Enemies/Sentients/NewWar/NewWarSentientOrtholystOmicrusAvatar" + }, + { + "kills": 3, + "type": "/Lotus/Types/Enemies/Narmer/NarmerBombardAvatar" + }, + { + "kills": 2, + "type": "/Lotus/Types/Enemies/Narmer/NarmerShotgunLancerAvatar" + }, + { + "kills": 5, + "type": "/Lotus/Types/Enemies/Sentients/Brachiolyst/SunkillerBrachiolystAvatar" + }, + { + "kills": 2, + "type": "/Lotus/Types/Enemies/Sentients/Ortholyst/SunkillerOrtholystAvatar" + }, + { + "kills": 2, + "type": "/Lotus/Types/Enemies/Sentients/Symbilyst/SunkillerSymbilystAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Sentients/Troopers/SunkillerMeleeTrooperAvatar" + }, + { + "kills": 13, + "headshots": 1, + "type": "/Lotus/Types/Enemies/Sentients/Troopers/SunkillerTrooperAvatar" + }, + { + "kills": 14, + "type": "/Lotus/Types/Enemies/Narmer/Deacon/NarmerSamuraiDeaconBasicAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Narmer/NarmerMoaDualCannonAvatar" + }, + { + "kills": 17, + "headshots": 2, + "assists": 11, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerBlowtorchSawmanAvatar" + }, + { + "kills": 12, + "headshots": 4, + "assists": 5, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerFemaleGrineerAvatar" + }, + { + "kills": 3, + "headshots": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerFlameLancerAvatar" + }, + { + "kills": 2, + "assists": 1, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerGrineerDropshipAvatar" + }, + { + "kills": 6, + "headshots": 1, + "assists": 5, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerHeavyFemaleGrineerAvatar" + }, + { + "kills": 50, + "headshots": 6, + "assists": 28, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerJetpackMarineAvatar" + }, + { + "kills": 20, + "headshots": 2, + "assists": 6, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerMacheteWomanAvatar" + }, + { + "kills": 15, + "headshots": 4, + "assists": 3, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerPistonSawmanAvatar" + }, + { + "kills": 5, + "headshots": 1, + "assists": 2, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerRocketBombardAvatar" + }, + { + "kills": 21, + "headshots": 4, + "assists": 3, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerShieldLancerAvatar" + }, + { + "kills": 27, + "headshots": 4, + "assists": 2, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerShotgunLancerAvatar" + }, + { + "kills": 2, + "assists": 3, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedPredator/CommonInfestedPredatorAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerIncendiaryBombardAvatar" + }, + { + "kills": 31, + "assists": 39, + "type": "/Lotus/Types/Enemies/Duviri/Avatars/DuviriMeleeAvatar" + }, + { + "kills": 11, + "executions": 5, + "assists": 31, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressRifleLancerAvatarLeader" + }, + { + "kills": 13, + "headshots": 5, + "assists": 18, + "type": "/Lotus/Types/Enemies/Grineer/Zariman/Avatars/GrnAntiWarframeAvatar" + }, + { + "kills": 21, + "assists": 42, + "type": "/Lotus/Types/Enemies/Duviri/Avatars/DuviriRifleAvatar" + }, + { + "kills": 1, + "executions": 2, + "assists": 6, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressBladeSawmanAvatarLeader" + }, + { + "kills": 11, + "executions": 3, + "assists": 29, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressEliteRifleLancerAvatarLeader" + }, + { + "kills": 2, + "assists": 10, + "type": "/Lotus/Types/Enemies/Zariman/Avatars/EtherealVoidAngelAvatar" + }, + { + "kills": 1, + "assists": 10, + "type": "/Lotus/Types/Enemies/Zariman/Avatars/VoidAngelAvatarEndless" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressGrineerMarinePistolAvatarLeader" + }, + { + "kills": 2, + "type": "/Lotus/Levels/KahlMissions/KahlTypes/KahlSntMeleeTrooperNoPowersAvatar" + }, + { + "kills": 48, + "headshots": 3, + "type": "/Lotus/Levels/KahlMissions/KahlTypes/PNWKahlSentientBrachiolystAvatar" + }, + { + "kills": 10, + "type": "/Lotus/Types/Enemies/SpaceBattles/Sentient/Fighters/SplineSpaceFighterSntAssaultAvatar" + }, + { + "kills": 107, + "headshots": 14, + "assists": 83, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerBladeSawmanAvatar" + }, + { + "kills": 43, + "headshots": 9, + "assists": 88, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerMacheteWomanAvatar" + }, + { + "kills": 266, + "executions": 1, + "headshots": 41, + "assists": 406, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerRifleLancerAvatar" + }, + { + "kills": 20, + "headshots": 2, + "assists": 15, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerShieldLancerAvatar" + }, + { + "kills": 143, + "headshots": 16, + "assists": 309, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerEliteRifleLancerAvatar" + }, + { + "kills": 15, + "executions": 16, + "headshots": 2, + "assists": 109, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerRifleLancerAvatarLeader" + }, + { + "kills": 38, + "headshots": 5, + "assists": 84, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerShotgunLancerAvatar" + }, + { + "kills": 8, + "executions": 4, + "headshots": 1, + "assists": 50, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerHeavyFemaleGrineerAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/NewWar/Archons/ArchonAmarChargeClone" + }, + { + "kills": 6, + "executions": 11, + "assists": 51, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerEliteRifleLancerAvatarLeader" + }, + { + "kills": 11, + "headshots": 4, + "assists": 21, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerFemaleGrineerAvatar" + }, + { + "kills": 4, + "headshots": 2, + "assists": 6, + "type": "/Lotus/Types/Enemies/Narmer/Deacon/NarmerDeaconCombatAvatar" + }, + { + "kills": 5, + "executions": 3, + "assists": 18, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerMacheteWomanAvatarLeader" + }, + { + "kills": 2, + "assists": 14, + "type": "/Lotus/Types/Enemies/Sentients/Aerolyst/PNWSentientAerolystAvatar" + }, + { + "kills": 1, + "assists": 7, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/NarmerDeployableSpacemanAvatar" + }, + { + "kills": 12, + "headshots": 2, + "assists": 7, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/NarmerDiscDroneAvatar" + }, + { + "kills": 2, + "headshots": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/NarmerMeleeSpacemanAvatar" + }, + { + "kills": 8, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/NarmerNullifySpacemanAvatar" + }, + { + "kills": 33, + "headshots": 9, + "assists": 21, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/NarmerRifleSpacemanAvatar" + }, + { + "kills": 24, + "headshots": 1, + "assists": 11, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/NarmerShipMoaDeraAvatar" + }, + { + "kills": 6, + "headshots": 2, + "assists": 5, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/NarmerShipMoaDiscAvatar" + }, + { + "kills": 11, + "assists": 7, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/NarmerShotgunSpacemanAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Transports/NarmerVenusSmallDropshipAvatar" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Transports/NarmerWheelCarDropshipAvatar" + }, + { + "kills": 1, + "assists": 1, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Turrets/NarmerCartTurretEnergyBallAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Turrets/NarmerSecurityCameraAvatar" + }, + { + "kills": 94, + "headshots": 6, + "assists": 68, + "type": "/Lotus/Types/Enemies/Corrupted/Avatars/CorruptedBeastMasterAvatar" + }, + { + "kills": 292, + "headshots": 95, + "assists": 224, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corrupted/Avatars/CorruptedCombatKubrowAvatar" + }, + { + "kills": 7, + "assists": 12, + "type": "/Lotus/Types/Enemies/Duviri/Avatars/EclipseDuviriMeleeAvatarEasy" + }, + { + "kills": 8, + "assists": 17, + "type": "/Lotus/Types/Enemies/Duviri/Avatars/EclipseDuviriRifleAvatarEasy" + }, + { + "kills": 17, + "assists": 55, + "type": "/Lotus/Types/Enemies/Duviri/Avatars/EclipseDuviriRifleAvatar" + }, + { + "kills": 4, + "assists": 5, + "type": "/Lotus/Types/Enemies/Corpus/Zariman/Avatars/CrpInterrupterAvatar" + }, + { + "kills": 136, + "headshots": 20, + "assists": 18, + "type": "/Lotus/Types/Enemies/Duviri/Dax/Avatars/DuviriAshigaruAvatar" + }, + { + "kills": 64, + "headshots": 7, + "assists": 8, + "type": "/Lotus/Types/Enemies/Duviri/Dax/Avatars/DuviriDaxAvatar" + }, + { + "kills": 8, + "type": "/Lotus/Types/Enemies/Duviri/Dax/Avatars/DuviriDaxHeavyAvatar" + }, + { + "kills": 30, + "headshots": 8, + "assists": 10, + "type": "/Lotus/Types/Enemies/Duviri/Dax/Avatars/DuviriDaxHeavyUndercroftAvatar" + }, + { + "kills": 86, + "headshots": 7, + "assists": 9, + "type": "/Lotus/Types/Enemies/Duviri/Dax/Avatars/DuviriDaxRangedAvatar" + }, + { + "kills": 3, + "headshots": 1, + "type": "/Lotus/Types/Enemies/Duviri/Dax/Avatars/DuviriQuestAshigaruAvatar" + }, + { + "kills": 91, + "headshots": 26, + "type": "/Lotus/Types/Enemies/Duviri/Shadows/Avatars/DuviriShadowAvatar" + }, + { + "kills": 2, + "type": "/Lotus/Types/Gameplay/Duviri/SideActivities/Encounters/CombatPatrol/DuviriThraxMeleeGuardAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Duviri/Dragon/Flying/AngryDragonAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Duviri/Dragon/Flying/JealousDragonAvatar" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Duviri/Dragon/Flying/SadDragonAvatar" + }, + { + "kills": 30, + "headshots": 8, + "assists": 6, + "type": "/Lotus/Types/Enemies/Orokin/Gamemodes/OrokinCarrierRifleLancerAvatar" + }, + { + "kills": 8, + "headshots": 1, + "assists": 26, + "type": "/Lotus/Types/Enemies/Duviri/Avatars/EclipseDuviriUndercroftMeleeAvatarEasy" + }, + { + "kills": 2, + "headshots": 1, + "type": "/Lotus/Types/Enemies/Duviri/Dragon/Baby/BabyDragonAvatar" + }, + { + "kills": 2, + "type": "/Lotus/Types/Enemies/Duviri/Dragon/Baby/ChaseBabyDragonAvatar" + }, + { + "kills": 6, + "headshots": 1, + "assists": 18, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Duviri/Avatars/EclipseDuviriUndercroftRifleAvatarEasy" + }, + { + "kills": 1, + "assists": 2, + "type": "/Lotus/Types/Enemies/Duviri/Dax/Avatars/DuviriDaxHeavyAvatarLeader" + }, + { + "kills": 8, + "headshots": 1, + "assists": 5, + "type": "/Lotus/Types/Enemies/Duviri/UndercroftDuviriOrokinCarrierRifleLancerAvatar" + }, + { + "kills": 1857, + "headshots": 613, + "assists": 1432, + "deaths": 3, + "type": "/Lotus/Types/Enemies/ManInTheWall/NecramechMelee/NecramechMeleeAvatar" + }, + { + "kills": 2247, + "executions": 1, + "assists": 2626, + "type": "/Lotus/Types/Enemies/ManInTheWall/NecramechRanged/NecramechRangedAvatar" + }, + { + "kills": 27, + "assists": 62, + "type": "/Lotus/Types/Enemies/ManInTheWall/Octopede/Arm/MITWOctopedeArmLeftLeaderAvatar" + }, + { + "kills": 129, + "assists": 118, + "type": "/Lotus/Types/Enemies/ManInTheWall/Octopede/BossAgents/MITWOctopedeBossArmAvatar" + }, + { + "kills": 81, + "assists": 60, + "type": "/Lotus/Types/Enemies/ManInTheWall/Octopede/BossAgents/MITWOctopedeBossArmLeftAvatar" + }, + { + "kills": 38, + "headshots": 6, + "assists": 54, + "type": "/Lotus/Types/Enemies/ManInTheWall/Octopede/BossAgents/MITWOctopedeBossBipedalLegsAvatar" + }, + { + "kills": 43, + "headshots": 4, + "type": "/Lotus/Types/Enemies/WF1999Infested/Avatars/Runner1999Avatar" + }, + { + "kills": 9, + "headshots": 1, + "type": "/Lotus/Types/Enemies/WF1999Infested/Avatars/ToxicAncient1999Avatar" + }, + { + "kills": 74, + "executions": 22, + "headshots": 21, + "assists": 302, + "deaths": 1, + "type": "/Lotus/Types/Enemies/ManInTheWall/NecramechMelee/NecramechMeleeLeaderAvatar" + }, + { + "kills": 115, + "executions": 25, + "assists": 306, + "deaths": 1, + "type": "/Lotus/Types/Enemies/ManInTheWall/NecramechRanged/NecramechRangedAvatarLeader" + }, + { + "kills": 652, + "assists": 605, + "type": "/Lotus/Types/Enemies/ManInTheWall/Octopede/Arm/MITWOctopedeArmAvatar" + }, + { + "kills": 613, + "assists": 599, + "type": "/Lotus/Types/Enemies/ManInTheWall/Octopede/Arm/MITWOctopedeArmLeftAvatar" + }, + { + "kills": 353, + "executions": 1, + "headshots": 65, + "assists": 445, + "type": "/Lotus/Types/Enemies/ManInTheWall/Octopede/Leg/BipedalLegs/MITWOctopedeBipedalLegsAvatar" + }, + { + "kills": 42, + "headshots": 3, + "assists": 93, + "type": "/Lotus/Types/Enemies/ManInTheWall/Slinky/MITWSlinkyAvatar" + }, + { + "kills": 45, + "executions": 4, + "assists": 99, + "type": "/Lotus/Types/Enemies/ManInTheWall/HandBomber/HandBomberAvatar" + }, + { + "kills": 69, + "assists": 29, + "type": "/Lotus/Types/Enemies/ManInTheWall/Octopede/BossAgents/MITWOctopedeBossArmTurretAvatar" + }, + { + "kills": 4, + "headshots": 1, + "assists": 19, + "type": "/Lotus/Types/Enemies/ManInTheWall/Octopede/MITWOctopedeAvatar" + }, + { + "kills": 18, + "assists": 12, + "type": "/Lotus/Types/Enemies/ManInTheWall/Octopede/Arm/ArmTurret/MITWOctopedeArmTurretAvatar" + }, + { + "kills": 27, + "assists": 107, + "type": "/Lotus/Types/Enemies/ManInTheWall/Triangle/MITWSupportTriangleAvatar" + }, + { + "kills": 27, + "assists": 74, + "type": "/Lotus/Types/Enemies/ManInTheWall/Octopede/Arm/MITWOctopedeArmLeaderAvatar" + }, + { + "kills": 4, + "assists": 12, + "type": "/Lotus/Types/Enemies/ManInTheWall/HandBomber/HandBomberLeaderAvatar" + }, + { + "kills": 7, + "headshots": 1, + "assists": 21, + "deaths": 1, + "type": "/Lotus/Types/Enemies/ManInTheWall/NecramechVoidRig/NecramechVoidRigAvatar" + }, + { + "kills": 10, + "headshots": 1, + "assists": 21, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerGrineerMarinePistolAvatar" + }, + { + "kills": 2, + "headshots": 1, + "assists": 6, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerPistonSawmanAvatar" + }, + { + "kills": 1, + "executions": 3, + "assists": 12, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerShotgunLancerAvatarLeader" + }, + { + "kills": 2, + "assists": 5, + "type": "/Lotus/Types/Enemies/ManInTheWall/Slinky/MITWSlinkyLeaderAvatar" + }, + { + "kills": 22, + "headshots": 8, + "assists": 87, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerEliteSpacemanAvatar" + }, + { + "kills": 2, + "headshots": 1, + "assists": 5, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerMeleeSpacemanAvatarLeader" + }, + { + "kills": 10, + "headshots": 3, + "assists": 13, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerNullifySpacemanAvatar" + }, + { + "kills": 45, + "headshots": 17, + "assists": 179, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerRifleSpacemanAvatar" + }, + { + "kills": 23, + "assists": 66, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShipMoaDeraAvatar" + }, + { + "kills": 3, + "headshots": 1, + "assists": 20, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShockwaveBipedAvatar" + }, + { + "kills": 25, + "headshots": 6, + "assists": 64, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShotgunSpacemanAvatar" + }, + { + "kills": 5, + "headshots": 2, + "assists": 19, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerCorpusCarrusPilotAvatar" + }, + { + "kills": 11, + "headshots": 1, + "assists": 36, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerMeleeSpacemanAvatar" + }, + { + "kills": 7, + "headshots": 3, + "assists": 25, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShieldDroneAvatar" + }, + { + "kills": 2, + "assists": 22, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerSuicideDroneAvatar" + }, + { + "kills": 7, + "executions": 1, + "headshots": 2, + "assists": 23, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerRifleSpacemanAvatarLeader" + }, + { + "kills": 1, + "assists": 1, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShipMoaDualCannonAvatarLeader" + }, + { + "kills": 4, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShipMoaGlaxionAvatar" + }, + { + "kills": 2, + "assists": 7, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerSniperSpacemanAvatar" + }, + { + "kills": 4, + "assists": 2, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSCaptainRollingTurretAvatar" + }, + { + "kills": 1, + "assists": 22, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Zariman/Avatars/VoidAngelAvatar" + }, + { + "kills": 3, + "assists": 3, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/DeepSpace/SpaceFighterDSLaserAvatar" + }, + { + "kills": 1, + "headshots": 1, + "deaths": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/DeepSpace/SpaceFighterDSPlasmaAvatar" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/AdmiralFireAvatar" + }, + { + "kills": 17, + "headshots": 2, + "assists": 32, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerCarrierRifleLancerAvatar" + }, + { + "kills": 1, + "assists": 14, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerRocketBombardAvatar" + }, + { + "kills": 2, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCrewmanAvatarLeader" + }, + { + "kills": 3, + "executions": 1, + "headshots": 1, + "assists": 6, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressShotgunLancerAvatarLeader" + }, + { + "kills": 7, + "headshots": 1, + "assists": 7, + "type": "/Lotus/Types/Enemies/Grineer/Disruption/Avatars/DemoDevourerAvatar" + }, + { + "kills": 2, + "headshots": 1, + "assists": 2, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressHeavyFemaleGrineerAvatarLeader" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressPistonSawmanAvatarLeader" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressRollingDroneAvatarLeader" + }, + { + "kills": 3, + "headshots": 1, + "assists": 7, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressMacheteWomanAvatarLeader" + }, + { + "kills": 1, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressFlameLancerAvatarLeader" + }, + { + "kills": 1, + "type": "/Lotus/Powersuits/Brawler/SummonAvatarNpc" + }, + { + "kills": 1, + "assists": 4, + "deaths": 8, + "type": "/Lotus/Types/Enemies/Acolytes/HeavyAcolyteAvatar" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/AdmiralPoisonAvatar" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/CarabusPoisonAvatar" + }, + { + "kills": 1, + "assists": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/Ships/DeepSpace/SpaceFighterDSChargeAvatar" + }, + { + "kills": 4, + "headshots": 1, + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpTechEngineerAvatar" + }, + { + "kills": 2, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerForestDroneAvatar" + }, + { + "kills": 1, + "executions": 4, + "headshots": 1, + "assists": 11, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerHeavyFemaleGrineerAvatarLeader" + }, + { + "kills": 1, + "executions": 9, + "assists": 43, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerBladeSawmanAvatarLeader" + }, + { + "kills": 1, + "assists": 2, + "type": "/Lotus/Types/Enemies/Narmer/NarmerTechDroneAvatar" + }, + { + "kills": 1, + "headshots": 1, + "assists": 8, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerEliteSpacemanAvatarLeader" + }, + { + "kills": 1, + "executions": 1, + "assists": 13, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShipMoaDeraAvatarLeader" + }, + { + "kills": 1, + "assists": 6, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShipMoaDiscAvatarLeader" + }, + { + "kills": 9, + "headshots": 1, + "assists": 11, + "type": "/Lotus/Types/Enemies/ManInTheWall/NecramechBonewindow/NecramechBonewidowDisruptionAvatar" + }, + { + "kills": 5, + "assists": 22, + "type": "/Lotus/Types/Enemies/ManInTheWall/NecramechVoidRig/NecramechVoidRigDisruptionAvatar" + }, + { + "kills": 6, + "assists": 11, + "type": "/Lotus/Types/Enemies/ManInTheWall/TreasureBox/MITWTreasureBoxAvatar" + }, + { + "kills": 6, + "assists": 1, + "type": "/Lotus/Types/Enemies/ManInTheWall/TreasureBox/MITWTreasureBoxCloneAvatar" + }, + { + "executions": 1, + "type": "/Lotus/Types/Enemies/Sentients/NewWar/NewWarKahlSymbilystAvatar" + }, + { + "executions": 1, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerGrineerMarinePistolAvatarLeader" + }, + { + "executions": 1, + "assists": 9, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShotgunSpacemanAvatarLeader" + }, + { + "executions": 3, + "assists": 3, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressEviseratorLancerAvatarLeader" + }, + { + "executions": 2, + "assists": 1, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerIncendiaryBombardAvatarLeader" + }, + { + "executions": 1, + "assists": 14, + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerShieldLancerAvatarLeader" + }, + { + "executions": 1, + "assists": 6, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerNullifySpacemanAvatarLeader" + }, + { + "executions": 1, + "assists": 2, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerIncendiaryBombardAvatar" + }, + { + "executions": 2, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerFemaleGrineerAvatarLeader" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/SyndicateAllies/RedVeilAllyAvatarA" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/SyndicateAllies/HexisAllyAvatarA" + }, + { + "assists": 1, + "deaths": 4, + "type": "/Lotus/Types/Friendly/Pets/KubrowPetAvatar" + }, + { + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Prototypes/Avatars/AmalgamPrototypeCarrusPilotAvatar" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamMoaAvatarLeader" + }, + { + "assists": 4, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/WeaveMutalist/WeaveMutalistAvatar" + }, + { + "assists": 11, + "deaths": 32, + "type": "/Lotus/Types/Enemies/KuvaLich/KuvaLichAAvatar" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamOspreyAvatarLeader" + }, + { + "assists": 6, + "type": "/Lotus/Types/Enemies/Grineer/Disruption/Avatars/DisruptionMinigunBombardFortressAvatar" + }, + { + "assists": 4, + "type": "/Lotus/Types/Enemies/Grineer/Disruption/Avatars/DisruptionNoxFortressAvatar" + }, + { + "assists": 1, + "deaths": 7, + "type": "/Lotus/Types/Enemies/Corpus/QuadRobot/QuadRobotAvatarNEW" + }, + { + "assists": 4, + "type": "/Lotus/Types/Enemies/Grineer/Thumper/ThumperLargeAvatar" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasDeployableFlyingSpacemanAvatarLeader" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Splitter/SplitterSplitAvatarVIP" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Splitter/SplitterTopSplitAvatarVIP" + }, + { + "assists": 4, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/JuggernautMicroPlanetCasualEximusAvatar" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasRifleSpacemanAvatarLeader" + }, + { + "assists": 1, + "deaths": 1, + "type": "/Lotus/Types/Game/CrewShip/CorpusDestroyer/CorpusDestroyerAvatarVariantB" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/SpaceFighterDredgerEliteAvatar" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantBansheeAvatar" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantNidusAvatar" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantNyxAvatar" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantMagicianAvatar" + }, + { + "assists": 3, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedPredator/RareInfestedPredatorAvatar" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerEidolonAlarmDroneAvatar" + }, + { + "assists": 3, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressShieldLancerAvatarLeader" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerWardenGrineerHeavyAvatar" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/NarmerSpecOpsArachnoidAvatar" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressFemaleGrineerAvatarLeader" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/Duviri/Mounted/DuviriMountedDaxAvatar" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/Duviri/Dax/Avatars/DuviriAshigaruAvatarLeader" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/Duviri/Dax/Avatars/DuviriDaxAvatarLeader" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Duviri/PaxDuviricus/BetrayalShade/PaxBetrayalShadeAvatar" + }, + { + "assists": 1, + "deaths": 2, + "type": "/Lotus/Types/Enemies/Duviri/PaxDuviricus/PaxDuviricusDungeonEncounterAvatar" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/ManInTheWall/NecramechVoidRig/NecramechVoidRigLeaderAvatar" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/GreyStrain/BoneBlade/BoneBladeEximusAvatar" + }, + { + "assists": 11, + "type": "/Lotus/Types/Enemies/ManInTheWall/Triangle/MITWSupportTriangleLeaderAvatar" + }, + { + "assists": 6, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerPistonSawmanAvatarLeader" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerBaseFlyingSpacemanAvatar" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerNullifyFlyingSpacemanAvatar" + }, + { + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerSniperFlyingSpacemanAvatar" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerAmalgamCorpusOverrideAvatarLeader" + }, + { + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Prototypes/Avatars/AmalgamPrototypeCarrusAvatar" + }, + { + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Prototypes/Avatars/AmalgamPrototypeMeleeAvatar" + }, + { + "assists": 6, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Prototypes/Avatars/AmalgamPrototypeMoaAvatar" + }, + { + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Prototypes/Avatars/AmalgamPrototypeSatyrAvatar" + }, + { + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerMineDroneAvatar" + }, + { + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShieldDroneAvatarLeader" + }, + { + "assists": 9, + "type": "/Lotus/Types/Enemies/ManInTheWall/RepairDrone/RepairDroneAvatar" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpTechEngineerAvatar" + }, + { + "assists": 4, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerFlameLancerAvatar" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerRocketBombardAvatarLeader" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Duviri/Dax/Avatars/DuviriDaxRangedAvatarLeader" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantBrawlerAvatar" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantPirateAvatar" + }, + { + "assists": 4, + "deaths": 3, + "type": "/Lotus/Types/Enemies/Acolytes/RogueAcolyteAvatar" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerAmalgamCorpusSniperAvatar" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerAmalgamMoaSatyrAvatar" + }, + { + "assists": 3, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerDeployableSpacemanWardenAvatar" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerVacDroneAvatar" + }, + { + "assists": 4, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerAmalgamCarrusAvatarLeader" + }, + { + "assists": 8, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShipMoaDiscAvatar" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShockwaveBipedAvatarLeader" + }, + { + "assists": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShipMoaDualCannonAvatar" + }, + { + "assists": 2, + "type": "/Lotus/Types/Enemies/ManInTheWall/TreasureBox/MITWTreasureBoxCloneLeaderAvatar" + }, + { + "deaths": 25, + "type": "/Lotus/Types/Enemies/Stalker/SentientStalkerAvatar" + }, + { + "deaths": 2, + "type": "/Lotus/Types/Enemies/CaptureTargets/CaptureTargetGrineerPyroAvatar" + }, + { + "deaths": 2, + "type": "/Lotus/Types/Enemies/CaptureTargets/CaptureTargetCorpusNullifierAvatar" + }, + { + "deaths": 6, + "type": "/Lotus/Types/Enemies/CaptureTargets/CaptureTargetCorpusMrFreezeAvatar" + }, + { + "deaths": 4, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Quadrupeds/JuggernautTacAlertAvatar" + }, + { + "deaths": 2, + "type": "/Lotus/Types/Player/SpaceBattle/SpaceTennoAvatar" + }, + { + "deaths": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/GrineerPursuitSpaceShipAvatar" + }, + { + "deaths": 1, + "type": "/Lotus/Types/Enemies/Stalker/StalkerAvatar" + }, + { + "deaths": 21, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/GrineerDropship/DropshipTurret/GrineerDropshipTurretAvatar" + }, + { + "deaths": 2, + "type": "/Lotus/Types/Enemies/TennoReplicants/TennoReplicantAvatar" + }, + { + "deaths": 1, + "type": "/Lotus/Types/Enemies/Corpus/Vehicle/LoboWheelCarDropshipAvatar" + }, + { + "deaths": 11, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Arachnoid/ArachnoidCamperTerraTurretAvatar" + }, + { + "deaths": 19, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Arachnoid/ArachnoidCamperTurretAvatar" + }, + { + "deaths": 3, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Arachnoid/ArachnoidCamperAvatar" + }, + { + "deaths": 9, + "type": "/Lotus/Types/Game/CrewShip/GrineerDestroyer/GrineerDestroyerAvatar" + }, + { + "deaths": 1, + "type": "/Lotus/Types/Enemies/CaptureTargets/CaptureTargetGrineerPistolAvatar" + }, + { + "deaths": 1, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrineerMissilePlatformBottomTurretAvatar" + }, + { + "deaths": 5, + "type": "/Lotus/Types/Game/CrewShip/GrineerDestroyer/DeepSpace/GrineerDSDestroyerShieldAvatar" + }, + { + "deaths": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/TennoReplicantChromaAvatarDerelict" + }, + { + "deaths": 3, + "type": "/Lotus/Types/Game/CrewShip/CorpusDestroyer/CorpusDestroyerAvatarVariantD" + }, + { + "deaths": 2, + "type": "/Lotus/Types/Game/CrewShip/CorpusDestroyer/CorpusDestroyerAvatarVariantC" + }, + { + "deaths": 1, + "type": "/Lotus/Types/Friendly/Rescue/RescueAvatar" + }, + { + "deaths": 1, + "type": "/Lotus/Types/Friendly/RailJack/RJCrewAvatar" + }, + { + "deaths": 5, + "type": "/Lotus/Types/Enemies/Narmer/Deacon/NarmerDeaconPatrolAvatar" + }, + { + "deaths": 1, + "type": "/Lotus/Types/Enemies/NewWar/Archons/ArchonNiraChaseAvatar" + }, + { + "deaths": 3, + "type": "/Lotus/Types/Friendly/PlayerControllable/ControllableDrifterTennoAvatar" + }, + { + "deaths": 1, + "type": "/Lotus/Types/Enemies/NewWar/Archons/ArchonBorealAvatar" + }, + { + "deaths": 1, + "type": "/Lotus/Types/Enemies/NewWar/Archons/ArchonAmarAvatarPNW" + }, + { + "deaths": 3, + "type": "/Lotus/Types/Friendly/PlayerControllable/ControllableDuviriDrifterTennoAvatar" + }, + { + "deaths": 1, + "type": "/Lotus/Types/Enemies/NewWar/Archons/ArchonBorealAvatarPNW" + }, + { + "deaths": 1, + "type": "/Lotus/Types/Enemies/Duviri/Dragon/Flying/DragonVehicleAvatar" + } + ], + "MeleeKills": 506268, + "Abilities": [ + { + "used": 673, + "type": "/Lotus/Powersuits/PowersuitAbilities/SlashDashNewAbility" + }, + { + "used": 504, + "type": "/Lotus/Powersuits/PowersuitAbilities/RadialBlindAbility" + }, + { + "used": 362, + "type": "/Lotus/Powersuits/PowersuitAbilities/RadialJavelinAbility" + }, + { + "used": 451, + "type": "/Lotus/Powersuits/PowersuitAbilities/SwordOfDoomAbility" + }, + { + "used": 97, + "type": "/Lotus/Powersuits/Archwing/ArchwingAbilities/FireShieldAbility" + }, + { + "used": 76, + "type": "/Lotus/Powersuits/Archwing/ArchwingAbilities/FlareCounterMeasureAbility" + }, + { + "used": 274, + "type": "/Lotus/Powersuits/Archwing/ArchwingAbilities/MissileVolleyAbility" + }, + { + "used": 17126, + "type": "/Lotus/Powersuits/PowersuitAbilities/RhinoChargeAbility" + }, + { + "used": 10285, + "type": "/Lotus/Powersuits/PowersuitAbilities/IronSkinAbility" + }, + { + "used": 5212, + "type": "/Lotus/Powersuits/PowersuitAbilities/RhinoRoarAbility" + }, + { + "used": 18233, + "type": "/Lotus/Powersuits/PowersuitAbilities/RhinoStompAbility" + }, + { + "used": 4408, + "type": "/Lotus/Powersuits/PowersuitAbilities/OperatorPowerAbility" + }, + { + "used": 214, + "type": "/Lotus/Powersuits/PowersuitAbilities/SmiteAbility" + }, + { + "used": 201, + "type": "/Lotus/Powersuits/Archwing/ArchwingAbilities/EMPPushAbility" + }, + { + "used": 615, + "type": "/Lotus/Powersuits/PowersuitAbilities/GrappleHookAbility" + }, + { + "used": 239, + "type": "/Lotus/Powersuits/PowersuitAbilities/BerserkerScreamAbility" + }, + { + "used": 373, + "type": "/Lotus/Powersuits/PowersuitAbilities/ShieldBashAbility" + }, + { + "used": 1564, + "type": "/Lotus/Powersuits/PowersuitAbilities/LastStandAbility" + }, + { + "used": 3353, + "type": "/Lotus/Powersuits/PowersuitAbilities/ShockAbility" + }, + { + "used": 2767, + "type": "/Lotus/Powersuits/PowersuitAbilities/SpeedAbility" + }, + { + "used": 390, + "type": "/Lotus/Powersuits/PowersuitAbilities/ShieldAbility" + }, + { + "used": 3074, + "type": "/Lotus/Powersuits/PowersuitAbilities/OverLoadAbility" + }, + { + "used": 358, + "type": "/Lotus/Powersuits/PowersuitAbilities/DragonBreathAbility" + }, + { + "used": 8097, + "type": "/Lotus/Powersuits/PowersuitAbilities/DragonLuckAbility" + }, + { + "used": 10527, + "type": "/Lotus/Powersuits/PowersuitAbilities/DragonScalesAbility" + }, + { + "used": 1068, + "type": "/Lotus/Powersuits/PowersuitAbilities/DragonPeltAbility" + }, + { + "used": 2223, + "type": "/Lotus/Powersuits/Archwing/ArchwingAbilities/BlinkAbility" + }, + { + "used": 1220, + "type": "/Lotus/Powersuits/Archwing/ArchwingAbilities/CloakingAbility" + }, + { + "used": 3319, + "type": "/Lotus/Powersuits/Archwing/ArchwingAbilities/GravitationalInstabilityAbility" + }, + { + "used": 711, + "type": "/Lotus/Powersuits/PowersuitAbilities/SearchTheDeadAbility" + }, + { + "used": 338, + "type": "/Lotus/Powersuits/PowersuitAbilities/SoulPunchAbility" + }, + { + "used": 515, + "type": "/Lotus/Powersuits/PowersuitAbilities/TerrorTotemAbility" + }, + { + "used": 4303, + "type": "/Lotus/Powersuits/PowersuitAbilities/CloneTheDeadAbility" + }, + { + "used": 76, + "type": "/Lotus/Powersuits/PowersuitAbilities/DecoyAbility" + }, + { + "used": 1007, + "type": "/Lotus/Powersuits/PowersuitAbilities/InvisibilityAbility" + }, + { + "used": 78, + "type": "/Lotus/Powersuits/PowersuitAbilities/SwitchTeleportAbility" + }, + { + "used": 152, + "type": "/Lotus/Powersuits/PowersuitAbilities/RadialDisarmAbility" + }, + { + "used": 984, + "type": "/Lotus/Powersuits/Archwing/ArchwingAbilities/DistractionDronesAbility" + }, + { + "used": 170, + "type": "/Lotus/Powersuits/PowersuitAbilities/SandmanBlastAbility" + }, + { + "used": 297, + "type": "/Lotus/Powersuits/PowersuitAbilities/SandmanDevourAbility" + }, + { + "used": 1545, + "type": "/Lotus/Powersuits/PowersuitAbilities/SandmanStormAbility" + }, + { + "used": 181, + "type": "/Lotus/Powersuits/PowersuitAbilities/SandmanSwarmAbility" + }, + { + "used": 1608, + "type": "/Lotus/Powersuits/PowersuitAbilities/IceShieldAbility" + }, + { + "used": 1050, + "type": "/Lotus/Powersuits/PowersuitAbilities/IceSpikeAbility" + }, + { + "used": 489, + "type": "/Lotus/Powersuits/PowersuitAbilities/IcicleAbility" + }, + { + "used": 1737, + "type": "/Lotus/Powersuits/PowersuitAbilities/AvalancheAbility" + }, + { + "used": 1371, + "type": "/Lotus/Powersuits/PowersuitAbilities/BulletAttractorAbility" + }, + { + "used": 327, + "type": "/Lotus/Powersuits/PowersuitAbilities/PullAbility" + }, + { + "used": 4089, + "type": "/Lotus/Powersuits/PowersuitAbilities/ShieldRegenAbility" + }, + { + "used": 3496, + "type": "/Lotus/Powersuits/PowersuitAbilities/EnergyVampireAbility" + }, + { + "used": 65, + "type": "/Lotus/Powersuits/PowersuitAbilities/WellOfLifeAbility" + }, + { + "used": 406, + "type": "/Lotus/Powersuits/PowersuitAbilities/LinkAbility" + }, + { + "used": 2488, + "type": "/Lotus/Powersuits/PowersuitAbilities/BlessingAbility" + }, + { + "used": 96, + "type": "/Lotus/Powersuits/PowersuitAbilities/MonkeyPokeAbility" + }, + { + "used": 8179, + "type": "/Lotus/Powersuits/PowersuitAbilities/BanishAbility" + }, + { + "used": 9488, + "type": "/Lotus/Powersuits/PowersuitAbilities/RiftWalkAbility" + }, + { + "used": 3762, + "type": "/Lotus/Powersuits/PowersuitAbilities/VolatileAbility" + }, + { + "used": 7171, + "type": "/Lotus/Powersuits/PowersuitAbilities/TearInSpaceAbility" + }, + { + "used": 649, + "type": "/Lotus/Powersuits/PowersuitAbilities/HarlequinObjectChangeAbility" + }, + { + "used": 522, + "type": "/Lotus/Powersuits/PowersuitAbilities/IllusionAbility" + }, + { + "used": 732, + "type": "/Lotus/Powersuits/PowersuitAbilities/CrushAbility" + }, + { + "used": 1, + "type": "/Lotus/Powersuits/PowersuitAbilities/OperatorDefenseAbility" + }, + { + "used": 205, + "type": "/Lotus/Powersuits/PowersuitAbilities/NezhaRingAbility" + }, + { + "used": 72, + "type": "/Lotus/Powersuits/PowersuitAbilities/NezhaSashAbility" + }, + { + "used": 104, + "type": "/Lotus/Powersuits/PowersuitAbilities/NezhaTrailAbility" + }, + { + "used": 69, + "type": "/Lotus/Powersuits/PowersuitAbilities/NezhaSpearAbility" + }, + { + "used": 269, + "type": "/Lotus/Powersuits/PowersuitAbilities/MonkeyDeathAbility" + }, + { + "used": 253, + "type": "/Lotus/Powersuits/PowersuitAbilities/MonkeyCloudAbility" + }, + { + "used": 71, + "type": "/Lotus/Powersuits/PowersuitAbilities/MonkeyStaffAbility" + }, + { + "used": 443, + "type": "/Lotus/Powersuits/PowersuitAbilities/GlaiveAbility" + }, + { + "used": 1773, + "type": "/Lotus/Powersuits/PowersuitAbilities/SmokeScreenAbility" + }, + { + "used": 846, + "type": "/Lotus/Powersuits/PowersuitAbilities/TeleportToAbility" + }, + { + "used": 17593, + "type": "/Lotus/Powersuits/PowersuitAbilities/NinjaStormAbility" + }, + { + "used": 91, + "type": "/Lotus/Powersuits/PowersuitAbilities/FairyDustAbility" + }, + { + "used": 70, + "type": "/Lotus/Powersuits/PowersuitAbilities/FairyLightAbility" + }, + { + "used": 196, + "type": "/Lotus/Powersuits/PowersuitAbilities/FairySoulAbility" + }, + { + "used": 293, + "type": "/Lotus/Powersuits/PowersuitAbilities/FairyFlightAbility" + }, + { + "used": 109, + "type": "/Lotus/Powersuits/PowersuitAbilities/MindControlAbility" + }, + { + "used": 542, + "type": "/Lotus/Powersuits/PowersuitAbilities/ChaosAbility" + }, + { + "used": 188, + "type": "/Lotus/Powersuits/PowersuitAbilities/DaggerAbility" + }, + { + "used": 340, + "type": "/Lotus/Powersuits/PowersuitAbilities/SelfBulletAttractorAbility" + }, + { + "used": 63, + "type": "/Lotus/Powersuits/PowersuitAbilities/RangerControlAbility" + }, + { + "used": 579, + "type": "/Lotus/Powersuits/PowersuitAbilities/RangerQuiverAbility" + }, + { + "used": 742, + "type": "/Lotus/Powersuits/PowersuitAbilities/RangerStealAbility" + }, + { + "used": 39, + "type": "/Lotus/Powersuits/PowersuitAbilities/RangerBowAbility" + }, + { + "used": 171, + "type": "/Lotus/Powersuits/Archwing/ArchwingAbilities/TnTAbility" + }, + { + "used": 321, + "type": "/Lotus/Powersuits/Archwing/ArchwingAbilities/ExhaustTrailAbility" + }, + { + "used": 1061, + "type": "/Lotus/Powersuits/Archwing/ArchwingAbilities/ArtilleryBarrageAbility" + }, + { + "used": 533, + "type": "/Lotus/Powersuits/PowersuitAbilities/LightAbility" + }, + { + "used": 342, + "type": "/Lotus/Powersuits/PowersuitAbilities/Prism" + }, + { + "used": 1090, + "type": "/Lotus/Powersuits/Archwing/ArchwingAbilities/BigBoyAbility" + }, + { + "used": 97, + "type": "/Lotus/Powersuits/PowersuitAbilities/PushAbility" + }, + { + "used": 242, + "type": "/Lotus/Powersuits/PowersuitAbilities/SilenceAbility" + }, + { + "used": 219, + "type": "/Lotus/Powersuits/PowersuitAbilities/SonarAbility" + }, + { + "used": 435, + "type": "/Lotus/Powersuits/PowersuitAbilities/SonicEarthQuakeAbility" + }, + { + "used": 1903, + "type": "/Lotus/Powersuits/PowersuitAbilities/ExplosiveDissolveAbility" + }, + { + "used": 13567, + "type": "/Lotus/Powersuits/PowersuitAbilities/PoisonAbility" + }, + { + "used": 1972, + "type": "/Lotus/Powersuits/PowersuitAbilities/ShedAbility" + }, + { + "used": 702, + "type": "/Lotus/Powersuits/PowersuitAbilities/WeaponPoisonAbility" + }, + { + "used": 150, + "type": "/Lotus/Powersuits/PowersuitAbilities/BallisticBatteryAbility" + }, + { + "used": 680, + "type": "/Lotus/Powersuits/PowersuitAbilities/RicochetArmorAbility" + }, + { + "used": 599, + "type": "/Lotus/Powersuits/PowersuitAbilities/RussianRouletteAbility" + }, + { + "used": 957, + "type": "/Lotus/Powersuits/PowersuitAbilities/GunFuAbility" + }, + { + "used": 378, + "type": "/Lotus/Powersuits/PowersuitAbilities/NullStarAbility" + }, + { + "used": 469, + "type": "/Lotus/Powersuits/PowersuitAbilities/AntiMatterDrop" + }, + { + "used": 683, + "type": "/Lotus/Powersuits/PowersuitAbilities/WormHoleAbility" + }, + { + "used": 3394, + "type": "/Lotus/Powersuits/PowersuitAbilities/MolecularPrimeAbility" + }, + { + "used": 532, + "type": "/Lotus/Powersuits/PowersuitAbilities/ZapTrapAbility" + }, + { + "used": 1309, + "type": "/Lotus/Powersuits/PowersuitAbilities/LevTrapAbility" + }, + { + "used": 241, + "type": "/Lotus/Powersuits/PowersuitAbilities/TrapperMultinadeAbility" + }, + { + "used": 721, + "type": "/Lotus/Powersuits/PowersuitAbilities/BlackHoleTrapAbility" + }, + { + "used": 13696, + "type": "/Lotus/Powersuits/PowersuitAbilities/OperatorTransferenceAbility" + }, + { + "used": 68, + "type": "/Lotus/Powersuits/PowersuitAbilities/BrawlerBarrierAbility" + }, + { + "used": 401, + "type": "/Lotus/Powersuits/PowersuitAbilities/BrawlerGazeAbility" + }, + { + "used": 1647, + "type": "/Lotus/Powersuits/PowersuitAbilities/BrawlerPunchAbility" + }, + { + "used": 176, + "type": "/Lotus/Powersuits/PowersuitAbilities/BrawlerSummonAbility" + }, + { + "used": 100, + "type": "/Lotus/Powersuits/Archwing/ArchwingAbilities/SupportDronesAbility" + }, + { + "used": 244, + "type": "/Lotus/Powersuits/Archwing/ArchwingAbilities/SupportAnchorsAbility" + }, + { + "used": 388, + "type": "/Lotus/Powersuits/PowersuitAbilities/YinYangSwitchAbility" + }, + { + "used": 590, + "type": "/Lotus/Powersuits/PowersuitAbilities/YinYangTargetAbility" + }, + { + "used": 384, + "type": "/Lotus/Powersuits/PowersuitAbilities/YinYangAuraAbility" + }, + { + "used": 1031, + "type": "/Lotus/Powersuits/PowersuitAbilities/YinYangBurstAbility" + }, + { + "used": 1061, + "type": "/Lotus/Powersuits/PowersuitAbilities/TailWindAbility" + }, + { + "used": 83, + "type": "/Lotus/Powersuits/PowersuitAbilities/DiveBombAbility" + }, + { + "used": 392, + "type": "/Lotus/Powersuits/PowersuitAbilities/TurbulenceAbility" + }, + { + "used": 527, + "type": "/Lotus/Powersuits/PowersuitAbilities/TornadoAbility" + }, + { + "used": 203, + "type": "/Lotus/Powersuits/PowersuitAbilities/FireBallAbility" + }, + { + "used": 172, + "type": "/Lotus/Powersuits/PowersuitAbilities/DrenchTwoAbility" + }, + { + "used": 585, + "type": "/Lotus/Powersuits/PowersuitAbilities/FireBlastAbility" + }, + { + "used": 299, + "type": "/Lotus/Powersuits/PowersuitAbilities/WorldOnFireAbility" + }, + { + "used": 32181, + "type": "/Lotus/Powersuits/PowersuitAbilities/InfestRuptureAbility" + }, + { + "used": 5529, + "type": "/Lotus/Powersuits/PowersuitAbilities/InfestTendrilsAbility" + }, + { + "used": 1435, + "type": "/Lotus/Powersuits/PowersuitAbilities/InfestLinkAbility" + }, + { + "used": 2052, + "type": "/Lotus/Powersuits/PowersuitAbilities/InfestPodsAbility" + }, + { + "used": 67, + "type": "/Lotus/Powersuits/Archwing/ArchwingAbilities/SupportWardAbility" + }, + { + "used": 14, + "type": "/Lotus/Powersuits/PowersuitAbilities/OperatorTacticAbility" + }, + { + "used": 501, + "type": "/Lotus/Powersuits/PowersuitAbilities/CannonBarrageAbility" + }, + { + "used": 303, + "type": "/Lotus/Powersuits/PowersuitAbilities/LiquifyAbility" + }, + { + "used": 532, + "type": "/Lotus/Powersuits/PowersuitAbilities/TidalWaveAbility" + }, + { + "used": 1340, + "type": "/Lotus/Powersuits/PowersuitAbilities/KrakenAbility" + }, + { + "used": 113, + "type": "/Lotus/Powersuits/Archwing/ArchwingAbilities/SupportEnergyAbility" + }, + { + "used": 3383, + "type": "/Lotus/Powersuits/PowersuitAbilities/MagicianStasisAbility" + }, + { + "used": 269, + "type": "/Lotus/Powersuits/PowersuitAbilities/BardCharmAbility" + }, + { + "used": 315, + "type": "/Lotus/Powersuits/PowersuitAbilities/BardMusicAbility" + }, + { + "used": 245, + "type": "/Lotus/Powersuits/PowersuitAbilities/BardJamAbility" + }, + { + "used": 94, + "type": "/Lotus/Powersuits/PowersuitAbilities/BardAmplifyAbility" + }, + { + "used": 101, + "type": "/Lotus/Powersuits/PowersuitAbilities/RegenerationAbility" + }, + { + "used": 238, + "type": "/Lotus/Powersuits/PowersuitAbilities/StairwayToHeavenAbility" + }, + { + "used": 1269, + "type": "/Lotus/Powersuits/PowersuitAbilities/ReckoningAbility" + }, + { + "used": 4, + "type": "/Lotus/Powersuits/PowersuitAbilities/OperatorRelayTransferenceAbility" + }, + { + "used": 4201, + "type": "/Lotus/Powersuits/PowersuitAbilities/PriestCondemnAbility" + }, + { + "used": 295, + "type": "/Lotus/Powersuits/PowersuitAbilities/PriestPenanceAbility" + }, + { + "used": 460, + "type": "/Lotus/Powersuits/PowersuitAbilities/PriestRavageAbility" + }, + { + "used": 897, + "type": "/Lotus/Powersuits/PowersuitAbilities/PriestPactAbility" + }, + { + "used": 83, + "type": "/Lotus/Powersuits/PowersuitAbilities/GlassShankAbility" + }, + { + "used": 94, + "type": "/Lotus/Powersuits/PowersuitAbilities/GlassShatterAbility" + }, + { + "used": 55, + "type": "/Lotus/Powersuits/PowersuitAbilities/GlassFragmentAbility" + }, + { + "used": 78, + "type": "/Lotus/Powersuits/PowersuitAbilities/GlassRingAbility" + }, + { + "used": 224, + "type": "/Lotus/Powersuits/PowersuitAbilities/TenguBurstAbility" + }, + { + "used": 839, + "type": "/Lotus/Powersuits/PowersuitAbilities/KhoraCrackAbility" + }, + { + "used": 70, + "type": "/Lotus/Powersuits/PowersuitAbilities/KhoraKavatAbility" + }, + { + "used": 125, + "type": "/Lotus/Powersuits/PowersuitAbilities/KhoraTwirlAbility" + }, + { + "used": 194, + "type": "/Lotus/Powersuits/PowersuitAbilities/KhoraCageAbility" + }, + { + "used": 159, + "type": "/Lotus/Powersuits/PowersuitAbilities/UmbraRadialJavelinAbility" + }, + { + "used": 56, + "type": "/Lotus/Powersuits/PowersuitAbilities/UmbraRadialRoarAbility" + }, + { + "used": 159, + "type": "/Lotus/Powersuits/PowersuitAbilities/UmbraSlashDashNewAbility" + }, + { + "used": 50, + "type": "/Lotus/Powersuits/PowersuitAbilities/UmbraSwordOfDoomAbility" + }, + { + "used": 167, + "type": "/Lotus/Powersuits/PowersuitAbilities/RevenantAfflictionAbility" + }, + { + "used": 685, + "type": "/Lotus/Powersuits/PowersuitAbilities/RevenantMarkAbility" + }, + { + "used": 320, + "type": "/Lotus/Powersuits/PowersuitAbilities/RevenantSentientAbility" + }, + { + "used": 171, + "type": "/Lotus/Powersuits/PowersuitAbilities/RevenantRebornAbility" + }, + { + "used": 91, + "type": "/Lotus/Powersuits/PowersuitAbilities/WispHarnessAbility" + }, + { + "used": 94, + "type": "/Lotus/Powersuits/PowersuitAbilities/WispLightAbility" + }, + { + "used": 53, + "type": "/Lotus/Powersuits/PowersuitAbilities/WispReservoirAbility" + }, + { + "used": 53, + "type": "/Lotus/Powersuits/PowersuitAbilities/WispSunAbility" + }, + { + "used": 1780, + "type": "/Lotus/Powersuits/PowersuitAbilities/RunnerPlatingAbility" + }, + { + "used": 4723, + "type": "/Lotus/Powersuits/PowersuitAbilities/RunnerRushAbility" + }, + { + "used": 792, + "type": "/Lotus/Powersuits/PowersuitAbilities/RunnerRedlineAbility" + }, + { + "used": 3714, + "type": "/Lotus/Powersuits/PowersuitAbilities/RunnerTransferAbility" + }, + { + "used": 4, + "type": "/Lotus/Powersuits/Archwing/ArchwingAbilities/GrappleHookAbility" + }, + { + "used": 26, + "type": "/Lotus/Powersuits/PowersuitAbilities/EmberImmolationAbility" + }, + { + "used": 80, + "type": "/Lotus/Powersuits/PowersuitAbilities/EmberInfernoAbility" + }, + { + "used": 69, + "type": "/Lotus/Powersuits/PowersuitAbilities/MonkeyDeathNewAbility" + }, + { + "used": 28, + "type": "/Lotus/Powersuits/PowersuitAbilities/MonkeyHairAbility" + }, + { + "used": 43, + "type": "/Lotus/Powersuits/PowersuitAbilities/TrapperStrikeAbility" + }, + { + "used": 25, + "type": "/Lotus/Powersuits/PowersuitAbilities/DevourerBowlAbility" + }, + { + "used": 93, + "type": "/Lotus/Powersuits/PowersuitAbilities/DevourerConsumeAbility" + }, + { + "used": 451, + "type": "/Lotus/Powersuits/PowersuitAbilities/DevourerDevourAbility" + }, + { + "used": 81, + "type": "/Lotus/Powersuits/PowersuitAbilities/DevourerRegurgitateAbility" + }, + { + "used": 41, + "type": "/Lotus/Powersuits/PowersuitAbilities/GarudaBloodAbility" + }, + { + "used": 92, + "type": "/Lotus/Powersuits/PowersuitAbilities/GarudaShieldAbility" + }, + { + "used": 86, + "type": "/Lotus/Powersuits/PowersuitAbilities/GarudaSiphonAbility" + }, + { + "used": 45, + "type": "/Lotus/Powersuits/PowersuitAbilities/GarudaUnstoppableAbility" + }, + { + "used": 132, + "type": "/Lotus/Powersuits/PowersuitAbilities/IronFrameAuraAbility" + }, + { + "used": 61, + "type": "/Lotus/Powersuits/PowersuitAbilities/IronFrameBlastAbility" + }, + { + "used": 1223, + "type": "/Lotus/Powersuits/PowersuitAbilities/IronFrameStripAbility" + }, + { + "used": 112, + "type": "/Lotus/Powersuits/PowersuitAbilities/IronFrameEruptionAbility" + }, + { + "used": 604, + "type": "/Lotus/Powersuits/PowersuitAbilities/EntratiMechMinefieldAbility" + }, + { + "used": 69, + "type": "/Lotus/Powersuits/PowersuitAbilities/EntratiMechOilGrenadeAbility" + }, + { + "used": 1711, + "type": "/Lotus/Powersuits/PowersuitAbilities/EntratiMechShockingIronAbility" + }, + { + "used": 225, + "type": "/Lotus/Powersuits/PowersuitAbilities/EntratiMechTurretModeAbility" + }, + { + "used": 40, + "type": "/Lotus/Powersuits/PowersuitAbilities/PacifistDisarmAbility" + }, + { + "used": 16, + "type": "/Lotus/Powersuits/PowersuitAbilities/PacifistDodgeAbility" + }, + { + "used": 32, + "type": "/Lotus/Powersuits/PowersuitAbilities/PacifistWaveAbility" + }, + { + "used": 7, + "type": "/Lotus/Powersuits/PowersuitAbilities/PacifistFistAbility" + }, + { + "used": 14, + "type": "/Lotus/Powersuits/PowersuitAbilities/EntratiMechGrabAbility" + }, + { + "used": 25, + "type": "/Lotus/Powersuits/PowersuitAbilities/EntratiMechRiotShieldAbility" + }, + { + "used": 6, + "type": "/Lotus/Powersuits/PowersuitAbilities/EntratiMechSwordAbility" + }, + { + "used": 68, + "type": "/Lotus/Powersuits/PowersuitAbilities/AlchemistSerpentAbility" + }, + { + "used": 98, + "type": "/Lotus/Powersuits/PowersuitAbilities/AlchemistVialAbility" + }, + { + "used": 120, + "type": "/Lotus/Powersuits/PowersuitAbilities/AlchemistDistillAbility" + }, + { + "used": 154, + "type": "/Lotus/Powersuits/PowersuitAbilities/AlchemistTransmuteAbility" + }, + { + "used": 22, + "type": "/Lotus/Powersuits/PowersuitAbilities/EntratiMechRepulseAbility" + }, + { + "used": 8, + "type": "/Lotus/Powersuits/PowersuitAbilities/EntratiMechShieldBashAbility" + }, + { + "used": 21, + "type": "/Lotus/Powersuits/PowersuitAbilities/BrokenGraspAbility" + }, + { + "used": 29, + "type": "/Lotus/Powersuits/PowersuitAbilities/BrokenRotAbility" + }, + { + "used": 3, + "type": "/Lotus/Powersuits/PowersuitAbilities/BrokenDestructAbility" + }, + { + "used": 16, + "type": "/Lotus/Powersuits/PowersuitAbilities/BrokenEmbraceAbility" + }, + { + "used": 38, + "type": "/Lotus/Types/Game/CrewShip/Ships/Abilities/CrewShipAttackAbility" + }, + { + "used": 32, + "type": "/Lotus/Types/Game/CrewShip/Ships/Abilities/CrewShipRamAbility" + }, + { + "used": 34, + "type": "/Lotus/Powersuits/PowersuitAbilities/ReaperGraspAbility" + }, + { + "used": 45, + "type": "/Lotus/Powersuits/PowersuitAbilities/ReaperHarvestAbility" + }, + { + "used": 21, + "type": "/Lotus/Powersuits/PowersuitAbilities/ReaperWailAbility" + }, + { + "used": 53, + "type": "/Lotus/Types/Game/CrewShip/Ships/Abilities/CrewShipEMPAbility" + }, + { + "used": 25, + "type": "/Lotus/Types/Game/CrewShip/Ships/Abilities/Tactical/CrewShipCloakAbility" + }, + { + "used": 4, + "type": "/Lotus/Types/Game/CrewShip/Ships/Abilities/Tactical/CrewShipStasisAbility" + }, + { + "used": 3, + "type": "/Lotus/Types/Game/CrewShip/Ships/Abilities/Tactical/CrewShipDeathBlossomAbility" + }, + { + "used": 109, + "type": "/Lotus/Powersuits/PowersuitAbilities/OdaliskBFGAbility" + }, + { + "used": 12, + "type": "/Lotus/Powersuits/PowersuitAbilities/OdaliskDispensaryAbility" + }, + { + "used": 31, + "type": "/Lotus/Powersuits/PowersuitAbilities/OdaliskFanAbility" + }, + { + "used": 25, + "type": "/Lotus/Powersuits/PowersuitAbilities/OdaliskAnchorAbility" + }, + { + "used": 24, + "type": "/Lotus/Powersuits/PowersuitAbilities/WraithGloomAbility" + }, + { + "used": 36, + "type": "/Lotus/Powersuits/PowersuitAbilities/WraithReapAbility" + }, + { + "used": 78, + "type": "/Lotus/Powersuits/PowersuitAbilities/WraithSowAbility" + }, + { + "used": 3, + "type": "/Lotus/Powersuits/PowersuitAbilities/ReaperWraithAbility" + }, + { + "used": 9, + "type": "/Lotus/Powersuits/PowersuitAbilities/WraithReaperAbility" + }, + { + "used": 7, + "type": "/Lotus/Powersuits/PowersuitAbilities/YareliBoardAbility" + }, + { + "used": 18, + "type": "/Lotus/Powersuits/PowersuitAbilities/YareliBubbleAbility" + }, + { + "used": 1, + "type": "/Lotus/Powersuits/PowersuitAbilities/YareliDisksAbility" + }, + { + "used": 1, + "type": "/Lotus/Powersuits/PowersuitAbilities/YareliSpoutAbility" + }, + { + "used": 3, + "type": "/Lotus/Types/Friendly/PlayerControllable/Abilities/ControllableGrineerCoverPlaceAbility" + }, + { + "used": 82, + "type": "/Lotus/Types/Friendly/PlayerControllable/Abilities/VesoCommandDecoyOneAbility" + }, + { + "used": 25, + "type": "/Lotus/Types/Friendly/PlayerControllable/Abilities/VesoCommandDecoyThreeAbility" + }, + { + "used": 10, + "type": "/Lotus/Types/Friendly/PlayerControllable/Abilities/VesoCommandDecoyTwoAbility" + }, + { + "used": 53, + "type": "/Lotus/Types/Friendly/PlayerControllable/Abilities/TeshinGrappleGlaiveAbility" + }, + { + "used": 16, + "type": "/Lotus/Types/Friendly/PlayerControllable/Abilities/TeshinStanceAbility" + }, + { + "used": 14, + "type": "/Lotus/Types/Friendly/PlayerControllable/Abilities/TeshinStanceThreeAbility" + }, + { + "used": 17, + "type": "/Lotus/Types/Friendly/PlayerControllable/Abilities/TeshinStanceTwoAbility" + }, + { + "used": 44, + "type": "/Lotus/Types/Friendly/PlayerControllable/Abilities/DrifterHealAbility" + }, + { + "used": 16, + "type": "/Lotus/Types/Friendly/PlayerControllable/Abilities/DrifterRadarAbility" + }, + { + "used": 16, + "type": "/Lotus/Types/Friendly/PlayerControllable/Abilities/DrifterTossAbility" + }, + { + "used": 16, + "type": "/Lotus/Powersuits/PowersuitAbilities/BlastSlowAbility" + }, + { + "used": 13, + "type": "/Lotus/Powersuits/PowersuitAbilities/EnergyFieldAbility" + }, + { + "used": 111, + "type": "/Lotus/Powersuits/PowersuitAbilities/HopliteImpaleAbility" + }, + { + "used": 49, + "type": "/Lotus/Powersuits/PowersuitAbilities/WerewolfBiteAbility" + }, + { + "used": 27, + "type": "/Lotus/Powersuits/PowersuitAbilities/WerewolfLeapAbility" + }, + { + "used": 14, + "type": "/Lotus/Powersuits/PowersuitAbilities/WerewolfShroudAbility" + }, + { + "used": 15, + "type": "/Lotus/Powersuits/PowersuitAbilities/GeodeCrystalAbility" + }, + { + "used": 69, + "type": "/Lotus/Powersuits/PowersuitAbilities/GeodeShardsAbility" + }, + { + "used": 26, + "type": "/Lotus/Powersuits/PowersuitAbilities/GeodeShellAbility" + }, + { + "used": 38, + "type": "/Lotus/Powersuits/PowersuitAbilities/GeodeGrowthsAbility" + }, + { + "used": 21, + "type": "/Lotus/Powersuits/PowersuitAbilities/HopliteArmyAbility" + }, + { + "used": 17, + "type": "/Lotus/Powersuits/PowersuitAbilities/HopliteBashAbility" + }, + { + "used": 47, + "type": "/Lotus/Powersuits/PowersuitAbilities/HopliteRallyAbility" + }, + { + "used": 28, + "type": "/Lotus/Powersuits/PowersuitAbilities/WerewolfHowlAbility" + }, + { + "used": 76, + "type": "/Lotus/Types/Friendly/PlayerControllable/Abilities/DrifterHorseAbility" + }, + { + "used": 29, + "type": "/Lotus/Types/Friendly/PlayerControllable/Abilities/DuviriDrifterHealAbility" + }, + { + "used": 22, + "type": "/Lotus/Types/Friendly/PlayerControllable/Abilities/DuviriDrifterRadarAbility" + }, + { + "used": 5, + "type": "/Lotus/Types/Friendly/PlayerControllable/Abilities/DuviriDrifterTossAbility" + }, + { + "used": 17, + "type": "/Lotus/Powersuits/PowersuitAbilities/OperatorDefenseShieldAbility" + }, + { + "used": 11, + "type": "/Lotus/Powersuits/PowersuitAbilities/OperatorSonicVortexAbility" + }, + { + "used": 1, + "type": "/Lotus/Types/Friendly/PlayerControllable/Abilities/DrifterGrappleAbility" + }, + { + "used": 1, + "type": "/Lotus/Powersuits/PowersuitAbilities/GyreOverchargedAbility" + }, + { + "used": 1, + "type": "/Lotus/Powersuits/PowersuitAbilities/GyreSphereAbility" + }, + { + "used": 8, + "type": "/Lotus/Powersuits/PowersuitAbilities/PagemasterBookAbility" + }, + { + "used": 141, + "type": "/Lotus/Powersuits/PowersuitAbilities/PagemasterDeathAbility" + }, + { + "used": 70, + "type": "/Lotus/Powersuits/PowersuitAbilities/PagemasterFinalChapterAbility" + }, + { + "used": 78, + "type": "/Lotus/Powersuits/PowersuitAbilities/PagemasterLifeAbility" + } + ], + "CiphersSolved": 6657, + "CiphersFailed": 550, + "Income": 93518842, + "TimePlayedSec": 9686695.069250716, + "CipherTime": 64297.71977720005, + "Rating": 0, + "Rank": 25, + "Deaths": 2533, + "PlayerLevel": 25, + "Missions": [ + { + "highScore": 706, + "type": "SolNode35" + }, + { + "highScore": 195987, + "type": "SolNode85" + }, + { + "highScore": 1047445, + "type": "ClanNode8" + }, + { + "highScore": 240, + "type": "/Lotus/Types/Keys/ArchwingQuest/MissionTwo" + }, + { + "highScore": 300, + "type": "/Lotus/Types/Keys/ArchwingQuest/MissionThree" + }, + { + "highScore": 220, + "type": "/Lotus/Types/Keys/ArchwingQuest/MissionFour" + }, + { + "highScore": 1607, + "type": "SolNode75" + }, + { + "highScore": 130832, + "type": "SolNode224" + }, + { + "highScore": 2782, + "type": "ClanNode1" + }, + { + "highScore": 1083, + "type": "SolNode128" + }, + { + "highScore": 1375165, + "type": "SolNode26" + }, + { + "highScore": 1047267, + "type": "SolNode107" + }, + { + "highScore": 3634, + "type": "/Lotus/Types/Keys/OrokinKeyB" + }, + { + "highScore": 130707, + "type": "SolNode16" + }, + { + "highScore": 1047140, + "type": "ClanNode2" + }, + { + "highScore": 130759, + "type": "SolNode91" + }, + { + "highScore": 1374094, + "type": "SolNode130" + }, + { + "highScore": 1241, + "type": "ClanNode9" + }, + { + "highScore": 1047258, + "type": "SolNode101" + }, + { + "highScore": 1413, + "type": "SolNode45" + }, + { + "highScore": 973, + "type": "/Lotus/Types/Keys/KubrowQuest/MissionOne" + }, + { + "highScore": 326608, + "type": "SolNode146" + }, + { + "highScore": 3036, + "type": "/Lotus/Types/Keys/DerelictSurvivalKey" + }, + { + "highScore": 1047237, + "type": "SolNode30" + }, + { + "highScore": 1702331, + "type": "SolNode125" + }, + { + "highScore": 3086, + "type": "SolNode94" + }, + { + "highScore": 2187, + "type": "SolNode100" + }, + { + "highScore": 195864, + "type": "SolNode25" + }, + { + "highScore": 1375266, + "type": "SolNode42" + }, + { + "highScore": 2133, + "type": "SolNode44" + }, + { + "highScore": 1374924, + "type": "ClanNode0" + }, + { + "highScore": 1406, + "type": "SolNode70" + }, + { + "highScore": 2682086, + "type": "/Lotus/Types/Keys/DerelictDefenseKey" + }, + { + "highScore": 1022, + "type": "SolNode78" + }, + { + "highScore": 3107, + "type": "/Lotus/Types/Keys/OrokinKeyD" + }, + { + "highScore": 2214, + "type": "SolNode6" + }, + { + "highScore": 2029059, + "type": "SolNode17" + }, + { + "highScore": 2455, + "type": "/Lotus/Types/Keys/OrokinTowerSurvivalT3Key" + }, + { + "highScore": 1374991, + "type": "ClanNode22" + }, + { + "highScore": 2718, + "type": "SolNode69" + }, + { + "highScore": 600, + "type": "/Lotus/Types/Keys/GetClemQuest/GetClemQuestKeyC" + }, + { + "highScore": 600, + "type": "/Lotus/Types/Keys/GetClemQuest/GetClemWeeklyMissionKeyB" + }, + { + "highScore": 392658, + "type": "SolNode182" + }, + { + "highScore": 3684, + "type": "SolNode187" + }, + { + "highScore": 392576, + "type": "SettlementNode4" + }, + { + "highScore": 3471, + "type": "ClanNode13" + }, + { + "highScore": 1600, + "type": "ClanNode3" + }, + { + "highScore": 392572, + "type": "SolNode90" + }, + { + "highScore": 392490, + "type": "SolNode13" + }, + { + "highScore": 486, + "type": "SettlementNode16" + }, + { + "highScore": 600, + "type": "/Lotus/Types/Keys/SentientQuest/SentientQuestMissionFour" + }, + { + "highScore": 1701519, + "type": "SolNode305" + }, + { + "highScore": 587284, + "type": "SolNode43" + }, + { + "highScore": 2683768, + "type": "/Lotus/Types/Keys/OrokinTowerKeys/OrokinTowerDefenseTier4Key" + }, + { + "highScore": 3630, + "type": "ClanNode25" + }, + { + "highScore": 392998, + "type": "ClanNode24" + }, + { + "highScore": 1374835, + "type": "/Lotus/Types/Keys/OrokinDefenseKeyB" + }, + { + "highScore": 326493, + "type": "SolNode907" + }, + { + "highScore": 195834, + "type": "/Lotus/Types/Keys/LimboQuest/LimboBeaconKey" + }, + { + "highScore": 719774, + "type": "SettlementNode10" + }, + { + "highScore": 719833, + "type": "/Lotus/Types/Keys/OrokinDefenseKeyA" + }, + { + "highScore": 1044, + "type": "/Lotus/Types/Keys/LimboQuest/LimboHelmetKey" + }, + { + "highScore": 4216, + "type": "/Lotus/Types/Keys/OrokinTowerKeys/OrokinTowerSurvivalTier4Key" + }, + { + "highScore": 2714, + "type": "SettlementNode3" + }, + { + "highScore": 600, + "type": "/Lotus/Types/Keys/GetClemQuest/GetClemWeeklyMissionKeyA" + }, + { + "highScore": 2682728, + "type": "/Lotus/Types/Keys/OrokinDefenseKeyC" + }, + { + "highScore": 1046982, + "type": "SolNode122" + }, + { + "highScore": 596, + "type": "SolNode77" + }, + { + "highScore": 2455, + "type": "ClanNode17" + }, + { + "highScore": 900, + "type": "SolNode152" + }, + { + "highScore": 848686, + "type": "/Lotus/Types/Keys/OrokinTowerKeys/OrokinTowerInterceptionTier4Key" + }, + { + "highScore": 900, + "type": "/Lotus/Types/Keys/MirageQuest/MissionTwo" + }, + { + "highScore": 130753, + "type": "SolNode165" + }, + { + "highScore": 3637, + "type": "SolNode166" + }, + { + "highScore": 1166, + "type": "/Lotus/Types/Keys/LimboQuest/LimboSystemsKey" + }, + { + "highScore": 1967, + "type": "SolNode302" + }, + { + "highScore": 325, + "type": "SolNode208" + }, + { + "highScore": 1921, + "type": "SolNode81" + }, + { + "highScore": 392664, + "type": "SolNode21" + }, + { + "highScore": 1375014, + "type": "SolNode72" + }, + { + "highScore": 900, + "type": "SolNode88" + }, + { + "highScore": 900, + "type": "SolNode53" + }, + { + "highScore": 391781, + "type": "SolNode23" + }, + { + "highScore": 130, + "type": "SolNode63" + }, + { + "highScore": 1701739, + "type": "SolNode195" + }, + { + "highScore": 326575, + "type": "SolNode172" + }, + { + "highScore": 342, + "type": "SettlementNode17" + }, + { + "highScore": 1375676, + "type": "SolNode22" + }, + { + "highScore": 1701612, + "type": "ClanNode12" + }, + { + "highScore": 391630, + "type": "SolNode185" + }, + { + "highScore": 900, + "type": "SolNode135" + }, + { + "highScore": 3354, + "type": "SolNode405" + }, + { + "highScore": 290, + "type": "SolNode113" + }, + { + "highScore": 900, + "type": "SolNode68" + }, + { + "highScore": 817, + "type": "ClanNode23" + }, + { + "highScore": 1701892, + "type": "ClanNode18" + }, + { + "highScore": 400, + "type": "ClanNode7" + }, + { + "highScore": 1702319, + "type": "SolNode149" + }, + { + "highScore": 1020, + "type": "SolNode38" + }, + { + "highScore": 900, + "type": "SolNode93" + }, + { + "highScore": 900, + "type": "SolNode173" + }, + { + "highScore": 900, + "type": "SolNode162" + }, + { + "highScore": 533, + "type": "SolNode36" + }, + { + "highScore": 1052, + "type": "SolNode209" + }, + { + "highScore": 2163, + "type": "SolNode409" + }, + { + "highScore": 900, + "type": "SolNode119" + }, + { + "highScore": 1640, + "type": "SolNode39" + }, + { + "highScore": 1020, + "type": "SolNode216" + }, + { + "highScore": 3760, + "type": "SolNode96" + }, + { + "highScore": 900, + "type": "SolNode186" + }, + { + "highScore": 720288, + "type": "ClanNode4" + }, + { + "highScore": 1028, + "type": "SolNode220" + }, + { + "highScore": 1374684, + "type": "SolNode402" + }, + { + "highScore": 1198, + "type": "ClanNode11" + }, + { + "highScore": 900, + "type": "SolNode4" + }, + { + "highScore": 900, + "type": "SolNode153" + }, + { + "highScore": 1200, + "type": "EventNode3" + }, + { + "highScore": 1319, + "type": "EventNode0" + }, + { + "highScore": 1040, + "type": "SolNode57" + }, + { + "highScore": 900, + "type": "SolNode12" + }, + { + "highScore": 900, + "type": "SettlementNode2" + }, + { + "highScore": 1443, + "type": "/Lotus/Types/Keys/LimboQuest/LimboChassisKey" + }, + { + "highScore": 900, + "type": "SolNode196" + }, + { + "highScore": 900, + "type": "SolNode215" + }, + { + "highScore": 900, + "type": "SolNode76" + }, + { + "highScore": 392956, + "type": "SolNode745" + }, + { + "highScore": 3400, + "type": "SolNode744" + }, + { + "highScore": 1028, + "type": "SolNode102" + }, + { + "highScore": 326616, + "type": "SolNode18" + }, + { + "highScore": 393001, + "type": "ClanNode15" + }, + { + "highScore": 1047497, + "type": "SolNode408" + }, + { + "highScore": 900, + "type": "SolNode31" + }, + { + "highScore": 10757, + "type": "SolNode177" + }, + { + "highScore": 1019, + "type": "SolNode2" + }, + { + "highScore": 3337882, + "type": "SolNode164" + }, + { + "highScore": 1047422, + "type": "SolNode212" + }, + { + "highScore": 900, + "type": "SolNode126" + }, + { + "highScore": 2566, + "type": "SolNode123" + }, + { + "highScore": 1702019, + "type": "SolNode46" + }, + { + "highScore": 391603, + "type": "SolNode64" + }, + { + "highScore": 900, + "type": "SolNode306" + }, + { + "highScore": 600, + "type": "SettlementNode12" + }, + { + "highScore": 195998, + "type": "SolNode211" + }, + { + "highScore": 1375002, + "type": "SettlementNode11" + }, + { + "highScore": 391927, + "type": "SolNode106" + }, + { + "highScore": 196079, + "type": "EventNode25" + }, + { + "highScore": 600, + "type": "SolNode56" + }, + { + "highScore": 541, + "type": "SolNode24" + }, + { + "highScore": 261038, + "type": "SolNode412" + }, + { + "highScore": 261396, + "type": "SolNode147" + }, + { + "highScore": 131009, + "type": "ClanNode10" + }, + { + "highScore": 392951, + "type": "ClanNode16" + }, + { + "highScore": 600, + "type": "SolNode748" + }, + { + "highScore": 600, + "type": "SolNode127" + }, + { + "highScore": 600, + "type": "SolNode20" + }, + { + "highScore": 600, + "type": "SolNode225" + }, + { + "highScore": 394, + "type": "/Lotus/Types/Keys/RaidKeys/Raid01Stage01KeyItem" + }, + { + "highScore": 1034, + "type": "/Lotus/Types/Keys/RaidKeys/Raid01Stage02KeyItem" + }, + { + "highScore": 1314, + "type": "/Lotus/Types/Keys/RaidKeys/Raid01Stage03KeyItem" + }, + { + "highScore": 600, + "type": "SolNode304" + }, + { + "highScore": 600, + "type": "SolNode301" + }, + { + "highScore": 508, + "type": "SolNode84" + }, + { + "highScore": 600, + "type": "SolNode406" + }, + { + "highScore": 600, + "type": "SolNode74" + }, + { + "highScore": 600, + "type": "SettlementNode14" + }, + { + "highScore": 600, + "type": "SolNode307" + }, + { + "highScore": 2067, + "type": "ClanNode5" + }, + { + "highScore": 600, + "type": "EventNode27" + }, + { + "highScore": 1142180, + "type": "SolNode802" + }, + { + "highScore": 589160, + "type": "SolNode801" + }, + { + "highScore": 392986, + "type": "ClanNode6" + }, + { + "highScore": 600, + "type": "SolNode140" + }, + { + "highScore": 486, + "type": "ClanNode21" + }, + { + "highScore": 338, + "type": "ClanNode19" + }, + { + "highScore": 6258, + "type": "SolNode188" + }, + { + "highScore": 365, + "type": "ClanNode14" + }, + { + "highScore": 5689, + "type": "SolNode308" + }, + { + "highScore": 600, + "type": "NightwaveDerelictSurvivalCeres" + }, + { + "highScore": 720042, + "type": "SolNode742" + }, + { + "highScore": 8, + "type": "ClanNode20" + }, + { + "highScore": 59, + "type": "Mines of Karishh" + }, + { + "highScore": 831, + "type": "SolNode226" + }, + { + "highScore": 634, + "type": "/Lotus/Types/Keys/GetClemQuest/GetClemWeeklyMissionKeyC" + }, + { + "highScore": 130676, + "type": "SolNode85_HM" + }, + { + "highScore": 392735, + "type": "SolNode26_HM" + }, + { + "highScore": 372, + "type": "SolNode123_HM" + }, + { + "highScore": 392540, + "type": "ClanNode0_HM" + }, + { + "highScore": 392475, + "type": "SolNode22_HM" + }, + { + "highScore": 340, + "type": "ClanNode1_HM" + }, + { + "highScore": 100, + "type": "SolNode101_HM" + }, + { + "highScore": 130526, + "type": "SolNode23_HM" + }, + { + "highScore": 130812, + "type": "SolNode224_HM" + }, + { + "highScore": 334, + "type": "SolNode94_HM" + }, + { + "highScore": 392668, + "type": "SolNode130_HM" + }, + { + "highScore": 4318, + "type": "SolNode118" + }, + { + "highScore": 450, + "type": "EventNode17" + }, + { + "highScore": 1174, + "type": "EventNode28" + }, + { + "highScore": 3259, + "type": "EventNode32" + }, + { + "highScore": 1922, + "type": "SolNode309" + }, + { + "highScore": 3130, + "type": "SolNode310" + }, + { + "highScore": 408, + "type": "SolNode717" + }, + { + "highScore": 0, + "type": "SolNode718" + }, + { + "highScore": 337, + "type": "SolNode711" + }, + { + "highScore": 198, + "type": "SolNode39_HM" + }, + { + "highScore": 392808, + "type": "ClanNode2_HM" + }, + { + "highScore": 416, + "type": "ClanNode3_HM" + }, + { + "highScore": 8802, + "type": "SolNode721" + }, + { + "highScore": 554, + "type": "SolNode79" + } + ], + "HealCount": 2392158, + "Scans": [ + { + "scans": 5, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionChargerAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionGruntAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionHealerAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionSniperAvatar" + }, + { + "scans": 50, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionSniperDecoyAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionTankAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionEngineerAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionBeastmasterAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionJetpackAvatar" + }, + { + "scans": 29, + "type": "/Lotus/Types/Items/Plants/NightCommonPlant" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/HeavyFemaleGrineerAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/MacheteWomanAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/ShotgunLancerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/TennoReplicants/TennoReplicantAllyAvatar" + }, + { + "scans": 21, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/LaserCannonBipedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/ShockwaveBipedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/EliteSpacemanAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/RifleSpacemanAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/MeleeSpacemanAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/Agents/DefenseAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/TennoReplicants/SyndicateAllies/SteelMeridianAllyAvatarB" + }, + { + "scans": 70, + "type": "/Lotus/Types/Items/Plants/DayCommonPlant" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/RifleLancerAvatar" + }, + { + "scans": 11, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/ShotgunLancerAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Grineer/Props/Computers/GrnPanelADeco" + }, + { + "scans": 7, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/EliteRifleLancerAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Friendly/Agents/OrokinDefenseAvatarMoving" + }, + { + "scans": 12, + "type": "/Lotus/Types/PickUps/MediumLootCrateGrnA" + }, + { + "scans": 29, + "type": "/Lotus/Types/Enemies/Sentients/Scouts/ScoutAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Characters/Sentient/Hunhow/HunhowPieces/HunhowHipsWreckageQuest" + }, + { + "scans": 31, + "type": "/Lotus/Types/Items/Plants/NightUnCommonPlant" + }, + { + "scans": 20, + "type": "/Lotus/Types/NeutralCreatures/Kubrow/KubrowAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/NeutralCreatures/Kubrow/KubrowDen" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/AncientAvatar" + }, + { + "scans": 32, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Runners/RunnerAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/TennoReplicants/TennoReplicantChromaAvatarDerelict" + }, + { + "scans": 24, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/ShotgunSpacemanAvatar" + }, + { + "scans": 19, + "type": "/Lotus/Objects/Orokin/Props/CollectibleSeriesOne" + }, + { + "scans": 190, + "type": "/Lotus/Types/NeutralCreatures/Catbrow/CatbrowAvatar" + }, + { + "scans": 32, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Runners/LeapingRunnerAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/Grineer/BrokenLight" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/EliteRifleLancerAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/PickUps/MediumLootCrateGrnB" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/Turrets/TurretAvatars/AutoTurretAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/Agents/DefenseCorePipeAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Guild/Props/Computers/PanelADeco" + }, + { + "scans": 15, + "type": "/Lotus/Types/PickUps/LootContainers/CorpusLootCrateCommon" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/DiscDroneAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/MineDroneAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/SniperSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/BeastMasterAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/CombatCatbrowAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/CombatKubrowAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/EliteRifleLancerAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/FemaleGrineerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/FlameLancerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/MacheteWomanAvatarLeader" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/PistonSawmanAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/PistonSawmanAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/ShieldLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/ShotgunLancerAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/HealingAncientAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/DiseasedAncientAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/HealingAncientAvatarLeader" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/SpawningAncientAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/ToxicAncientAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/Agents/ExcavatorAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/LevelObjects/CorpusBreakableVent" + }, + { + "scans": 12, + "type": "/Lotus/Types/PickUps/LootContainers/CorpusLootCrateUncommon" + }, + { + "scans": 23, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Quadrupeds/QuadrupedAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/LightningAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/LightningAvatarLeader" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/NoxiousCrawlerAvatar" + }, + { + "scans": 30, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/GrenadeAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedDrones/CellCarrierDroneAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedMoas/NaniteCloudBipedAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedMoas/SlowBombBipedAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedMoas/SlowBombBipedAvatarLeader" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Runners/SuicideRunnerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Vip/KelaDeThaym/KelaDeThaymAvatar" + }, + { + "scans": 13, + "type": "/Lotus/Weapons/Grineer/Emplacements/GrnEmplcmntStndng/GrineerEmplacementStanding" + }, + { + "scans": 12, + "type": "/Lotus/Types/LevelObjects/GrineerBreakableFan" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/StickyRollingDroneAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/RollingDroneAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Grineer/Forest/HeavyFemaleGrineerAvatarDesert" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/EliteRifleLancerAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/JetpackMarineAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/ManicGrineerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/ToxicAncientAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Orokin/OrokinMoaBipedAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Orokin/OrokinHealingAncientAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Orokin/OrokinHeavyFemaleAvatar" + }, + { + "scans": 22, + "type": "/Lotus/Types/Enemies/Orokin/RifleLancerAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Orokin/RifleSpacemanAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/PickUps/DerelictOrokinLootCrate" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/CaptureTargets/CaptureTargetCorpusNullifierAvatar" + }, + { + "scans": 21, + "type": "/Lotus/Types/Enemies/Orokin/OrokinShieldDroneAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Quadrupeds/JuggernautAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/CaptureTargets/CaptureTargetCorpus" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedDrones/PoisonDroneAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/ShieldDroneAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/SuperMoaBipedAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/DeployableSpacemanAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/SpawningAncientAvatarLeader" + }, + { + "scans": 30, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/CrawlerAvatar" + }, + { + "scans": 13, + "type": "/Lotus/Weapons/Grineer/Emplacements/GrnDeployableCover/GrineerDeployableCover" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/BlowtorchSawmanAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/IncendiaryBombardAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/ShieldLancerAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Grineer/GrineerAvatars/GrineerMarinePistolAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/PickUps/OrokinLootCrate" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Sentients/Troopers/SentientMeleeTrooperAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Sentients/Troopers/SentientTrooperAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/NullifySpacemanAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Friendly/Agents/EventDefenseAvatarGrineer" + }, + { + "scans": 12, + "type": "/Lotus/Weapons/Grineer/Emplacements/GrnDeployableCover/AridGrnDeployableCover" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/ShotgunLancerAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/EvisceratorLancerAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/CatMasterAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/KelaRollingDroneAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Orokin/RifleSpacemanLeaderAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Orokin/OrokinAutoTurretAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/DiscDroneAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Quadrupeds/QuadrupedAvatarLeader" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Orokin/OrokinBladeSawmanAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/FlameLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/RocketBombardAvatar" + }, + { + "scans": 13, + "type": "/Lotus/Types/Gameplay/Grineer/DoorSensorDeco" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/Agents/DefenseComputerAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Runners/LeapingRunnerAvatarLeader" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/RailgunBipedAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Orokin/OrokinMoaBipedLeaderAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Orokin/OrokinNullifySpacemanAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Orokin/OrokinRocketBombardAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/Turrets/TurretAvatars/AutoTurretHeavyAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/Agents/OrokinSabotageConsoleAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/LeechDroneAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/SuicideDroneAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/QuadRobot/MiniBoss/QuadRobotMiniBossAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/QuadRobot/MiniBoss/ShieldDroneMiniBossAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Orokin/OrokinDroneAttackAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Orokin/RifleLancerLeaderAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Orokin/OrokinShieldDroneLeaderAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Orokin/Props/OroCoverPropSphereACapADeco" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Stalker/SentientStalkerAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/Agents/OrokinDefenseAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/RollingDroneTurretAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Vip/VorTwo/VorTwoBossAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/RollingDroneAvatarLeader" + }, + { + "scans": 30, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Quadrupeds/RusherAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/AncientAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/DiseasedAncientAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedMoas/NaniteCloudBipedAvatarLeader" + }, + { + "scans": 8, + "type": "/Lotus/Types/PickUps/RareGrineerLootCrate" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Guild/Structural/CurvedGlassDeco" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/Turrets/TurretAvatars/SecurityCameraNarrowAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/ShieldDroneAvatarLeader" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/GraspingCrawlerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/RiotBipedControlAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/RiotBipedDispersionAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/EliteSpacemanAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/DeployableSpacemanAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/ShotgunSpacemanAvatarLeader" + }, + { + "scans": 7, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/LaserDiscBipedAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/LaserDiscBipedAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Drones/DroneAvatars/DroneAttackAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/VacDroneAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Guild/Structural/Vents/DestroyableVent" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/Agents/DefenseComputerCorpusAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/HeavyFemaleGrineerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/LaserCannonBipedAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/RiotBipedPreventionAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/Friendly/Agents/PayloadATVAvatar" + }, + { + "scans": 21, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/RifleLancerAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/BladeSawmanAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/ModularSpacemanAvatarWalkingTesla" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/RifleLancerAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/JetpackMarineAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/RocketBombardAvatarLeader" + }, + { + "scans": 12, + "type": "/Lotus/Objects/ExplodingBarrelFrozen" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/ModularSpacemanAvatarWalkingDetector" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/MineDroneAvatarLeader" + }, + { + "scans": 12, + "type": "/Lotus/Objects/CrpMegaExplodingBarrel" + }, + { + "scans": 1, + "type": "/Lotus/Levels/SpaceBattles/TRDefenseAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Corpus/CrewMan/JetpackMarineTwoAvatar" + }, + { + "scans": 250, + "type": "/Lotus/Types/Lore/LoreFragmentScanDeco" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/LeechDroneAvatarLeader" + }, + { + "scans": 12, + "type": "/Lotus/Objects/ExplodingBarrel" + }, + { + "scans": 12, + "type": "/Lotus/Types/Friendly/Agents/CoreDefenseAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/CrawlerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/ModularSpacemanAvatarSkatingDetector" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/ModularSpacemanAvatarSkatingLaser" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Orokin/OrokinBladeSawmanAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Orokin/OrokinHeavyFemaleLeaderAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Objects/GrnExplodingBarrel" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/ModularSpacemanAvatarSkatingShield" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/ModularSpacemanAvatarWalkingShield" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Guild/Structural/CurvedGlassInteriorDeco" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Gamemodes/DeployableSpacemanWardenAvatarLeader" + }, + { + "scans": 13, + "type": "/Lotus/Types/Restoratives/Deployables/LisetTurretAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Gamemodes/DeployableSpacemanWardenAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/RifleLancerAvatar" + }, + { + "scans": 14, + "type": "/Lotus/Objects/OrokinExplodingBarrel" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/ShockwaveBipedAvatarLeader" + }, + { + "scans": 10, + "type": "/Lotus/Types/Friendly/Agents/PayloadAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/EviseratorLancerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/DeltaProsecutorAvatarLeader" + }, + { + "scans": 11, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/GrineerMeleeStaffAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Friendly/Agents/InfestedBaitAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/GrineerAvatars/GrineerMarinePistolAvatarLeader" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Infested/Vip/InfestedGrenadeDeco" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Infested/Vip/Avatars/GolemGrenadeHeadAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Infested/Vip/Avatars/GolemGunHeadAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Quadrupeds/JuggernautAvatarBoss" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/GrineerAvatars/GrineerMarineLeaderAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/EviseratorLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/FemaleGrineerAvatarLeader" + }, + { + "scans": 10, + "type": "/Lotus/Types/Sentinels/SentinelAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/GrineerChampions/GrineerChampionHeavyAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/TennoReplicants/TennoReplicantChromaAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/ModularSpacemanAvatarSkatingTesla" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/Vip/BossBipedAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/BladeSawmanAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Friendly/Agents/DefenseComputerCorpusGasImmuneAvatar" + }, + { + "scans": 16, + "type": "/Lotus/Types/Items/Plants/ZenCobraLotusPlant" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/GrineerMarinePistolAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/BladeSawmanAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Friendly/Agents/EventForestDefenseAvatar" + }, + { + "scans": 23, + "type": "/Lotus/Types/Items/Plants/NightRarePlant" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/SpecialEvents/ForestDroneAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/CameraDroneAvatar" + }, + { + "scans": 29, + "type": "/Lotus/Types/Items/Plants/DayUnCommonPlant" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/FairyQuest/FairyQuestLokiAvatar" + }, + { + "scans": 50, + "type": "/Lotus/Types/Enemies/TennoReplicants/FairyQuest/KnaveLokiDecoyAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Objects/Tenno/Props/TitaniaCodexEntryBDeco" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/GrineerMarinePistolAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/BladeSawmanAvatar" + }, + { + "scans": 24, + "type": "/Lotus/Types/Items/Plants/GftPlantRuksClawMaturePlant" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/JetpackMarineCarrierAvatar" + }, + { + "scans": 29, + "type": "/Lotus/Types/Items/Plants/ZenPitcherPlant" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/FairyQuest/FairyQuestSarynAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/TennoReplicants/FairyQuest/MoltSuicideRunnerAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Objects/Tenno/Props/TitaniaCodexEntryCDeco" + }, + { + "scans": 172, + "type": "/Lotus/Types/Items/Plants/MossGroundCoverAPlant" + }, + { + "scans": 9, + "type": "/Lotus/Types/Game/MiningMachineObjective" + }, + { + "scans": 57, + "type": "/Lotus/Types/Items/Plants/WildGingerBPlant" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/JetpackMeleeAvatar" + }, + { + "scans": 32, + "type": "/Lotus/Types/Items/Plants/DayRarePlant" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/ModularSpacemanAvatarWalkingLaser" + }, + { + "scans": 2, + "type": "/Lotus/Types/Friendly/Agents/HiveMode/InfestedHiveAvatarA" + }, + { + "scans": 2, + "type": "/Lotus/Types/Friendly/Agents/HiveMode/InfestedHiveAvatarC" + }, + { + "scans": 8, + "type": "/Lotus/Types/PickUps/PuzzleOrokinLootCrate" + }, + { + "scans": 12, + "type": "/Lotus/Fx/Levels/Orokin/Moon/OMResidualVoidSphereIconDecoSphere" + }, + { + "scans": 12, + "type": "/Lotus/Types/Game/ButtonOrokin" + }, + { + "scans": 4, + "type": "/Lotus/Types/PickUps/RareCorpusLootCrate" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Vip/Avatars/BossLechKrilAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/JetpackMarineAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/NeutralCreatures/CreatureAvatars/SandRayAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Friendly/Agents/CoreDefenseBombAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/VacDroneAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/SuperMoaBipedAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/NullifySpacemanAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/SniperSpacemanAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Hyena/HyenaGunAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Hyena/HyenaElecAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Hyena/HyenaFireAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Orokin/OrokinNullifySpacemanAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/EvisceratorLancerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/BladeSawmanAvatarLeader" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/CarrierRifleLancerAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/SpecialEvents/SurveillanceDroneAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Desert/HeavyFemaleGrineerAvatarDesert" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/CaptureTargets/CaptureTargetGrineer" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/GrenadeAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/PickUps/ResourceContainers/AlloyPlateContainer" + }, + { + "scans": 5, + "type": "/Lotus/Types/PickUps/ResourceContainers/CircuitsContainer" + }, + { + "scans": 8, + "type": "/Lotus/Types/Friendly/Agents/EventDefenseAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/PickUps/ResourceContainers/MorphicsContainer" + }, + { + "scans": 5, + "type": "/Lotus/Types/PickUps/ResourceContainers/RubedoContainer" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/Vip/SniperBossAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/PickUps/ResourceContainers/OrokinCellContainer" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Vip/Avatars/CaptainVorBossAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/GrineerMeleeStaffAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/AladVPet/AladVPetAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Vip/AladV/AladBossAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Drones/Vip/RaptorTwoCarrierAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Drones/Vip/RaptorTwoMortarAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Corpus/Drones/Vip/RaptorTwoSwarmDroneAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/PickUps/ResourceContainers/FerriteContainer" + }, + { + "scans": 5, + "type": "/Lotus/Types/PickUps/ResourceContainers/NanoSporesContainer" + }, + { + "scans": 7, + "type": "/Lotus/Types/PickUps/ResourceContainers/SalvageContainer" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Orokin/OrokinRocketBombardAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/PickUps/ResourceContainers/ArgonCrystalContainer" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/CarrierSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/PickUps/ResourceContainers/NeuralSensorContainer" + }, + { + "scans": 6, + "type": "/Lotus/Types/PickUps/ResourceContainers/PlastidsContainer" + }, + { + "scans": 5, + "type": "/Lotus/Types/PickUps/ResourceContainers/PolymerBundleContainer" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/DeathSquad/Avatars/DeathSquadAvatarB" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/NoxiousCrawlerAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/PickUps/ResourceContainers/ControlModuleContainer" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/RailgunBipedAvatarLeader" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/Agents/OrokinMobileDefenseAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/GrineerMarinePistolAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/EliteRifleLancerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/EliteRifleLancerAvatarLeader" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/ShotgunLancerAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/ManicRocketBombardAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Weapons/Grineer/Emplacements/GrnDeployableCover/SeaLabGrnDeployableCover" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/EvisceratorLancerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/FemaleGrineerHeavyAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/FemaleGrineerHeavyAvatarLeader" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/FemaleGrineerMacheteAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/FemaleGrineerSniperAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/RifleLancerAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/BladeSawmanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/JetpackMarineAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/ShotgunLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Vip/SargasRuk/Avatars/SargasRukAvatarNew" + }, + { + "scans": 5, + "type": "/Lotus/Objects/Gameplay/OroFusexPickupDeco" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamA/CCTeamARifleAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamA/CCTeamASkateAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamA/CCTeamASkateBAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamB/CCTeamBDisruptorAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamC/CCTeamCDeceptionAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamC/CCTeamCSimplifiedHackerAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamC/CCTeamCStealthAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamC/CCTeamCMoaAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/Pets/CatbrowPetAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Objects/Gameplay/OroFusexPickupBDeco" + }, + { + "scans": 5, + "type": "/Lotus/Types/PickUps/ResourceContainers/GalliumContainer" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamA/CCTeamAZanukaAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/PickUps/ResourceContainers/NeurodesContainer" + }, + { + "scans": 12, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Ancients/PussBlobDeco" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/CameraDroneAvatarOrokin" + }, + { + "scans": 1, + "type": "/Lotus/Objects/Gameplay/OroFusexDDeco" + }, + { + "scans": 14, + "type": "/Lotus/Weapons/Grineer/Emplacements/GrnEmplcmntStndng/GrineerFortressEmplacementStanding" + }, + { + "scans": 12, + "type": "/Lotus/Weapons/Grineer/Emplacements/GrnDeployableCoverQueen/QueenGrnDeployableCover" + }, + { + "scans": 21, + "type": "/Lotus/Types/Enemies/Grineer/GfsSecurityCameraNarrowAvatar" + }, + { + "scans": 27, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressBladeSawmanAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressCombatKubrowAvatar" + }, + { + "scans": 23, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressEliteRifleLancerAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressFemaleGrineerAvatar" + }, + { + "scans": 11, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressHeavyFemaleGrineerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressIncendiaryBombardAvatar" + }, + { + "scans": 41, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressRifleLancerAvatar" + }, + { + "scans": 22, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressShieldLancerAvatar" + }, + { + "scans": 27, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressShotgunLancerAvatar" + }, + { + "scans": 13, + "type": "/Lotus/Types/PickUps/MediumLootCrateGrnFortA" + }, + { + "scans": 12, + "type": "/Lotus/Types/PickUps/MediumLootCrateGrnFortB" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/GhostTower/VoidNegationTower/VoidNegationTowerAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Vip/GrineerRoyalGuard/GrineerRoyalGuardAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Objects/Gameplay/OroFusexADeco" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Water/Grineer/Avatars/FrogLancerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Gamemodes/WardenGrineerHeavyAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Gamemodes/WardenGrineerHeavyAvatarLeader" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/GfsSecurityCameraWallMounted" + }, + { + "scans": 24, + "type": "/Lotus/Types/Enemies/Grineer/GrineerAutoTurretStaticAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressCatMasterAvatar" + }, + { + "scans": 28, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressPistonSawmanAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/MeleeSpacemanAvatarLeader" + }, + { + "scans": 12, + "type": "/Lotus/Types/LevelObjects/GrineerBreakableVent" + }, + { + "scans": 12, + "type": "/Lotus/Types/LevelObjects/GrineerLandmine" + }, + { + "scans": 13, + "type": "/Lotus/Types/Gameplay/Grineer/GrineerShrapnelMine" + }, + { + "scans": 16, + "type": "/Lotus/Objects/Grineer/Props/Computers/GrnPanelABlackDeco" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/GfsSecurityCameraNarrowAvatarTop" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressFlameLancerAvatar" + }, + { + "scans": 13, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressMacheteWomanAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressRollingDroneAvatar" + }, + { + "scans": 21, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/GrineerAutoFlameTurretAvatar" + }, + { + "scans": 21, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/GrineerAutoRocketTurretAvatar" + }, + { + "scans": 21, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/GrineerAutoTurretAvatar" + }, + { + "scans": 8, + "type": "/Lotus/Types/Friendly/Agents/DefenseComputerFortSabAvatar" + }, + { + "scans": 9, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressBeastMasterAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressGrineerChargerAvatar" + }, + { + "scans": 11, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressRocketBombardAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressSkiffAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/GhostTower/GhostAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Objects/Gameplay/OroFusexBDeco" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Vip/RoyalJester/RoyalJesterAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/Vip/Avatars/QuadrupedVIPAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/IncendiaryBombardAvatarLeader" + }, + { + "scans": 11, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressGrineerMarinePistolAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/JetpackSniperAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Objects/Gameplay/OroFusexCDeco" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Grineer/Vip/Teshin/TeshinShadowAvatar" + }, + { + "scans": 11, + "type": "/Lotus/Types/Friendly/Agents/DefenseComputerFortAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressJetpackMarineAvatar" + }, + { + "scans": 7, + "type": "/Lotus/Characters/Guild/QuadrapedPrototype/QuadrapedPrototypeDeco" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/QuadRobot/QuadRobotAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/PickUps/AmmoCrateDynamic" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/EvisceratorLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Vip/InfestedAladV/InfestedAladBossAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/EliteRifleLancerAvatarLeader" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Grineer/Vip/Hek/HekDroneAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/CameraDroneAvatarLeader" + }, + { + "scans": 4, + "type": "/Lotus/Objects/GrnSuperMegaExplodingBarrel" + }, + { + "scans": 14, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressBlowtorchSawmanAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/FemaleGrineerSniperAvatarLeader" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/GrineerWorkerAvatar" + }, + { + "scans": 11, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/GrineerWorkerAvatarB" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamB/CCTeamBHyenaAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamB/CCTeamBOspreyAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamB/CCTeamBRiotMoaAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamD/CCTeamDBusterAAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamD/CCTeamDBusterBAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamD/CCTeamDBusterCAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/CorpusChampions/TeamD/CCTeamDOspreyAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/Vip/Hek/PropDrones/PropDroneAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Acolytes/HeavyAcolyteAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Corpus/SpecialEvents/ArtificerSuicideDroneAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Acolytes/ControlAcolyteAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Acolytes/DuellistAcolyteAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Orokin/OrokinHealingAncientLeaderAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/GrineerMarinePistolAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/ShotgunLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/RifleLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/ShotgunLancerAvatarLeader" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/QuadRobot/MicroHyenaAvatar" + }, + { + "scans": 16, + "type": "/Lotus/Types/Enemies/Grineer/GrineerAvatars/GrineerMarineAvatar" + }, + { + "scans": 8, + "type": "/Lotus/Types/Friendly/Agents/DefenseCorePipeAvatarGrineer" + }, + { + "scans": 12, + "type": "/Lotus/Types/PickUps/MediumLootCrate" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Spaceman/AIWeek/RifleSpacemanAvatarLeader" + }, + { + "scans": 7, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/BipedRobotAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Objects/Gameplay/OroFusexEDeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Infested/Vip/Avatars/GolemMeleeHeadAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Infested/Vip/Avatars/GolemFullAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Infested/Vip/InfestedGrenadeStumpDeco" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/BladeSawmanAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Vip/Hek/HekBipedAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/Vip/Hek/PropDrones/StrikeDroneAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Hyena/HyenaIceAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/Drones/Vip/RaptorPackAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Corpus/Drones/Vip/RaptorTwoLaserAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/Game/Decorations/MiningMachineObjective" + }, + { + "scans": 5, + "type": "/Lotus/Types/PickUps/BaseMediumLootCrate" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Ambulas/BossAmbulasRangedAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Corpus/Dropship/CorpusDropshipAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Ambulas/AmbulasDropshipAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Ambulas/AmbulasHackingDroneAvatarB" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Ambulas/AmbulasPackAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Objects/Gameplay/OroFusexGDeco" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Forest/HeavyFemaleGrineerAvatarDesertLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/EvisceratorLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/EliteRifleLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Vip/TylRegor/TylRegorAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Water/Grineer/Avatars/SquidLancerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/SeaLabManicBombardAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/SeaLabManicGrineerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/FemaleGrineerMacheteAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/SpecialEvents/ArmoredJackal/ArmoredJackalAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Orokin/Gamemodes/CorruptedWardenAvatarLeader" + }, + { + "scans": 2, + "type": "/Lotus/Types/Gameplay/Corpus/CargoShipTractorBeamMover" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Corpus/QuadRobot/MiniBoss/TurretQuadMiniBossAvatar" + }, + { + "scans": 13, + "type": "/Lotus/Types/Enemies/Grineer/DeathSquad/Avatars/DeathSquadSentinelAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/Enemies/Infested/Vip/InfestedMaggotSpawnPodTwoStage" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/InfestedDrones/InfestedAttackDroneAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/TennoReplicants/SyndicateAllies/RedVeilEnemyAvatarA" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/ChemStrike/ChemStrikeNoxAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Quadrupeds/QuadrupedColonistAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Quadrupeds/QuadrupedColonistAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/EvisceratorLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/GrineerMarinePistolAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Desert/HeavyFemaleGrineerAvatarDesertLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/ChemStrike/ChemStrikeNoxAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Drones/DroneAvatars/DroneAttackAvatarLeader" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Hyena/HyenaPackAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/GrineerWorkerAvatarC" + }, + { + "scans": 2, + "type": "/Lotus/Types/PickUps/UltraRareGrineerLootCrate" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Forest/Avatars/GrineerMarinePistolAvatarLeader" + }, + { + "scans": 1, + "type": "/Lotus/Types/Friendly/Agents/PedestalMachineDefenseAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/PickUps/RareGrineerForestLootCrate" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/RifleLancerAvatarLeader" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/Eidolon/Resources/FruitTree" + }, + { + "scans": 5, + "type": "/Lotus/Types/Gameplay/Eidolon/Resources/GrokdrulContainer" + }, + { + "scans": 5, + "type": "/Lotus/Types/Gameplay/Eidolon/Resources/IraditeContainer" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/Eidolon/Resources/Nistlebrush" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonAutoRocketTurretAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonBladeSawmanAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonBladeSawmanAvatarLeader" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonCaptureTarget" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonFemaleGrineerAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonJetpackMarineAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonJetpackMeleeAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonRifleLancerAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonShotgunLancerAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonShotgunLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/GrineerDropship/GrineerDropshipAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/VomvalystLure/EidolonVomLureAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Sentients/Eidolon/SentientTeralystAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Sentients/Eidolon/SentientVomvalystAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/NeutralCreatures/ForestRodent/ForestRodentAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/NeutralCreatures/ForestRodent/ForestRodentAvatarResourceA" + }, + { + "scans": 20, + "type": "/Lotus/Types/NeutralCreatures/BirdOfPrey/BirdOfPreyAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/NeutralCreatures/BirdOfPrey/BirdOfPreyAvatarResourceA" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonAutoMortarTurretAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonAutoTurretAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonEviseratorLancerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonFemaleGrineerAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonGrineerMarinePistolAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonHeavyFemaleGrineerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonIncendiaryBombardAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonMortarBombardAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/GrineerSkiff/GrineerSkiffAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/Eidolon/Resources/FruitTreeB" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonAlarmDroneAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonBlowtorchSawmanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonEliteRifleLancerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonJetpackMarineAvatarLeader" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonPredatorAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonRifleLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonRocketBombardAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonShieldLancerAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonSkiffPilotAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Gameplay/Operator/OpPowerSource" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/QuestSpawnedFragments/GlassFragmentScanDecoA" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/QuestSpawnedFragments/GlassFragmentScanDecoB" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/QuestSpawnedFragments/GlassFragmentScanDecoC" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/GrineerDropship/GrineerBigDropshipAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/QuestSpawnedFragments/GlassFragmentScanDecoD" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/QuestSpawnedFragments/GlassFragmentScanDecoE" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/Eidolon/SuppliesSabotageDecoration" + }, + { + "scans": 11, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonRollingDroneAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/GrineerBomber/GrineerBomberAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/GrineerSkiff/GrineerShieldSkiffAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonHeavyFemaleGrineerAvatarLeader" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/Eidolon/GrineerResourceTheftAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonPredatorAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Vip/Avatars/EidolonVipSniperAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonRocketBombardAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonShieldLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonGrineerMarinePistolAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonIncendiaryBombardAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Vip/Avatars/EidolonVipGruntAvatar" + }, + { + "scans": 13, + "type": "/Lotus/Types/Lore/EidolonFragmentScanDeco" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonEviseratorLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonEliteRifleLancerAvatarLeader" + }, + { + "scans": 12, + "type": "/Lotus/Types/LevelObjects/GamemodeLockers/EidolonStorageLockerCache" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Vip/Avatars/EidolonVipGruntDroneAvatar" + }, + { + "scans": 35, + "type": "/Lotus/Types/Enemies/Corpus/Turrets/TurretAvatars/SecurityCameraAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Avatars/EidolonBlowtorchSawmanAvatarLeader" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Ghouls/GhoulDevourerAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Ghouls/GhoulDrillAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Ghouls/GhoulExpiredAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Ghouls/GhoulSawmanAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Friendly/Eidolon/DynamicGhoulHuntExcavatorAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/CaptureTargets/CaptureTargetGhoulAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Ghouls/Vip/GhoulDrillVipDroneAvatar" + }, + { + "scans": 93, + "type": "/Lotus/Types/Lore/SongFragmentScanDeco" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Acolytes/StrikerAcolyteAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Objects/Tenno/Props/TitaniaCodexEntryADeco" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressEviseratorLancerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Objects/Ostron/Wildlife/OstronFishC" + }, + { + "scans": 6, + "type": "/Lotus/Objects/Ostron/Wildlife/OstronFishA" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Ostron/Wildlife/OstronFishI" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/TennoReplicantAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Vip/Avatars/EidolonVipPilotAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/Vip/Avatars/EidolonVipSkiffAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/GrineerChampions/ChampionDrones/EngineerRollingDroneTurretAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Sentients/Eidolon/SentientTeralystBigAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Sentients/Eidolon/SentientTeralystRainAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/GrineerSkiff/GrineerSkiffUnmannedAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/Agents/SurvivalKuvaExtractorAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Powersuits/Brawler/SummonAvatarNpc" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/CorpusChampions/JohnProdman/JohnProdmanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Eidolon/GrineerSkiff/GrineerSkiffShieldUnmannedAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/AladVPet/ZanukaHunterAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/QuestSpawnedFragments/UmbraScorchScanDecoA" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/QuestSpawnedFragments/UmbraScorchScanDecoB" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/QuestSpawnedFragments/UmbraScorchScanDecoC" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/QuestSpawnedFragments/UmbraSwordScanDeco" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Sentients/Mimics/SentientTrooperMimicAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Sentients/Mimics/MimicCrpExpBarrelDeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Sentients/Mimics/MimicGrnExpBarrelDeco" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Sentients/Mimics/MimicRubedoDeco" + }, + { + "scans": 12, + "type": "/Lotus/Types/PickUps/DerelictOrokinLootCrateUmbraQuest" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Crawlers/GraspingCrawlerAvatarLeader" + }, + { + "scans": 13, + "type": "/Lotus/Powersuits/Brawler/SummonAvatar" + }, + { + "scans": 40, + "type": "/Lotus/Types/Lore/FighterFragmentScanDeco" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Quests/RevenantQuest/TennoReplicantRevenantQuestAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/DeathSquad/Avatars/DeathSquadAvatarC" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/DeathSquad/Avatars/DeathSquadAvatarA" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Arachnoid/ArachnoidMicroAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusDroneAttackAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusEliteSpacemanAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusLaserCannonBipedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusShockwaveBipedAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusShockwaveBipedAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusShotgunSpacemanAvatar" + }, + { + "scans": 50, + "type": "/Lotus/Types/Enemies/Corpus/Vehicle/WheelCarDropshipParkedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusShieldDroneAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusSniperSpacemanAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusAutoTurretAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusFlyingSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusGrenadierSpacemanAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusGrenadierSpacemanAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusGuardSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusGuardTurretAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusHeavyDroneAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusHeavyMeleeSpacemanAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusIcewaveBipedAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusIcewaveBipedLeaderAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/Hyenas/VenusHyenaHotrodAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Corpus/Dropship/Venus/VenusSmallDropshipAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Corpus/Dropship/Venus/VenusDropshipAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Gameplay/Venus/Resources/CoolantContainer" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Guild/Props/CrpTrainDrone" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusCarrierSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusShieldDroneAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusHeavyMeleeSpacemanAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/Hyenas/VenusHyenaAstroAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Arachnoid/ArachnoidCamperAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/Enemies/Corpus/Venus/ReinforcementBeacon/VenusReinforceBeaconDeco" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/Venus/DynamicExcavatorAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/Venus/Resources/VenusTreeContainer" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusHeavyEliteSpacemanAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusHeavyMeleeEliteSpacemanAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Arachnoid/ArachnoidHungerAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/Vehicle/WheelCarDropshipAvatar" + }, + { + "scans": 21, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusAutoRocketTurretAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusHeavyEliteSpacemanAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusLaserCannonBipedAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusSniperSpacemanAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/QuadAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusFlyingEliteSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusFlyingEliteSpacemanAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusHeavyMeleeEliteSpacemanAvatarLeader" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/Venus/Resources/SVFoliageFungusLargeContainer" + }, + { + "scans": 5, + "type": "/Lotus/Types/Gameplay/Venus/Resources/SVFoliageFungusSmallContainer" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusDroneAttackAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusFlyingSpacemanAvatarLeader" + }, + { + "scans": 1, + "type": "/Lotus/Types/Game/Events/OrbEventGlyphEight" + }, + { + "scans": 8, + "type": "/Lotus/Types/Gameplay/Conservation/SnowRodent/SnowRodentStartGameplayObject" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Ostron/Wildlife/EelFish" + }, + { + "scans": 3, + "type": "/Lotus/Objects/Ostron/Wildlife/FatHeadFish" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Ostron/Wildlife/OstronFishD" + }, + { + "scans": 5, + "type": "/Lotus/Types/Gameplay/Conservation/SnowBird/SnowBirdStartGameplayObject" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/Turrets/TurretAvatars/CartTurretEnergyBallAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusDefenseDroneAvatar" + }, + { + "scans": 8, + "type": "/Lotus/Types/LevelObjects/GamemodeLockers/VenusStorageLockerCache" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Guild/GasCityRemaster/Props/CrpBarrelADynamicDeco" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Guild/GasCityRemaster/Props/CrpLaserRailParkourCrossBar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamCorpusSniperAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamMoaAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasBaseFlyingSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasEliteFlyingSpacemanAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasLaserCannonBipedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasShotgunFlyingSpacemanAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Sentients/Ropalolyst/SentientRopalolystAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Gameplay/SentientArtifactMode/SentientArtifactDecoA" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Gameplay/SentientArtifactMode/SentientArtifactDecoB" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Gameplay/SentientArtifactMode/SentientArtifactDecoC" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Guild/GasCityRemaster/Props/CrpAnchorPointDeco" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Guild/GasCityRemaster/Props/CrpCleanbotMover" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Guild/GasCityRemaster/Props/CrpExplodingBarrelGas" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Guild/GasCityRemaster/Props/CrpWelderBotMover" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamCorpusOverrideAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamMoaBossAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamMoaSatyrAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamMoaSatyrBossAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasEliteSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasLaserDiscBipedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasNullifySpacemanAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasShieldDroneAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasShockwaveBipedAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasShotgunSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasSuicideDroneAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/Agents/SentientAmalgamArtifactAvatarA" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/Agents/SentientAmalgamArtifactAvatarB" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/Agents/SentientAmalgamArtifactAvatarC" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/Agents/SentientAmalgamArtifactAvatarD" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Gameplay/SentientArtifactMode/SentientArtifactDecoD" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Guild/GasCityRemaster/Props/CrpExplodingBarrelRadiation" + }, + { + "scans": 8, + "type": "/Lotus/Objects/Guild/GasCityRemaster/Props/GasHazardDetonatorLarge" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamCorpusSniperBossAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamOspreyAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamSniperReplicaAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/CorpusCarrusPilotAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasEliteSpacemanAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasSuperMoaBipedAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Weapons/Corpus/Emplacement/CrpDeployableCover/CrpDeployableCover" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamCarrusAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamCarrusPilotAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamCarrusPilotBossAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamOspreyBossAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamPilotGhostAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Avatars/AmalgamPilotGhostBossAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasDeployableSpacemanAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasDeployableSpacemanAvatarLeader" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasLaserCannonBipedAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasLaserDiscBipedAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasNullifySpacemanAvatarLeader" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasRailgunBipedAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasRailgunBipedAvatarLeader" + }, + { + "scans": 7, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasShieldDroneAvatarLead" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasShotgunSpacemanAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasSniperSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasSniperSpacemanAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasSuperMoaBipedAvatarLeader" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Guild/GasCityRemaster/Props/GasRepairBotMover" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Corpus/Dropship/CorpusHunterShipAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasDeployableFlyingSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasNullifyFlyingSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasDiscDroneAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasSniperFlyingSpacemanAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Guild/GasCityRemaster/Props/GasHazardDetonator" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Guild/GasCityRemaster/Props/CrpExplodingBarrel" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/GasCityFragmentScanDeco" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/Vehicle/LoboWheelCarDropshipAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasBaseFlyingSpacemanAvatarLeader" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasMeleeSpacemanAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasNullifyFlyingSpacemanAvatarLeader" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasRifleSpacemanAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Objects/Guild/GasCityRemaster/Props/CrpDestructableGeneratorDeco" + }, + { + "scans": 50, + "type": "/Lotus/Types/Enemies/GrineerChampions/Events/WFGrineerChampionBeastmasterAvatar" + }, + { + "scans": 51, + "type": "/Lotus/Types/Enemies/GrineerChampions/Events/WFGrineerChampionChargerAvatar" + }, + { + "scans": 51, + "type": "/Lotus/Types/Enemies/GrineerChampions/Events/WFGrineerChampionEngineerAvatar" + }, + { + "scans": 51, + "type": "/Lotus/Types/Enemies/GrineerChampions/Events/WFGrineerChampionGruntAvatar" + }, + { + "scans": 50, + "type": "/Lotus/Types/Enemies/GrineerChampions/Events/WFGrineerChampionHealerAvatar" + }, + { + "scans": 51, + "type": "/Lotus/Types/Enemies/GrineerChampions/Events/WFGrineerChampionJetpackAvatar" + }, + { + "scans": 50, + "type": "/Lotus/Types/Enemies/GrineerChampions/Events/WFGrineerChampionSniperAvatar" + }, + { + "scans": 50, + "type": "/Lotus/Types/Enemies/GrineerChampions/Events/WFGrineerChampionTankAvatar" + }, + { + "scans": 50, + "type": "/Lotus/Types/Enemies/GrineerChampions/Events/WFGrineerChampionHeavyAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Guild/GasCityRemaster/Props/CrpGasCityDoorPowerSupplySide9mDeco" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Guild/GasCityRemaster/Props/CrpGasCityDoorPowerSupplyTopDeco" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Guild/GasCityRemaster/Props/CrpGasCityDoorPowerSupplySide5mDeco" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Orokin/OrokinRollingDroneAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Infested/SpecialEvents/ArloZealotGunAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Gameplay/Conservation/SnowRodent/SnowRodentCallPointADeco" + }, + { + "scans": 6, + "type": "/Lotus/Types/NeutralCreatures/Conservation/SnowRodent/RareSnowRodentAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/Turrets/TurretAvatars/CartTurretLaserAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Infested/SpecialEvents/ArloZealotDual/ArloZealotDualSwordGunAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Gameplay/Conservation/SnowCritter/SnowCritterCallPointADeco" + }, + { + "scans": 2, + "type": "/Lotus/Types/Gameplay/Conservation/SnowCritter/SnowCritterCallPointBDeco" + }, + { + "scans": 5, + "type": "/Lotus/Types/Gameplay/Conservation/SnowCritter/SnowCritterStartGameplayObject" + }, + { + "scans": 1, + "type": "/Lotus/Types/Gameplay/Conservation/SnowRodent/SnowRodentCallPointBDeco" + }, + { + "scans": 6, + "type": "/Lotus/Types/NeutralCreatures/Conservation/SnowCritter/CommonSnowCritterAvatar" + }, + { + "scans": 11, + "type": "/Lotus/Types/NeutralCreatures/Conservation/SnowRodent/CommonSnowRodentAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/NeutralCreatures/Conservation/SnowRodent/UncommonSnowRodentAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Gameplay/Conservation/LegendaryKubrow/LegendaryKubrowStartGameplayObject" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/CorpusCameraDroneAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusLaserDiscBipedAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusRailgunBipedAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Vip/Avatars/VenusVipPowerSpacemanAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/Fragments/SolarisFragments/LittleDuckLoreFragmentBDeco" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusShotgunSpacemanAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/Hyenas/VenusHyenaBurnerAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusGrenadierEliteSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusGrenadierEliteSpacemanAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusHeavyEliteDroneAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusIcewaveEliteBipedAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Arachnoid/ArachnoidWraithAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusEliteSpacemanAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusModularAvatarWalkingShield" + }, + { + "scans": 1, + "type": "/Lotus/Types/Gameplay/Conservation/SnowBird/SnowBirdCallPointADeco" + }, + { + "scans": 2, + "type": "/Lotus/Types/Gameplay/Conservation/SnowBird/SnowBirdCallPointBDeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/Fragments/SolarisFragments/SmokefingerLoreFragmentCDeco" + }, + { + "scans": 2, + "type": "/Lotus/Types/NeutralCreatures/Conservation/SnowBird/CommonSnowBirdAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Powersuits/Archwing/StealthJetPack/DistractionDroneWaterAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/Hyenas/VenusHyenaPacerAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Vip/Avatars/VenusVipShotgunSpacemanAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Friendly/Agents/DefenseSolarisCaptureAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Gameplay/Conservation/OrokinKubrow/OrokinKubrowStartGameplayObject" + }, + { + "scans": 3, + "type": "/Lotus/Types/Gameplay/Conservation/SnowPredator/SnowPredatorStartGameplayObject" + }, + { + "scans": 12, + "type": "/Lotus/Types/LevelObjects/GamemodeLockers/VenusStorageLockerCacheIndoors" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Disruption/Avatars/DemoExpiredAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Disruption/Avatars/DisruptionChargerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Disruption/Avatars/DisruptionMinigunBombardAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Disruption/Avatars/DisruptionNoxAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Vip/Avatars/VenusVipSniperSpacemanAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/Fragments/SolarisFragments/LegsLoreFragmentBDeco" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Infested/Disruption/Avatars/DisruptionAncientTankAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Infested/Disruption/Avatars/DisruptionBoilerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/Disruption/Avatars/DisruptionJuggernautAvatar" + }, + { + "scans": 15, + "type": "/Lotus/Types/Enemies/Infested/Disruption/Avatars/DisruptionQuadrupedAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/Enemies/Infested/Vip/InfestedMaggotSpawnPodTwoStageDisruption" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/Fragments/SolarisFragments/SmokefingerLoreFragmentEDeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/Fragments/SolarisFragments/LegsLoreFragmentEDeco" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusIcewaveEliteBipedAvatarLeader" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Grineer/Thumper/ThumperMedAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Gameplay/Conservation/BirdOfPrey/BirdOfPreyStartGameplayObject" + }, + { + "scans": 20, + "type": "/Lotus/Types/NeutralCreatures/Conservation/BirdOfPrey/CommonBirdOfPreyAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/NeutralCreatures/Conservation/BirdOfPrey/RareBirdOfPreyAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/NeutralCreatures/Conservation/ForestRodent/RareForestRodentAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Thumper/ThumperAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/NeutralCreatures/Conservation/ForestRodent/CommonForestRodentAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/NeutralCreatures/Conservation/ForestRodent/UncommonForestRodentAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Gameplay/Conservation/OstronSeaBird/OstronSeaBirdStartGameplayObject" + }, + { + "scans": 4, + "type": "/Lotus/Types/NeutralCreatures/Conservation/BirdOfPrey/UncommonBirdOfPreyAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/Fragments/SolarisFragments/LittleDuckLoreFragmentADeco" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Arachnoid/ArachnoidCamperTerraAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Arachnoid/ArachnoidCoolantAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/Fragments/SolarisFragments/RudeZuudLoreFragmentADeco" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Disruption/Avatars/DisruptionCarrusPilotAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Disruption/Avatars/DisruptionHyenaAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Disruption/Avatars/DisruptionLaserDiscBipedAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Disruption/Avatars/DisruptionRiotMoaAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Powersuits/Khora/Kavat/KhoraKavatAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Game/Events/OrbEventGlyphSixteen" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/Fragments/SolarisFragments/LittleDuckLoreFragmentCDeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/Fragments/SolarisFragments/TickerLoreFragmentCDeco" + }, + { + "scans": 6, + "type": "/Lotus/Objects/SolarisVenus/Wildlife/OroRoboFishCDeco" + }, + { + "scans": 12, + "type": "/Lotus/Objects/SolarisVenus/Wildlife/RobofishCorpusADeco" + }, + { + "scans": 5, + "type": "/Lotus/Objects/SolarisVenus/Wildlife/RobofishCorpusCDeco" + }, + { + "scans": 4, + "type": "/Lotus/Objects/SolarisVenus/Wildlife/RobofishCorpusFDeco" + }, + { + "scans": 11, + "type": "/Lotus/Objects/SolarisVenus/Wildlife/RobofishCorpusStyleADeco" + }, + { + "scans": 3, + "type": "/Lotus/Objects/SolarisVenus/Wildlife/RobofishSolarisADeco" + }, + { + "scans": 12, + "type": "/Lotus/Objects/SolarisVenus/Wildlife/RobofishSolarisBDeco" + }, + { + "scans": 12, + "type": "/Lotus/Objects/SolarisVenus/Wildlife/RobofishSolarisCDeco" + }, + { + "scans": 8, + "type": "/Lotus/Objects/SolarisVenus/Wildlife/OroRoboFishADeco" + }, + { + "scans": 12, + "type": "/Lotus/Objects/SolarisVenus/Wildlife/RobofishCorpusGDeco" + }, + { + "scans": 12, + "type": "/Lotus/Objects/SolarisVenus/Wildlife/RobofishSolarisDDeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Game/Events/OrbEventGlyphFourteen" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/Fragments/SolarisFragments/EudicoLoreFragmentEDeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/Fragments/SolarisFragments/SmokefingerLoreFragmentBDeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/Fragments/SolarisFragments/TheBusinessLoreFragmentADeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Game/Events/OrbEventGlyphTwo" + }, + { + "scans": 1, + "type": "/Lotus/Objects/Ostron/Wildlife/OstronFishE" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Infested/SpecialEvents/ArloZealotSwordAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Emissary/InfestedJetpackAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Emissary/AncientTankAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Emissary/InfestedJetpackReformDecoNoHead" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Emissary/InfestedJetpackReformDeco" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/Vip/Arachnoid/ArachnoidMoltenAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Powersuits/MonkeyKing/HairAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Hoverboard/CrpHoverboardUnmannedAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/WeaveMutalist/WeaveMutalistAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/KuvaLich/KuvaLarvlingAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/KuvaLich/KuvaLichAAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/KuvaLich/KuvaLichFemaleAAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Gameplay/CrewShipPartsHunt/JammingDroneAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Grineer/Disruption/Avatars/DisruptionRoyalGuardAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressCombatCatbrowAvatar" + }, + { + "scans": 11, + "type": "/Lotus/Types/Friendly/Pets/DecoyCatbrowPetAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/Drones/AIWeek/CorpusEliteShieldDroneAvatar" + }, + { + "scans": 7, + "type": "/Lotus/Types/NeutralCreatures/Conservation/VampireKavat/RareVampireKavatAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/KuvaLich/KuvaLarvlingFemaleAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/Fragments/SolarisFragments/EudicoLoreFragmentBDeco" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Orokin/Gamemodes/CorruptedWardenAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Commanders/Avatars/VenusCommanderGreenAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Commanders/Avatars/VenusCommanderAquaAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Commanders/Avatars/VenusCommanderOrangeAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/Ambulas/VenusAmbulasAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusCombatSpacemanAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusModularAvatarWalkingLaser" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusModularAvatarWalkingTesla" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnBoardingMeleeAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnCrewBladeAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnCrewEvisceratorAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/PickUps/Railjack/GrineerPointOfInterestLootCrate" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnBoardingDemoAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnBoardingShotgunAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnCrewFlameAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Saturn/GrnSaturnBoardingShotgunAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Saturn/GrnSaturnBoardingDemoAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Saturn/GrnSaturnBoardingMeleeAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Saturn/GrnSaturnCaptainHeavyAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Saturn/GrnSaturnCrewEvisceratorAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Saturn/GrnSaturnCrewFlameAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnCrewEliteRifleAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnCaptainHeavyAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnPilotAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSBoardingMeleeAvatar" + }, + { + "scans": 16, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/GrnCaptainRollingTurretAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSBoardingDemoAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSBoardingShotgunAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSCaptainHeavyAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSCrewBladeAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSCrewEvisceratorAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSCrewFlameAvatar" + }, + { + "scans": 16, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSPilotAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Weapons/Grineer/RailJack/GrnCrewDeployableCover" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Saturn/GrnSaturnCrewBladeAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Saturn/GrnSaturnCrewEliteRifleAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/PickUps/Railjack/GrineerPointOfInterestUncommonLootCrate" + }, + { + "scans": 12, + "type": "/Lotus/Levels/SentientDevourer/Prefabs/SentientDevourerLootCrateCommon" + }, + { + "scans": 12, + "type": "/Lotus/Levels/SentientDevourer/Prefabs/SentientDevourerLootCrateUncommon" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSCrewEliteRifleAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Sentients/Brachiolyst/SentientBrachiolystAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Sentients/Symbilyst/SentientSymbilystAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Sentients/Troopers/SentientTrooperNoPowersAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/LevelObjects/Sentient/Attachments/BuffStationGem" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/Fragments/SentientDevourerFragments/SentientDevourerFragmentScanDeco" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/AdmiralLightningAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Sentients/SentientFragmentVomvalystAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Game/CrewShip/GrineerDestroyer/GrineerGunnerEmplacement" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Prototypes/Avatars/AmalgamPrototypeCarrusPilotAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Sentients/Mimics/MimicFerriteDeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/PickUps/UltraRareCorpusLootCrate" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Heavies/VenusCombatSpacemanAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Grineer/Vip/Avatars/DoubleBossAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/ShockwaveBipedHackedAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Levels/GrineerGalleon/GrineerSpyVaultF/ConveyorBarrelExplode" + }, + { + "scans": 6, + "type": "/Lotus/Types/NeutralCreatures/Conservation/VampireKavat/UncommonVampireKavatAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/NeutralCreatures/Conservation/VampireKavat/CommonVampireKavatAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Game/Events/OrbEventGlyphTwelve" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Sentients/RailJack/SentientBoardingHackerAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Sentients/RailJack/SentientBoardingSymbilystAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/Agents/SquadLinkScannerAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Sentients/RailJack/SentientBoardingBrachiolystAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Sentients/RailJack/SentientBoardingNoPowersAvatar" + }, + { + "scans": 17, + "type": "/Lotus/Types/Enemies/Sentients/Aerolyst/SentientAerolystAvatar" + }, + { + "scans": 7, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Saturn/GrnSaturnPilotAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/EliteShieldLancerAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Grineer/GrineerAvatars/GrineerMarineShieldAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Sentients/RailJack/SentientHackerDroneDeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/AdmiralIceAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/PickUps/Railjack/GrineerPointOfInterestUltraRareLootCrate" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Grineer/SeaLab/Avatars/RifleLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/AIWeek/Avatars/EliteShieldLancerAvatarLeader" + }, + { + "scans": 8, + "type": "/Lotus/Objects/SolarisVenus/Wildlife/RobofishCorpusEV1Deco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/Fragments/SolarisFragments/TickerLoreFragmentADeco" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusModularAvatarWalkingDetector" + }, + { + "scans": 1, + "type": "/Lotus/Types/Game/Events/OrbEventGlyphFifteen" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMoaDeraAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMoaDiscAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMoaDiscAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMoaGlaxionAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMoaGlaxionAvatarLeader" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipOspreyShieldAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Friendly/Agents/DefenseComputerCorpusAvatarSmall" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/Aristocrats/Avatars/AristocratManagerAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCrewmanAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCrewmanEliteAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCrewmanTechAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMoaDeraAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMoaDualCannonAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipOspreyOxiumAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/Gamemodes/PurgatoryGhostAvatar" + }, + { + "scans": 30, + "type": "/Lotus/Types/Enemies/Corpus/Gamemodes/PurgatoryWarriorAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCombaDetectorAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCrewmanSniperAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipOspreyShieldAvatarLeader" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/OdaliskQuest/OdaliskQuestSpecterAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipOspreyMineAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corpus/Aristocrats/Avatars/MiniMoaAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCrewmanNullifierAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCrewmanEliteAvatarLeader" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCrewmanSniperAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCrewmanTechAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMoaDualCannonAvatarLeader" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMachinistHammerAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/BipedRobot/AIWeek/GuidedDummyBipedAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/QuadRobot/QuadRobotAvatarNEW" + }, + { + "scans": 4, + "type": "/Lotus/Types/Friendly/Pets/KubrowPetAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Friendly/Pets/MoaPets/MoaPetAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Sentients/Mimics/MimicAlloyDeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Sentients/Mimics/MimicGalliumDeco" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Sentients/Mimics/MimicArgonDeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Sentients/Mimics/MimicSalvageDeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/Venus/Avatars/VenusRailgunBipedAvatarLeader" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/Agents/DefenseAvatarMoving" + }, + { + "scans": 1, + "type": "/Lotus/Types/Gameplay/Conservation/VampireKavat/VampireKavatStartGameplayObject" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Desert/Avatars/BladeSawmanAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Thumper/ThumperLargeAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Gameplay/Conservation/ForestRodent/ForestRodentStartGameplayObject" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Grineer/SpecialEvents/WolfStalkerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCombaDetectorAvatarLeader" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantVoltAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Foliage/InfGorgaricusSacDeco" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/LootContainers/InfestedCommonCrateContainer" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/LootContainers/OrokinCommonCrateContainer" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/InfMapricoTree/InfMapricoTreeDeco" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/OrbStone/OrbStoneContainer" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Wildlife/InfestedCommonADeco" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Wildlife/InfestedCommonCDeco" + }, + { + "scans": 30, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Ashen/AshenAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/InfestedAttackDroneMicroPlanetAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/QuadrupedMicroPlanetAvatar" + }, + { + "scans": 30, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/RunnerMicroPlanetAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/EncounterObjects/DoorKeyDevice" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/EncounterObjects/ExterminateHiveDeco" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/GreyStrain/BoneBlade/BoneBladeAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Fx/Levels/InfestedMicroplanet/WyrmBattle/WyrmDestructibleDecoInfested" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Wildlife/InfestedUncommonADeco" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/Conservation/Deimos/InfestedPredator/InfestedPredatorStartGameplayObject" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/Conservation/Deimos/InfestedMergoo/InfestedMergooStartGameplayObject" + }, + { + "scans": 12, + "type": "/Lotus/Levels/InfestedMicroplanet/InfestedLandmine" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/DiseasedAncientMicroPlanetAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/LeapingSuicideRunnerAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Orokin/Entrati/EntratiTech/NechroTech/NechroTechAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Gameplay/EntratiObeliskTetherCrystal" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Emissary/AncientShellAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/GreyStrain/Femur/InfestedFemurAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/AncientTankMicroPlanetAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Ashen/AshenBigAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/CellCarrierDroneMicroPlanetAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/DiseasedAncientMicroPlanetEximusAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Drones/Tendril/InfestedTendrilDroneAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Dropship/InfestedBigDropshipAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/FemurAssassinateTargetAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/HealingAncientMicroPlanetAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/InfestedMicroPlanet/DynamicExcavatorAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/EncounterObjects/ShrineDefenseAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/EncounterObjects/ExterminateHiveDecoShellProxy" + }, + { + "scans": 5, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/LootContainers/InfestedRareCrateContainer" + }, + { + "scans": 20, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedCritter/CommonInfestedCritterAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedKDrive/SwampInfKDriveAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Wildlife/HybridUncommonADeco" + }, + { + "scans": 5, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedKDrive/GrottoInfKDriveAvatar" + }, + { + "scans": 11, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Wildlife/HybridUncommonBDeco" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Wildlife/InfestedCommonBDeco" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Wildlife/InfestedCommonDDeco" + }, + { + "scans": 2, + "type": "/Lotus/Types/Gameplay/Conservation/Deimos/InfestedMaggot/InfestedMaggotCallPointADeco" + }, + { + "scans": 9, + "type": "/Lotus/Types/Gameplay/Conservation/Deimos/InfestedMaggot/InfestedMaggotCallPointBDeco" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/Conservation/Deimos/InfestedMaggot/InfestedMaggotScatDeco" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/Conservation/Deimos/InfestedMaggot/InfestedMaggotStartGameplayObject" + }, + { + "scans": 5, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedCritter/RareInfestedCritterAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedKDrive/HighlandInfKDriveAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedMaggot/CommonInfestedMaggotAvatar" + }, + { + "scans": 21, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedMaggot/UncommonInfestedMaggotAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedPredator/CommonInfestedPredatorAvatar" + }, + { + "scans": 11, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedPredator/UncommonInfestedPredatorAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Friendly/InfestedMicroPlanet/DoorKeyDeviceAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/EncounterObjects/InfestedSpawnPod" + }, + { + "scans": 12, + "type": "/Lotus/Fx/Levels/InfestedMicroplanet/WyrmBattle/WyrmDestructibleDecoEntrati" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/HealingAncientMicroPlanetEximusAvatar" + }, + { + "scans": 11, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/EncounterObjects/PurifierAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/EncounterObjects/PurifyMollusk" + }, + { + "scans": 2, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/EncounterObjects/KeyPiecesEidolonCache" + }, + { + "scans": 4, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/EncounterObjects/KeyPiecesMainTumorDeco" + }, + { + "scans": 1, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Gameplay/EntratiObeliskMadnessCrystal" + }, + { + "scans": 7, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/LootContainers/OrokinVaultCrateContainer" + }, + { + "scans": 9, + "type": "/Lotus/Types/Gameplay/Conservation/Deimos/InfestedCritter/InfestedCritterStartGameplayObject" + }, + { + "scans": 12, + "type": "/Lotus/Fx/Levels/InfestedMicroplanet/WyrmBattle/WyrmDestructibleDecoEntratiVault" + }, + { + "scans": 2, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Gameplay/EntratiObeliskRepellentCrystal" + }, + { + "scans": 2, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Gameplay/EntratiObeliskStopmotionCrystal" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/JuggernautMicroPlanetCasualAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/LootContainers/OrokinRareCrateContainer" + }, + { + "scans": 4, + "type": "/Lotus/Fx/Levels/InfestedMicroplanet/WyrmBattle/WyrmDestructibleDecoInfestedVault" + }, + { + "scans": 1, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Gameplay/EntratiObeliskBlindCrystal" + }, + { + "scans": 3, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Gameplay/EntratiObeliskShapeshifterCrystal" + }, + { + "scans": 3, + "type": "/Lotus/Types/Gameplay/Conservation/Deimos/InfestedCritter/InfestedCritterCallPointADeco" + }, + { + "scans": 4, + "type": "/Lotus/Types/Gameplay/Conservation/Deimos/InfestedCritter/InfestedCritterCallPointBDeco" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/Conservation/Deimos/InfestedCritter/InfestedCritterScatDeco" + }, + { + "scans": 20, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedMergoo/CommonInfestedMergooAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Gameplay/Conservation/Deimos/InfestedMergoo/InfestedMergooCallPointADeco" + }, + { + "scans": 3, + "type": "/Lotus/Types/Gameplay/Conservation/Deimos/InfestedPredator/InfestedPredatorCallPointADeco" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/Conservation/Deimos/InfestedPredator/InfestedPredatorToxicScatDeco" + }, + { + "scans": 15, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedMaggot/RareInfestedMaggotAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Gameplay/Conservation/Deimos/InfestedMergoo/InfestedMergooCallPointBDeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Gameplay/Conservation/Deimos/InfestedPredator/InfestedPredatorCallPointBDeco" + }, + { + "scans": 4, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedMergoo/RareInfestedMergooAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedMergoo/UncommonInfestedMergooAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedPredator/RareInfestedPredatorAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedCritter/UncommonInfestedCritterAvatar" + }, + { + "scans": 7, + "type": "/Lotus/Objects/Gameplay/InfestedHiveMode/InfestedTumorObjectiveSpawnedDeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Friendly/Agents/HiveMode/InfestedHiveAvatarB" + }, + { + "scans": 2, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedNexifera/UncommonInfestedNexiferaAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Powersuits/Dragon/DragonPeltAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/Enemies/Sentients/RepeaterDeco" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/InfestedAttackDroneMicroPlanetEximusAvatar" + }, + { + "scans": 13, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/QuadrupedMicroPlanetEximusAvatar" + }, + { + "scans": 9, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/RunnerMicroPlanetEximusAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Splitter/SplitterAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Splitter/SplitterSplitAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Splitter/SplitterTopSplitAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Orokin/Entrati/EntratiTech/Thanotech/ThanoTechAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Wildlife/InfestedCommonEDeco" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/Quadrupeds/RusherAvatarMist" + }, + { + "scans": 9, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Ashen/AshenEximusAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/JuggernautMicroPlanetEscortAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/EncounterObjects/FluidSacDevice" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/EncounterObjects/FluidSacTumor" + }, + { + "scans": 1, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/EncounterObjects/InfestedMistDeviceAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Gameplay/InfestedMicroplanet/EncounterObjects/KeyPiecesOrokinCache" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Sentients/Condrix/SentientCondrixAvatarMechEvent" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Sentients/Dolicholyst/SentientDolicholystAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Sentients/Eidolon/SentientEidolonGhostCasterAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Sentients/Ortholyst/SentientOrtholystAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Wildlife/HybridRareADeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Splitter/SplitterAvatarEximus" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Splitter/SplitterSplitAvatarEximus" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Infested/InfestedMicroplanet/Splitter/SplitterTopSplitAvatarEximus" + }, + { + "scans": 8, + "type": "/Lotus/Types/Gameplay/Conservation/Deimos/Undazoa/UndazoaStartGameplayObject" + }, + { + "scans": 1, + "type": "/Lotus/Powersuits/Infestation/PodMinionAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCombaLaserAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCombaShieldAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCombaTeslaAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/BoardingMeleeSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/BoardingRifleSpacemanAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/BoardingShotgunSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpCrewDiscBipedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpCrewMeleeAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpCrewNullifierAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpCrewRifleAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpCrewShieldDroneAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpCrewShotgunAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/SpecOpsStaffAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/PickUps/Railjack/CorpusPointOfInterestLootCrate" + }, + { + "scans": 12, + "type": "/Lotus/Levels/Railjack/Objects/VolatileReactorVentHazardLarge" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpCrewCannonBipedAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpCrewEliteAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpRJRailgunBipedAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/SpecOpsFireMoaAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CorpusRailjackFlyingSpacemanAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpSpecOpsRangedAvatarOne" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpSpecOpsRangedAvatarThree" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpTechDeployableAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Friendly/RailJack/RJCrewAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpCrewshipCaptainAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpRailjackShockwaveBipedAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/SpecOpsArachnoidAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/SpecOpsIceMoaAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneBoardingRifleSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpCrewCannonBipedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpCrewDiscBipedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpCrewEliteAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpCrewMeleeAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpCrewRifleAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpCrewShotgunAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpCrewshipCaptainAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpRJRailgunBipedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpRailjackShockwaveBipedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpTechDeployableAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneBoardingMeleeSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneBoardingShotgunSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCorpusRailjackFlyingSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpCrewNullifierAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Neptune/Avatars/NeptuneCrpCrewShieldDroneAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpAdmiralFlyingAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/OverrideJammingDrone2Avatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpSpecOpsRiotBipedControlAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpTechEngineerAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/PickUps/Railjack/CorpusPointOfInterestUncommonLootCrate" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/VoidStorm/VoidSinkSphereDeco" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoBoardingRifleSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCorpusRailjackFlyingSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpCrewCannonBipedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpCrewDiscBipedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpCrewEliteAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpCrewMeleeAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpCrewRifleAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpCrewShieldDroneAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpCrewShotgunAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpRJRailgunBipedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoBoardingMeleeSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoBoardingShotgunSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpTechDeployableAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpCrewNullifierAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpRailjackShockwaveBipedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceBoardingRifleSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpCrewCannonBipedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpCrewDiscBipedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpCrewEliteAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpCrewMeleeAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpCrewNullifierAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpCrewShieldDroneAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpCrewShotgunAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpRJRailgunBipedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpRailjackShockwaveBipedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpTechDeployableAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCorpusRailjackFlyingSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpCrewRifleAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpCrewshipCaptainAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceBoardingMeleeSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceBoardingShotgunSpacemanAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/PickUps/Railjack/CorpusPointOfInterestRareLootCrate" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpCrewshipCaptainAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Game/CrewShip/CrpShipStanchionCrewShip/CrpShipStanchionBaseAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/Fragments/SolarisFragments/SmokefingerLoreFragmentDDeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Lore/Fragments/SolarisFragments/LegsLoreFragmentDDeco" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipOspreyMineAvatarLeader" + }, + { + "scans": 1, + "type": "/Lotus/Types/Gameplay/Conservation/SnowArmadillo/SnowArmadilloStartGameplayObject" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipCrewmanNullifierAvatarLeader" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Corpus/Lawyers/LawyerTreasurerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Lawyers/Pets/LawyerDogPetAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Lawyers/Pets/LawyerDogPetThrallAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Lawyers/LawyerAvatarA" + }, + { + "scans": 34, + "type": "/Lotus/Types/Enemies/Corpus/Lawyers/Pets/LawyerDogPetCloneAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Friendly/Rescue/RescueAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantBansheeAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantEmberAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantFairyAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantFrostAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantNecroAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantNidusAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantNyxAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantPaladinAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Friendly/Pets/CreaturePets/CreaturePreceptComponents/InfestedCritterSentinelAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantBardAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantExcaliburAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantMagicianAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Friendly/Pets/ZanukaPets/ZanukaPetAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Friendly/Eidolon/EventMixerAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerEidolonAlarmDroneAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerFemaleGrineerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerFlameLancerAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerGrineerBigDropshipAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerGrineerDropshipAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerHeavyFemaleGrineerAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerJetpackMarineAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerMacheteWomanAvatar" + }, + { + "scans": 8, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerPistonSawmanAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerRifleLancerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerRocketBombardAvatar" + }, + { + "scans": 17, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerShieldLancerAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerShotgunLancerAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/LevelObjects/GamemodeLockers/NarmerStorageLockerCache" + }, + { + "scans": 2, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Gameplay/EntratiObeliskAntibodyCrystal" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerBlowtorchSawmanAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/NarmerIncendiaryBombardAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/LevelObjects/Zariman/ZarLootCrateCommonA" + }, + { + "scans": 12, + "type": "/Lotus/Types/LevelObjects/Zariman/ZarLootCrateCommonB" + }, + { + "scans": 12, + "type": "/Lotus/Types/LevelObjects/Zariman/ZarLootCrateUncommon" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Duviri/Avatars/DuviriMeleeAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressRifleLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Zariman/Avatars/GrnAntiWarframeAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressEliteRifleLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Zariman/Avatars/VoidAngelAvatarEndless" + }, + { + "scans": 4, + "type": "/Lotus/Types/Gameplay/Zariman/EncounterObjects/AssassinateEndless/Barracks" + }, + { + "scans": 7, + "type": "/Lotus/Types/Gameplay/Zariman/EncounterObjects/AssassinateEndless/ScrapContainer" + }, + { + "scans": 5, + "type": "/Lotus/Types/LevelObjects/Zariman/DoorConsole" + }, + { + "scans": 8, + "type": "/Lotus/Fx/Gameplay/Corruption/CorruptionVoidDepositDeco" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Duviri/Avatars/DuviriRifleAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressFemaleGrineerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Zariman/Attachments/GrnAntiWarframeMineDeco" + }, + { + "scans": 4, + "type": "/Lotus/Types/LevelObjects/ZarimanBreakableHatchDoorA" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressBladeSawmanAvatarLeader" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Sentients/Mimics/MimicAyatanBDeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Sentients/Mimics/MimicAyatanEDeco" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Sentients/Mimics/MimicCircuitsDeco" + }, + { + "scans": 5, + "type": "/Lotus/Types/Gameplay/NewWar/MedusaLockGem" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerWardenGrineerHeavyAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerBladeSawmanAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerMacheteWomanAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerMacheteWomanAvatarLeader" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerRifleLancerAvatar" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerShotgunLancerAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerEliteRifleLancerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerEliteRifleLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerRifleLancerAvatarLeader" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerShieldLancerAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerGrineerMarinePistolAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerHeavyFemaleGrineerAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/NewWar/Archons/ArchonAmarAvatarPNW" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/NewWar/Archons/ArchonAmarChargeClone" + }, + { + "scans": 12, + "type": "/Lotus/Types/PickUps/Narmer/NarmerLootCrate" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerFemaleGrineerAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerForestDroneAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerGrineerMarinePistolAvatarLeader" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerPistonSawmanAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerRocketBombardAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Enemies/Narmer/Deacon/NarmerDeaconCombatAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerIncendiaryBombardAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerBladeSawmanAvatarLeader" + }, + { + "scans": 11, + "type": "/Lotus/Types/Enemies/Narmer/Drone/PazuulNarmerPropDroneAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/NewWar/Archons/ArchonBorealAvatarPNW" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corrupted/Avatars/CorruptedBeastMasterAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Corrupted/Avatars/CorruptedCombatKubrowAvatar" + }, + { + "scans": 9, + "type": "/Lotus/Types/Enemies/Duviri/Avatars/EclipseDuviriMeleeAvatarEasy" + }, + { + "scans": 13, + "type": "/Lotus/Types/Enemies/Duviri/Avatars/EclipseDuviriRifleAvatarEasy" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Duviri/Avatars/EclipseDuviriRifleAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Weapons/Grineer/Emplacements/GrnEmplcmntStndng/GrineerEmplacementStandingKahl" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Entrati/Lab/Gameplay/LabVials/ORKxLabVialHazardADynamicDeco" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Entrati/Lab/Gameplay/LabVials/ORKxLabVialHazardBDeco" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/ManInTheWall/NecramechMelee/NecramechMeleeAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/ManInTheWall/NecramechMelee/NecramechMeleeLeaderAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/ManInTheWall/NecramechRanged/NecramechRangedAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/ManInTheWall/NecramechRanged/NecramechRangedAvatarLeader" + }, + { + "scans": 40, + "type": "/Lotus/Types/Enemies/ManInTheWall/Octopede/Arm/MITWOctopedeArmAvatar" + }, + { + "scans": 40, + "type": "/Lotus/Types/Enemies/ManInTheWall/RepairDrone/RepairDroneAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/ManInTheWall/VialCarryDrone/VialDroneAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/PickUps/LootContainers/EntratiLootCrateCommon" + }, + { + "scans": 12, + "type": "/Lotus/Types/PickUps/LootContainers/EntratiLootCrateUncommon" + }, + { + "scans": 12, + "type": "/Lotus/Types/PickUps/LootContainers/MITWLootCrate" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Entrati/Lab/Gameplay/LabVials/ORKxLabVialHazardADeco" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/ManInTheWall/HandBomber/HandBomberAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/ManInTheWall/Triangle/MITWSupportTriangleAvatar" + }, + { + "scans": 40, + "type": "/Lotus/Types/Enemies/ManInTheWall/Octopede/Arm/ArmTurret/MITWOctopedeArmTurretAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/ManInTheWall/Octopede/MITWOctopedeAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Entrati/Lab/Gameplay/LabVials/ORKxLabVialHazardARegenDeco" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Zariman/Avatars/VoidAngelAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/ManInTheWall/NecramechVoidRig/NecramechVoidRigLeaderAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/ManInTheWall/Slinky/MITWSlinkyAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Types/Game/PowerRift/PowerRiftDeco" + }, + { + "scans": 2, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Wildlife/InfestedRareADeco" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Infested/AiWeek/GreyStrain/Femur/InfestedFemurEximusAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Gameplay/Conservation/Deimos/Undazoa/UndazoaCallPointADeco" + }, + { + "scans": 12, + "type": "/Lotus/Types/Gameplay/Conservation/Deimos/Undazoa/UndazoaScatDeco" + }, + { + "scans": 4, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedUndazoa/CommonUndazoaAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedUndazoa/RareUndazoaAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/NeutralCreatures/Conservation/Deimos/InfestedUndazoa/UncommonUndazoaAvatar" + }, + { + "scans": 11, + "type": "/Lotus/Objects/Entrati/Lab/Gameplay/Destructible/LootCrates/ORKxLabVialAHealthHangingDeco" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/ManInTheWall/Triangle/MITWSupportTriangleLeaderAvatar" + }, + { + "scans": 9, + "type": "/Lotus/Types/Friendly/EntratiDefense/LoopDefenseAvatarEar" + }, + { + "scans": 9, + "type": "/Lotus/Types/Friendly/EntratiDefense/LoopDefenseAvatarEye" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/ManInTheWall/HandBomber/HandBomberLeaderAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/ManInTheWall/NecramechVoidRig/NecramechVoidRigAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/ManInTheWall/Slinky/MITWSlinkyLeaderAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Entrati/Doppelganger/EntratiDoppelgangerRangedAvatar" + }, + { + "scans": 12, + "type": "/Lotus/Objects/Entrati/Lab/Gameplay/LabVials/ORKxLabVialHazardBRegenDeco" + }, + { + "scans": 4, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Wildlife/OrokinUncommonADeco" + }, + { + "scans": 1, + "type": "/Lotus/Objects/Infestation/InfestedMicroplanet/Wildlife/OrokinRareADeco" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerHeavyFemaleGrineerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerShieldLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerShotgunLancerAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerPistonSawmanAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/NarmerDeployableSpacemanAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerEliteSpacemanAvatar" + }, + { + "scans": 7, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerMeleeSpacemanAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerMeleeSpacemanAvatarLeader" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerNullifyFlyingSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerNullifySpacemanAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerNullifySpacemanAvatarLeader" + }, + { + "scans": 12, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerRifleSpacemanAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerRifleSpacemanAvatarLeader" + }, + { + "scans": 7, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShipMoaDeraAvatar" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShockwaveBipedAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShotgunSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerSuicideDroneAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Narmer/NarmerTechDroneAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Prototypes/Avatars/AmalgamPrototypeCarrusAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Prototypes/Avatars/AmalgamPrototypeMeleeAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Prototypes/Avatars/AmalgamPrototypeMoaAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerMineDroneAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShieldDroneAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShipMoaDualCannonAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShipMoaDualCannonAvatarLeader" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShipMoaGlaxionAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShotgunFlyingSpacemanAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerSniperSpacemanAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/NewWar/Archons/ArchonNiraAvatarNewPNW" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Corpus/Zariman/Avatars/CrpInterrupterAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressEviseratorLancerAvatarLeader" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/DeepSpace/GrnDSCaptainRollingTurretAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressShotgunLancerAvatarLeader" + }, + { + "scans": 7, + "type": "/Lotus/Types/Friendly/Agents/ZarimanMobileDefenseAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/DeepSpace/Avatars/DeepSpaceCrpTechEngineerAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/AdmiralFireAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/SpaceBattles/Grineer/Fighters/DeepSpace/SpaceFighterDSRagerEliteAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Saturn/GrnSaturnCaptainRollingTurretAvatar" + }, + { + "scans": 20, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerCarrierRifleLancerAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerFemaleGrineerAvatarLeader" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerFlameLancerAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerRocketBombardAvatarLeader" + }, + { + "scans": 3, + "type": "/Lotus/Types/Sentinels/SentinelPrecepts/VoidBond/VoidCloneZanukaPetAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressPistonSawmanAvatarLeader" + }, + { + "scans": 10, + "type": "/Lotus/Types/Enemies/Grineer/Disruption/Avatars/DemoDevourerAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Powersuits/Trapper/Deployables/ZapAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/CorpusShipRemastered/Avatars/ShipMachinistHammerAvatarLeader" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressHeavyFemaleGrineerAvatarLeader" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressRollingDroneAvatarLeader" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Grineer/Fortress/Avatars/FortressMacheteWomanAvatarLeader" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantBrawlerAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantLokiAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/TennoReplicants/RelayBoss/TennoReplicantPirateAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Acolytes/RogueAcolyteAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/AdmiralPoisonAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Grineer/RailJack/Avatars/CarabusPoisonAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Avatars/CrpAdmiralFreezeTurretAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/Railjack/Pluto/Avatars/PlutoCrpTechEngineerAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/GasCity/Avatars/GasSniperFlyingSpacemanAvatarLeader" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Grineer/Narmer/Avatars/PNWNarmerIncendiaryBombardAvatarLeader" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerAmalgamCarrusAvatarLeader" + }, + { + "scans": 4, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShieldDroneAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShipMoaDeraAvatarLeader" + }, + { + "scans": 2, + "type": "/Lotus/Levels/TheNewWar2021/Part2/CrpWeakExplodingBarrel" + }, + { + "scans": 1, + "type": "/Lotus/Levels/TheNewWar2021/Part2/CrpWeakExplodingBarrelGas" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/Amalgams/Prototypes/Avatars/AmalgamPrototypeSatyrAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerBaseFlyingSpacemanAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerBaseFlyingSpacemanAvatarLeader" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerCorpusCarrusPilotAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/Narmer/NarmerCrewmanAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/Corpus/Narmer/Avatars/PNWNarmerShipMoaDiscAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/ManInTheWall/NecramechVoidRig/NecramechVoidRigDisruptionAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/ManInTheWall/Octopede/Leg/BipedalLegs/MITWOctopedeBipedalLegsAvatar" + }, + { + "scans": 6, + "type": "/Lotus/Types/Friendly/Agents/EntratiLabArtifactAvatarA" + }, + { + "scans": 5, + "type": "/Lotus/Types/Friendly/Agents/EntratiLabArtifactAvatarC" + }, + { + "scans": 5, + "type": "/Lotus/Types/Friendly/Agents/EntratiLabArtifactAvatarD" + }, + { + "scans": 7, + "type": "/Lotus/Types/Enemies/ManInTheWall/NecramechBonewindow/NecramechBonewidowDisruptionAvatar" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/ManInTheWall/TreasureBox/MITWTreasureBoxAvatar" + }, + { + "scans": 7, + "type": "/Lotus/Types/Friendly/Agents/EntratiLabArtifactAvatarB" + }, + { + "scans": 12, + "type": "/Lotus/Types/PickUps/LootContainers/EntratiLootCrateSimple" + }, + { + "scans": 3, + "type": "/Lotus/Types/Enemies/ManInTheWall/TreasureBox/MITWTreasureBoxCloneAvatar" + }, + { + "scans": 5, + "type": "/Lotus/Types/Enemies/ManInTheWall/Octopede/Arm/MITWOctopedeArmLeaderAvatar" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/ManInTheWall/TreasureBox/MITWTreasureBoxLeaderAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/ManInTheWall/NecramechBonewindow/NecramechBonewidowAvatar" + }, + { + "scans": 1, + "type": "/Lotus/Types/Enemies/ManInTheWall/NecramechBonewindow/NecramechBonewidowAvatarLeader" + }, + { + "scans": 2, + "type": "/Lotus/Types/Enemies/ManInTheWall/TreasureBox/MITWTreasureBoxCloneLeaderAvatar" + } + ], + "ReviveCount": 6445, + "FomorianEventScore": 7208148, + "PVP": [ + { + "suitKills": 10, + "suitDeaths": 11, + "type": "/Lotus/Powersuits/Rhino/Rhino" + }, + { + "suitKills": 20, + "suitDeaths": 54, + "weaponKills": 1, + "type": "/Lotus/Powersuits/Rhino/RhinoPrime" + }, + { + "suitKills": 57, + "suitDeaths": 156, + "weaponKills": 1, + "type": "/Lotus/Powersuits/Berserker/ValkyrPrime" + }, + { + "suitDeaths": 3, + "type": "/Lotus/Powersuits/Volt/VoltPrime" + }, + { + "weaponKills": 4, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/PrimeKatana/PrimeNikana" + }, + { + "weaponKills": 5, + "type": "/Lotus/Weapons/Tenno/Bows/PrimeHuntingBow" + }, + { + "weaponKills": 1, + "type": "/Lotus/Weapons/Grineer/Pistols/GrnTorpedoPistol/GrnTorpedoPistol" + }, + { + "weaponKills": 7, + "type": "/Lotus/Weapons/Tenno/LongGuns/DrakeRifle/DrakeRifle" + }, + { + "weaponKills": 8, + "type": "/Lotus/Weapons/Corpus/LongGuns/CrpBFG/ConclaveBFG" + }, + { + "weaponKills": 4, + "type": "/Lotus/Weapons/Tenno/LongGuns/PrimeSoma/PrimeSomaRifle" + }, + { + "weaponKills": 25, + "type": "/Lotus/Weapons/Tenno/Melee/Scythe/ParisScythe/VariantXmasScythe" + }, + { + "weaponKills": 25, + "type": "/Lotus/Weapons/Tenno/ThrowingWeapons/VariantSnowBalls" + }, + { + "weaponKills": 3, + "type": "/Lotus/Weapons/Tenno/ThrowingWeapons/VariantTennoStars" + }, + { + "weaponKills": 3, + "type": "/Lotus/Weapons/Tenno/Melee/Swords/KatanaAndWakizashi/VariantKatana" + } + ], + "PVPSpeedballTies": 1, + "PVPSpeedballChecks": 18, + "PVPSpeedballGoals": 3, + "PVPSpeedballInterceptions": 11, + "PVPSpeedballSteals": 6, + "PVPSpeedballPoints": 3, + "PVPSpeedballLosses": 1, + "DojoObstacleScore": 139571, + "PvpGamesPendingMask": 524545, + "ColonistRescueEventScoreMax": 1440, + "AmbulasEventScoreMax": 58, + "SentinelGameScore": 255, + "AmalgamEventScoreMax": 4247, + "FlotillaEventScore": 111565, + "FlotillaSpaceBadgesTier1": 8, + "FlotillaSpaceBadgesTier2": 6, + "FlotillaGroundBadgesTier2": 1, + "FlotillaSpaceBadgesTier3": 1, + "MechSurvivalScoreMax": 20793, + "Races": { + "VenusRace20": { + "highScore": 3216 + }, + "VenusRace18": { + "highScore": 5357 + }, + "VenusRace11": { + "highScore": 3070 + }, + "VenusRace22": { + "highScore": 5180 + }, + "VenusRace2": { + "highScore": 3728 + }, + "VenusRace15": { + "highScore": 2308 + } + }, + "GuildName": "Project YoRHa#992" + } +} diff --git a/test/data/loadoutInventory.data.js b/test/data/loadoutInventory.data.js new file mode 100644 index 0000000..983f334 --- /dev/null +++ b/test/data/loadoutInventory.data.js @@ -0,0 +1,382 @@ +export default { + WeaponSkins: [ + { + ItemType: '/Lotus/Upgrades/Skins/Dragon/ChromaPrimeHelmet', + }, + ], + Suits: [ + { + ItemType: '/Lotus/Powersuits/Dragon/ChromaPrime', + Configs: [ + { + Skins: [ + '/Lotus/Upgrades/Skins/Dragon/ChromaPrimeHelmet', + '/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization', + '/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization', + '', + '', + '', + '/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization', + '/Lotus/Upgrades/Skins/Dragon/ChromaPrimeSkin', + '/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization', + '/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization', + '/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization', + '/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization', + '/Lotus/Upgrades/Skins/Sigils/SyndicateSigilPerrinSequenceK', + '', + '', + '', + '/Lotus/Upgrades/Skins/Effects/NarmerEvolvingEphemeraC', + ], + pricol: { + t0: -10461867, + t1: -1644569, + t2: -2228224, + m0: -2544384, + m1: -11443299, + en: -2544384, + e1: -11443299, + }, + attcol: { + t0: -10461867, + t1: -1644569, + t2: -2228224, + t3: -2773927, + m0: -2544384, + m1: -11443299, + en: -2544384, + e1: -11443299, + }, + syancol: { + t0: -2763307, + t1: -13881549, + t2: -1, + t3: -2773927, + m0: -2763307, + m1: -2544384, + en: -2544384, + e1: -2544384, + }, + }, + { + Skins: [ + '/Lotus/Upgrades/Skins/Dragon/ChromaPrimeHelmet', + '/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization', + '/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization', + '', + '', + '', + '/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization', + '/Lotus/Upgrades/Skins/Dragon/ChromaPrimeSkin', + ], + }, + { + Skins: [ + '/Lotus/Upgrades/Skins/Dragon/ChromaPrimeHelmet', + '/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization', + '/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization', + '', + '', + '', + '/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization', + '/Lotus/Upgrades/Skins/Dragon/ChromaPrimeSkin', + ], + }, + ], + UpgradeVer: 101, + Features: 3, + InfestationDate: { + $date: { + $numberLong: '2147483647000', + }, + }, + XP: 36869209, + Polarity: [ + { + Slot: 2, + Value: 'AP_UMBRA', + }, + { + Slot: 5, + Value: 'AP_UMBRA', + }, + { + Slot: 1, + Value: 'AP_ATTACK', + }, + { + Slot: 4, + Value: 'AP_UMBRA', + }, + ], + Polarized: 6, + ArchonCrystalUpgrades: [ + { + Color: 'ACC_BLUE_MYTHIC', + UpgradeType: + '/Lotus/Upgrades/Invigorations/ArchonCrystalUpgrades/ArchonCrystalUpgradeWarframeArmourMaxMythic', + }, + { + Color: 'ACC_RED_MYTHIC', + UpgradeType: + '/Lotus/Upgrades/Invigorations/ArchonCrystalUpgrades/ArchonCrystalUpgradeWarframeAbilityStrengthMythic', + }, + { + Color: 'ACC_RED', + UpgradeType: + '/Lotus/Upgrades/Invigorations/ArchonCrystalUpgrades/ArchonCrystalUpgradeWarframeAbilityDuration', + }, + { + Color: 'ACC_YELLOW_MYTHIC', + UpgradeType: + '/Lotus/Upgrades/Invigorations/ArchonCrystalUpgrades/ArchonCrystalUpgradeWarframeGlobeEffectEnergyMythic', + }, + { + Color: 'ACC_PURPLE', + UpgradeType: + '/Lotus/Upgrades/Invigorations/ArchonCrystalUpgrades/ArchonCrystalUpgradeWarframeCritDamageBoost', + }, + ], + FocusLens: '/Lotus/Upgrades/Focus/TacticLensLua', + ItemId: { + $oid: '5df7d224a38e4ab6e136bc93', + }, + }, + ], + Pistols: [ + { + ItemType: '/Lotus/Weapons/Corpus/Pistols/CrpBriefcaseAkimbo/CrpBriefcaseAkimboPistol', + Configs: [ + { + Skins: ['', '', '/Lotus/Upgrades/Skins/HolsterCustomizations/DaggerLowerBack'], + pricol: { + t0: -10461867, + t1: -1644569, + t2: -2228224, + t3: -2773927, + m0: -2544384, + m1: -11443299, + en: -2544384, + e1: -11443299, + }, + }, + { + Skins: ['', '', '/Lotus/Upgrades/Skins/HolsterCustomizations/DaggerLowerBack'], + pricol: { + t0: -1644569, + t1: -13881549, + t2: -1, + t3: -2544384, + m0: -2544384, + m1: -11443299, + en: -2544384, + e1: -11443299, + }, + }, + { + Skins: ['', '', '/Lotus/Upgrades/Skins/HolsterCustomizations/DaggerLowerBack'], + pricol: { + t0: -13684672, + t1: -7694178, + t2: -7834208, + t3: -4079167, + m0: -10098433, + m1: -12817248, + en: -14897947, + e1: -14897947, + }, + }, + ], + UpgradeType: '/Lotus/Weapons/Grineer/KuvaLich/Upgrades/InnateDamageRandomMod', + UpgradeFingerprint: { + compat: '/Lotus/Weapons/Corpus/Pistols/CrpBriefcaseAkimbo/CrpBriefcaseAkimboPistol', + buffs: [ + { + Tag: 'InnateRadDamage', + Value: 27852160, + }, + ], + }, + ItemName: '/Lotus/Language/Weapons/CrpBriefcaseAkimboPistolName|CAELLIA NOB', + Features: 35, + UpgradeVer: 101, + XP: 22047525, + Polarity: [ + { + Slot: 5, + Value: 'AP_ATTACK', + }, + { + Slot: 6, + Value: 'AP_ATTACK', + }, + { + Slot: 7, + Value: 'AP_ATTACK', + }, + { + Slot: 3, + Value: 'AP_TACTIC', + }, + ], + Polarized: 4, + ItemId: { + $oid: '61174cde4781733b8404d36d', + }, + }, + ], + LongGuns: [ + { + ItemType: '/Lotus/Weapons/Corpus/LongGuns/CrpShotgun/CrpShotgun', + Configs: [ + { + pricol: { + t0: -10461867, + t1: -1644569, + t2: -2228224, + t3: -2773927, + m0: -2544384, + m1: -11443299, + en: -2544384, + e1: -11443299, + }, + Skins: ['', '', '/Lotus/Upgrades/Skins/HolsterCustomizations/RifleUpperBack'], + }, + { + Skins: ['', '', '/Lotus/Upgrades/Skins/HolsterCustomizations/RifleUpperBack'], + pricol: { + t0: -1, + t1: -2544384, + t2: -13881549, + t3: -2179736, + m0: -11443299, + m1: -2544384, + en: -2544384, + e1: -2544384, + }, + }, + { + Skins: ['', '', '/Lotus/Upgrades/Skins/HolsterCustomizations/RifleUpperBack'], + pricol: { + t0: -1644569, + t1: -13881549, + t2: -1, + t3: -2544384, + m0: -2544384, + m1: -11443299, + en: -2544384, + e1: -11443299, + }, + }, + { + pricol: { + t0: -1402941, + t1: -2157700, + t2: -1743706, + t3: -1260454, + m0: -1472838, + m1: -11443299, + en: -1472838, + e1: -1472838, + }, + Skins: ['', '', '/Lotus/Upgrades/Skins/HolsterCustomizations/RifleUpperBack'], + }, + ], + UpgradeVer: 101, + XP: 58906193, + Polarized: 3, + Polarity: [ + { + Slot: 3, + Value: 'AP_ATTACK', + }, + { + Slot: 6, + Value: 'AP_ATTACK', + }, + { + Slot: 5, + Value: 'AP_ATTACK', + }, + ], + FocusLens: '/Lotus/Upgrades/Focus/DefenseLensLua', + Features: 3, + CustomizationSlotPurchases: 1, + ItemId: { + $oid: '59b5d762283a00580250fd4c', + }, + }, + ], + Melee: [ + { + ItemType: '/Lotus/Weapons/Corpus/Melee/Hammer/CorpusHammerWeapon', + Configs: [ + { + Skins: ['', '', '/Lotus/Upgrades/Skins/HolsterCustomizations/HeavyUpperBack'], + pricol: { + t0: -10461867, + t1: -1644569, + t2: -2228224, + t3: -2773927, + m0: -2544384, + m1: -11443299, + en: -2544384, + e1: -11443299, + }, + }, + { + Skins: ['', '', '/Lotus/Upgrades/Skins/HolsterCustomizations/HeavyUpperBack'], + pricol: { + t0: -14736862, + t1: -14736862, + t2: -13684430, + t3: -2228224, + en: -2228224, + m0: -2228224, + m1: -2228224, + }, + }, + { + Skins: ['', '', '/Lotus/Upgrades/Skins/HolsterCustomizations/HeavyUpperBack'], + pricol: { + t0: -394759, + t1: -394759, + t2: -407222, + t3: -394759, + en: -467609, + m0: -467609, + m1: -467609, + }, + }, + ], + UpgradeVer: 101, + XP: 17072657, + Polarized: 2, + Polarity: [ + { + Slot: 3, + Value: 'AP_ATTACK', + }, + { + Slot: 6, + Value: 'AP_ATTACK', + }, + ], + FocusLens: '/Lotus/Upgrades/Focus/PowerLensGreater', + Features: 35, + ItemId: { + $oid: '59b27a332183db91ce02ead9', + }, + }, + ], + XPInfo: [ + { + ItemType: '/Lotus/Weapons/Tenno/Rifle/StartingRifle', + XP: 1435196, + }, + { + ItemType: '/Lotus/Weapons/MK1Series/MK1Kunai', + XP: 641435, + }, + ], +}; diff --git a/test/unit/ability.spec.js b/test/unit/ability.spec.js new file mode 100644 index 0000000..9d966eb --- /dev/null +++ b/test/unit/ability.spec.js @@ -0,0 +1,19 @@ +import { assert } from 'chai'; +import { describe, it } from 'mocha'; + +import Ability from '../../src/Ability.js'; + +describe('Ability', () => { + describe('#constructor', () => { + it('handles some data', () => { + const simpleAbility = { + type: '/Lotus/Powersuits/PowersuitAbilities/SlashDashNewAbility', + used: 1000, + }; + + const ability = new Ability(simpleAbility); + + assert.strictEqual(ability.uniqueName, simpleAbility.type); + }); + }); +}); diff --git a/test/unit/archonCrystal.spec.js b/test/unit/archonCrystal.spec.js new file mode 100644 index 0000000..27e92cf --- /dev/null +++ b/test/unit/archonCrystal.spec.js @@ -0,0 +1,20 @@ +import { assert } from 'chai'; +import { describe, it } from 'mocha'; + +import ArchonCrystal from '../../src/ArchonCrystal.js'; + +describe('ArchonShard', () => { + describe('#constructor', () => { + it('handles some data', () => { + const shardData = { + Color: 'ACC_BLUE_MYTHIC', + UpgradeType: '/Lotus/Upgrades/Invigorations/ArchonCrystalUpgrades/ArchonCrystalUpgradeWarframeArmourMaxMythic', + }; + + const shard = new ArchonCrystal(shardData, 'en'); + + assert.strictEqual(shard.color, 'Tauforged Azure'); + assert.strictEqual(shard.modifier, '+225 Armor'); + }); + }); +}); diff --git a/test/unit/challengePrgoress.spec.js b/test/unit/challengePrgoress.spec.js new file mode 100644 index 0000000..39631d0 --- /dev/null +++ b/test/unit/challengePrgoress.spec.js @@ -0,0 +1,16 @@ +import { assert } from 'chai'; +import { describe, it } from 'mocha'; + +import ChallengeProgress from '../../src/ChallengeProgress.js'; + +describe('ChallengeProgress()', () => { + describe('#constructor', () => { + it('handle some data', () => { + const data = { Name: 'RadioLegionIntermission9Syndicate', Progress: 240000 }; + const challenge = new ChallengeProgress(data); + + assert.strictEqual(challenge.name, 'RadioLegionIntermission9Syndicate'); + assert.strictEqual(challenge.progress, 240000); + }); + }); +}); diff --git a/test/unit/challengeProgress.spec.js b/test/unit/challengeProgress.spec.js new file mode 100644 index 0000000..eb91c1f --- /dev/null +++ b/test/unit/challengeProgress.spec.js @@ -0,0 +1,19 @@ +import { assert } from 'chai'; +import { describe, it } from 'mocha'; + +import ChallengeProgress from '../../src/ChallengeProgress.js'; + +describe('ChallengeProgress', () => { + describe('#constructor', () => { + it('handles some data', () => { + const challenge = { + Name: 'Play100Hours', + Progress: 50, + }; + + const progress = new ChallengeProgress(challenge); + + assert.equal(progress.name, challenge.Name); + }); + }); +}); diff --git a/test/unit/enemy.spec.js b/test/unit/enemy.spec.js new file mode 100644 index 0000000..7d5c152 --- /dev/null +++ b/test/unit/enemy.spec.js @@ -0,0 +1,23 @@ +import { assert } from 'chai'; +import { describe, it } from 'mocha'; + +import Enemy from '../../src/Enemy.js'; + +describe('Enemy', () => { + describe('#constructor', () => { + it('handle enemy data', () => { + const simpleEnemy = { + type: '/Lotus/Powersuits/PowersuitAbilities/SlashDashNewAbility', + kill: 1000, + headshots: 30, + executions: 5, + assists: 1, + deaths: 50, + }; + + const enemy = new Enemy(simpleEnemy); + + assert.strictEqual(enemy.uniqueName, simpleEnemy.type); + }); + }); +}); diff --git a/test/unit/intrinsics.spec.js b/test/unit/intrinsics.spec.js new file mode 100644 index 0000000..3c2fbc6 --- /dev/null +++ b/test/unit/intrinsics.spec.js @@ -0,0 +1,25 @@ +import { assert } from 'chai'; +import { describe, it } from 'mocha'; + +import Intrinsics from '../../src/Intrinsics.js'; + +describe('Intrinsics', () => { + describe('#constructor', () => { + it('handles some skills', () => { + const playerSkills = { + LPP_SPACE: 125500, + LPS_PILOTING: 10, + LPS_ENGINEERING: 9, + LPS_GUNNERY: 9, + LPS_TACTICAL: 8, + LPS_COMMAND: 8, + LPP_DRIFTER: 182000, + LPS_DRIFT_RIDING: 1, + }; + + const intrinsics = new Intrinsics(playerSkills); + + assert.strictEqual(intrinsics.space, playerSkills.LPP_SPACE); + }); + }); +}); diff --git a/test/unit/itemConfig.spec.js b/test/unit/itemConfig.spec.js new file mode 100644 index 0000000..b833161 --- /dev/null +++ b/test/unit/itemConfig.spec.js @@ -0,0 +1,75 @@ +import { assert } from 'chai'; +import { describe, it } from 'mocha'; + +import ItemConfig from '../../src/ItemConfig.js'; + +describe('ItemConfig', () => { + describe('#constructor', () => { + it('should handle creating items when parsing data', () => { + const config = { + Skins: [ + '/Lotus/Upgrades/Skins/Berserker/ValkyrDeluxeHelmet', + '/Lotus/Upgrades/Skins/Clan/ClanEmblemItem', + '', + '/Lotus/Upgrades/Skins/Berserker/BerserkerDeluxeNobleAnims', + '/Lotus/Upgrades/Skins/Armor/WarframeDefaults/EmptyCustomization', + '/Lotus/Upgrades/Skins/Berserker/ValkyrPrimeDangles', + '', + '', + '', + '', + ], + pricol: { + t0: -2544384, + t1: -13881549, + t2: -2544384, + m0: -2544384, + m1: -11443299, + en: -2544384, + e1: -11443299, + }, + sigcol: { + t0: -2131101191, + t1: -243302404, + t2: -2132934656, + en: -2130771329, + }, + attcol: { + t0: -2544384, + t1: -13881549, + t2: -2544384, + t3: -2176318, + m0: -2544384, + m1: -11443299, + en: -2544384, + e1: -11443299, + }, + syancol: { + t0: -2544384, + t1: -13881549, + t2: -2544384, + t3: -2176318, + m0: -2544384, + m1: -11443299, + en: -2544384, + e1: -11443299, + }, + }; + + const { skins, primaryColor } = new ItemConfig(config); + + assert.strictEqual( + skins.map((s) => s.uniqueName).includes('/Lotus/Upgrades/Skins/Berserker/ValkyrDeluxeHelmet'), + true + ); + assert.strictEqual(skins.includes(undefined), false); + assert.exists(primaryColor); + assert.notExists(primaryColor.primaryColor); + const primary = primaryColor.primary.toJSON(); + assert.exists(primary); + assert.strictEqual(primary.hex, '26D300'); + assert.strictEqual(!!primary.isTransparent, false); + assert.isNotEmpty(primaryColor.emissive); + }); + }); +}); diff --git a/test/unit/loudoutInventory.spec.js b/test/unit/loudoutInventory.spec.js new file mode 100644 index 0000000..d66ea22 --- /dev/null +++ b/test/unit/loudoutInventory.spec.js @@ -0,0 +1,15 @@ +import { assert } from 'chai'; +import { describe, it } from 'mocha'; + +import LoadOutInventory from '../../src/LoadOutInventory.js'; +import data from '../data/loadoutInventory.data.js'; + +describe('LoudOutInventory', () => { + describe('#contructor', () => { + it('handle some data', () => { + const inventory = new LoadOutInventory(data); + + assert.strictEqual(inventory.xpInfo[0].item.name, 'Mk1-Braton'); + }); + }); +}); diff --git a/test/unit/mock.spec.js b/test/unit/mock.spec.js new file mode 100644 index 0000000..b17932b --- /dev/null +++ b/test/unit/mock.spec.js @@ -0,0 +1,16 @@ +import ProfileParser from '@wfcd/profile-parser'; +import { assert } from 'chai'; +import { describe, it } from 'mocha'; + +import example from '../data/OrnsteinTheSlayer.json' assert { type: 'json' }; + +// Test the main class +describe('Mock ProfileParser', () => { + describe('#constructor', () => { + it('should handle real data', function () { + this.timeout(10000); + + assert.isOk(new ProfileParser(example, 'en')); + }); + }); +}); diff --git a/test/unit/xpinfo.spec.js b/test/unit/xpinfo.spec.js new file mode 100644 index 0000000..d0e78f4 --- /dev/null +++ b/test/unit/xpinfo.spec.js @@ -0,0 +1,20 @@ +import { assert } from 'chai'; +import { describe, it } from 'mocha'; + +import XpInfo from '../../src/XpInfo.js'; + +describe('XpInfo', () => { + describe('#constructor', () => { + it('handle an item', () => { + const data = { + ItemType: '/Lotus/Weapons/Grineer/LongGuns/GrineerAssaultRifle/TwinGrakatas', + XP: 785691, + }; + + const xp = new XpInfo(data, 'en'); + + assert.strictEqual(xp.uniqueName, '/Lotus/Weapons/Grineer/LongGuns/GrineerAssaultRifle/TwinGrakatas'); + assert.strictEqual(xp.item.name, 'Twin Grakatas'); + }); + }); +}); diff --git a/tsconfig.declaration.json b/tsconfig.declaration.json new file mode 100644 index 0000000..216a4a1 --- /dev/null +++ b/tsconfig.declaration.json @@ -0,0 +1,21 @@ +{ + "inlcude": [ + "lib/**/*.js" + ], + "exclude": [ + "test/**/*.*", + "types/**/*.*", + "node_modules/**/*.*", + "coverage/**/*.*" + ], + "compilerOptions": { + "outDir": "./types", + "declaration": true, + "noEmit": false, + "allowJs": true, + "emitDeclarationOnly": true, + "lib": [ + "es6" + ] + } +} \ No newline at end of file