diff --git a/examples/coffee-warehouse-nextjs/LICENSE b/examples/coffee-warehouse-nextjs/LICENSE index d9b50171..51f90632 100644 --- a/examples/coffee-warehouse-nextjs/LICENSE +++ b/examples/coffee-warehouse-nextjs/LICENSE @@ -1,6 +1,6 @@ This project has been released under the [Apache License, version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html), the text of which is included below. This license applies ONLY to the source of this repository and does not extend to any other Kendo UI distribution or variant, or any other 3rd party libraries used in a repository. For licensing information about KendoReact, see the [License Agreements page](https://www.telerik.com/purchase/license-agreement/progress-kendoreact) at [KendoReact.com](http://www.kendoreact.com). -> Copyright © 2023 Progress Software Corporation and/or its subsidiaries or affiliates. +> Copyright © 2024 Progress Software Corporation and/or its subsidiaries or affiliates. > Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/examples/react-coffee-warehouse/.github/workflows/ci.yml b/examples/react-coffee-warehouse/.github/workflows/ci.yml new file mode 100644 index 00000000..38e66526 --- /dev/null +++ b/examples/react-coffee-warehouse/.github/workflows/ci.yml @@ -0,0 +1,38 @@ +name: CI + +on: + workflow_dispatch: + schedule: + - cron: "0 0 * * *" + push: + branches-ignore: + - master + - develop + - release-* + +jobs: + build: + strategy: + matrix: + version: [16, 18, 20] + + runs-on: ubuntu-latest + + concurrency: + group: ${{ github.ref }}-build-${{ matrix.version }} + cancel-in-progress: true + + steps: + - name: Setup NodeJS + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.version }} + + - name: Check out repository + uses: actions/checkout@v3 + + - name: Install Modules + run: npm ci + + - name: Build + run: npm run build \ No newline at end of file diff --git a/examples/react-coffee-warehouse/.gitignore b/examples/react-coffee-warehouse/.gitignore new file mode 100644 index 00000000..357d801f --- /dev/null +++ b/examples/react-coffee-warehouse/.gitignore @@ -0,0 +1,27 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# production +/build + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local +**/kendo-ui-license** + +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# License +kendo-ui-license.txt \ No newline at end of file diff --git a/examples/react-coffee-warehouse/LICENSE b/examples/react-coffee-warehouse/LICENSE new file mode 100644 index 00000000..20777e9d --- /dev/null +++ b/examples/react-coffee-warehouse/LICENSE @@ -0,0 +1,15 @@ +This project has been released under the [Apache License, version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html), the text of which is included below. This license applies ONLY to the source of this repository and does not extend to any other Kendo UI distribution or variant, or any other 3rd party libraries used in a repository. For licensing information about KendoReact, see the [License Agreements page](https://www.telerik.com/purchase/license-agreement/progress-kendoreact) at [KendoReact.com](http://www.kendoreact.com). + +> Copyright © 2024 Progress Software Corporation and/or its subsidiaries or affiliates. + +> Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + +> [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +> Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. \ No newline at end of file diff --git a/examples/react-coffee-warehouse/README.md b/examples/react-coffee-warehouse/README.md new file mode 100644 index 00000000..7a923f2a --- /dev/null +++ b/examples/react-coffee-warehouse/README.md @@ -0,0 +1,83 @@ +This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). + +## Prerequisites + +Make sure that your current Node.js version is compatible with version `9.0.0` of node-sass. More information on version compatibility can be found here: https://github.com/sass/node-sass#node-version-support-policy + +If you do not have python installed along with all the node-gyp dependencies, first download python 2.7: https://www.python.org/download/releases/2.7/ + +Then open Powershell or Git Bash with administrator privileges and execute: + +1. npm install --global --production windows-build-tools + +2. npm install --global node-gyp + +3. set the python environment variable using npm config set python "path-to-python". For example: npm config set python "%USERPROFILE%\.windows-build-tools\python27\python.exe" + + +## Available Scripts + +In the project directory, you can run: + +### `npm start` + +Runs the app in the development mode.
+Open [http://localhost:3000](http://localhost:3000) to view it in the browser. + +The page will reload if you make edits.
+You will also see any lint errors in the console. + +### `npm test` + +Launches the test runner in the interactive watch mode.
+See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. + +### `npm run build` + +Builds the app for production to the `build` folder.
+It correctly bundles React in production mode and optimizes the build for the best performance. + +The build is minified and the filenames include the hashes.
+Your app is ready to be deployed! + +See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. + +### `npm run eject` + +**Note: this is a one-way operation. Once you `eject`, you can’t go back!** + +If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. + +Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. + +You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. + +## Learn More + +You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). + +To learn React, check out the [React documentation](https://reactjs.org/). + +### Code Splitting + +This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting + +### Analyzing the Bundle Size + +This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size + +### Making a Progressive Web App + +This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app + +### Advanced Configuration + +This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration + +### Deployment + +This section has moved here: https://facebook.github.io/create-react-app/docs/deployment + +### `npm run build` fails to minify + +This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify diff --git a/examples/react-coffee-warehouse/package-lock.json b/examples/react-coffee-warehouse/package-lock.json new file mode 100644 index 00000000..0260ba70 --- /dev/null +++ b/examples/react-coffee-warehouse/package-lock.json @@ -0,0 +1,23011 @@ +{ + "name": "coffee-warehouse", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "coffee-warehouse", + "version": "0.1.0", + "dependencies": { + "@progress/kendo-data-query": "^1.7.0", + "@progress/kendo-date-math": "^1.5.12", + "@progress/kendo-drawing": "^1.19.0", + "@progress/kendo-licensing": "^1.3.3", + "@progress/kendo-react-buttons": "^7.0.2", + "@progress/kendo-react-charts": "^7.0.2", + "@progress/kendo-react-common": "^7.0.2", + "@progress/kendo-react-data-tools": "^7.0.2", + "@progress/kendo-react-dateinputs": "^7.0.2", + "@progress/kendo-react-dialogs": "^7.0.2", + "@progress/kendo-react-dropdowns": "^7.0.2", + "@progress/kendo-react-editor": "^7.0.2", + "@progress/kendo-react-excel-export": "^7.0.2", + "@progress/kendo-react-form": "^7.0.2", + "@progress/kendo-react-grid": "^7.0.2", + "@progress/kendo-react-indicators": "^7.0.2", + "@progress/kendo-react-inputs": "^7.0.2", + "@progress/kendo-react-intl": "^7.0.2", + "@progress/kendo-react-labels": "^7.0.2", + "@progress/kendo-react-layout": "^7.0.2", + "@progress/kendo-react-pdf": "^7.0.2", + "@progress/kendo-react-popup": "^7.0.2", + "@progress/kendo-react-progressbars": "^7.0.2", + "@progress/kendo-react-scheduler": "^7.0.2", + "@progress/kendo-react-treeview": "^7.0.2", + "@progress/kendo-react-upload": "^7.0.2", + "@progress/kendo-svg-icons": "^2.1.0", + "@testing-library/jest-dom": "^6.1.5", + "@testing-library/react": "^14.1.2", + "@testing-library/user-event": "^14.5.1", + "cldr-core": "43.1.0", + "cldr-dates-full": "^43.1.0", + "cldr-numbers-full": "^43.1.0", + "hammerjs": "^2.0.8", + "node-sass": "^9.0.0", + "react": "18.2.0", + "react-dom": "18.2.0", + "react-router-dom": "^6.21.0", + "react-scripts": "5.0.1" + }, + "devDependencies": { + "gh-pages": "^6.1.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==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@adobe/css-tools": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.3.2.tgz", + "integrity": "sha512-DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==" + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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==", + "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==", + "dependencies": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/code-frame/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==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/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==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/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==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/code-frame/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==" + }, + "node_modules/@babel/code-frame/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==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/code-frame/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==", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/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==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "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==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.6.tgz", + "integrity": "sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==", + "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.6", + "@babel/parser": "^7.23.6", + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.6", + "@babel/types": "^7.23.6", + "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/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/eslint-parser": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.23.3.tgz", + "integrity": "sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==", + "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/eslint-parser/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==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@babel/eslint-parser/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", + "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", + "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==", + "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==", + "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==", + "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-compilation-targets/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==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.6.tgz", + "integrity": "sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==", + "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-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "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==", + "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-create-regexp-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.4.tgz", + "integrity": "sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.6.tgz", + "integrity": "sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==", + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.6", + "@babel/types": "^7.23.6" + }, + "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==", + "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/highlight/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==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/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==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/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==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/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==" + }, + "node_modules/@babel/highlight/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==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/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==", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/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==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz", + "integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==", + "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==", + "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==", + "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.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.3.tgz", + "integrity": "sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==", + "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-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.23.6.tgz", + "integrity": "sha512-D7Ccq9LfkBFnow3azZGJvZYgcfeqAw3I1e5LoTpj6UKIFQilh8yqXsIGcRIqbBdsPWIz+Ze7ZZfggSj62Qp+Fg==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.23.6", + "@babel/helper-plugin-utils": "^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", + "@babel/plugin-syntax-decorators": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@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-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.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==", + "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==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "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==", + "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==", + "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-decorators": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.23.3.tgz", + "integrity": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==", + "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-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==", + "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==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.23.3.tgz", + "integrity": "sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==", + "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-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==", + "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==", + "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==", + "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==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", + "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-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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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-typescript": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", + "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-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==", + "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==", + "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.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.4.tgz", + "integrity": "sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.5.tgz", + "integrity": "sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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-flow-strip-types": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.23.3.tgz", + "integrity": "sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-flow": "^7.23.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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz", + "integrity": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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==", + "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-react-constant-elements": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.23.3.tgz", + "integrity": "sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw==", + "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-react-display-name": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz", + "integrity": "sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==", + "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-react-jsx": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz", + "integrity": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.23.3", + "@babel/types": "^7.23.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz", + "integrity": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.23.3.tgz", + "integrity": "sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@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==", + "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==", + "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-runtime": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.6.tgz", + "integrity": "sha512-kF1Zg62aPseQ11orDhFRw+aPG/eynNQtI+TyY+m33qJa2cJ5EEvza2P2BNTIA9E5MyqFABHEyY6CPHwgdy9aNg==", + "dependencies": { + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "babel-plugin-polyfill-corejs2": "^0.4.6", + "babel-plugin-polyfill-corejs3": "^0.8.5", + "babel-plugin-polyfill-regenerator": "^0.5.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "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==", + "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==", + "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==", + "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==", + "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==", + "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-typescript": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.6.tgz", + "integrity": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.23.6", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-typescript": "^7.23.3" + }, + "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==", + "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==", + "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==", + "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==", + "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/preset-env": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.6.tgz", + "integrity": "sha512-2XPn/BqKkZCpzYhUUNZ1ssXw7DcXfKQEjv/uXZUXgaebCMYmkEsfZ2yY+vv+xtXv50WmL5SGhyB6/xsWxIvvOQ==", + "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.3", + "@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.4", + "@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.5", + "@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.3", + "@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.6", + "babel-plugin-polyfill-corejs3": "^0.8.5", + "babel-plugin-polyfill-regenerator": "^0.5.3", + "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-env/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "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==", + "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/preset-react": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.23.3.tgz", + "integrity": "sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-transform-react-display-name": "^7.23.3", + "@babel/plugin-transform-react-jsx": "^7.22.15", + "@babel/plugin-transform-react-jsx-development": "^7.22.5", + "@babel/plugin-transform-react-pure-annotations": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz", + "integrity": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.15", + "@babel/plugin-syntax-jsx": "^7.23.3", + "@babel/plugin-transform-modules-commonjs": "^7.23.3", + "@babel/plugin-transform-typescript": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.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==" + }, + "node_modules/@babel/runtime": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.6.tgz", + "integrity": "sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "dependencies": { + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.6.tgz", + "integrity": "sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==", + "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.6", + "@babel/types": "^7.23.6", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz", + "integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==", + "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==" + }, + "node_modules/@csstools/normalize.css": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.0.0.tgz", + "integrity": "sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==" + }, + "node_modules/@csstools/postcss-cascade-layers": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", + "integrity": "sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==", + "dependencies": { + "@csstools/selector-specificity": "^2.0.2", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-color-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz", + "integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-font-format-keywords": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz", + "integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-hwb-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz", + "integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-ic-unit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz", + "integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-is-pseudo-class": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz", + "integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==", + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-nested-calc": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz", + "integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-normalize-display-values": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz", + "integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-oklab-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz", + "integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-progressive-custom-properties": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz", + "integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/@csstools/postcss-stepped-value-functions": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz", + "integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-text-decoration-shorthand": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz", + "integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-trigonometric-functions": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz", + "integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-unset-value": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz", + "integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/selector-specificity": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", + "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss-selector-parser": "^6.0.10" + } + }, + "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==", + "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/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "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==", + "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==" + }, + "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==", + "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==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@eslint/eslintrc/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==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@gar/promisify": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", + "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.13", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", + "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "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==", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", + "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==" + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/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==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/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==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/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==", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "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==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/console/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/console/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/console/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/core/node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "optional": true, + "peer": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/core/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@jest/core/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/@jest/core/node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-resolve": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "optional": true, + "peer": true, + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "optional": true, + "peer": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "optional": true, + "peer": true + }, + "node_modules/@jest/core/node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/core/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==", + "optional": true, + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "optional": true, + "peer": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/environment/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/environment/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", + "optional": true, + "peer": true, + "dependencies": { + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", + "optional": true, + "peer": true, + "dependencies": { + "jest-get-type": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/fake-timers/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/types": "^29.6.3", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/reporters": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", + "optional": true, + "peer": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^6.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/reporters/node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "optional": true, + "peer": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", + "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", + "optional": true, + "peer": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/reporters/node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/@jest/reporters/node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "optional": true, + "peer": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters/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==", + "optional": true, + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "optional": true, + "peer": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "optional": true, + "peer": true, + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", + "optional": true, + "peer": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.18", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-result/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-result/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/test-result": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "optional": true, + "peer": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer/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==", + "optional": true, + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/@jest/transform/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "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==", + "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.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "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==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "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==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.20", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", + "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" + }, + "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==", + "dependencies": { + "eslint-scope": "5.1.1" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/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==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "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==", + "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==", + "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==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@npmcli/fs": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.2.tgz", + "integrity": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==", + "dependencies": { + "@gar/promisify": "^1.1.3", + "semver": "^7.3.5" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/@npmcli/move-file": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.1.tgz", + "integrity": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==", + "deprecated": "This functionality has been moved to @npmcli/fs", + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.11", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.11.tgz", + "integrity": "sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==", + "dependencies": { + "ansi-html-community": "^0.0.8", + "common-path-prefix": "^3.0.0", + "core-js-pure": "^3.23.3", + "error-stack-parser": "^2.0.6", + "find-up": "^5.0.0", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.4", + "schema-utils": "^3.0.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.13" + }, + "peerDependencies": { + "@types/webpack": "4.x || 5.x", + "react-refresh": ">=0.10.0 <1.0.0", + "sockjs-client": "^1.4.0", + "type-fest": ">=0.17.0 <5.0.0", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x || 4.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/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==", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/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==", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/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==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/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==", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@progress/jszip-esm": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@progress/jszip-esm/-/jszip-esm-1.0.3.tgz", + "integrity": "sha512-qu5qeIlUsJX0Z2oi3Aax3gvfjKrrtVzQ2LIEhmw2CVWffZ0JvtifiomyJOc0ZFk7oEyEyrVvab97bqKkNCKvfQ==", + "dependencies": { + "@progress/pako-esm": "^1.0.1" + } + }, + "node_modules/@progress/kendo-charts": { + "version": "1.32.1", + "resolved": "https://registry.npmjs.org/@progress/kendo-charts/-/kendo-charts-1.32.1.tgz", + "integrity": "sha512-7G08KNnJ7SVzG0t0aOI4UygzpPAzz5FhlSee/0EMUikCc5c/k5e3AKE2JbmJYr3jkKFChnZpy+q0nIT4F3s4Fg==", + "peerDependencies": { + "@progress/kendo-drawing": "^1.0.0" + } + }, + "node_modules/@progress/kendo-data-query": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/@progress/kendo-data-query/-/kendo-data-query-1.7.0.tgz", + "integrity": "sha512-mB+2WZFAZghxRwBhgWiJIysx7qcFkilnbcZWq0AfQ3KXfC3N5IY/EuKJNijhYrTdauYA1eL1GMe2FHsOWAlRHA==", + "dependencies": { + "tslib": "^1.7.0" + } + }, + "node_modules/@progress/kendo-date-math": { + "version": "1.5.12", + "resolved": "https://registry.npmjs.org/@progress/kendo-date-math/-/kendo-date-math-1.5.12.tgz", + "integrity": "sha512-cELK9aNVUu20a71FLnYd7JhBhCXk8NsFd9tu6n/LZJvOYzCYQ6J4XIVDc2RwLvbrD7MlBw4YARX1IIsESg7thg==", + "dependencies": { + "tslib": "^1.7.0" + } + }, + "node_modules/@progress/kendo-draggable": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-draggable/-/kendo-draggable-3.0.2.tgz", + "integrity": "sha512-B5bR1bEtLZ4i0eCtbT1umem3w9dC82QZ8wJ9/MMjcS0/luBiARnIacRM69b0PYN+uESztBuzKrrTpW70FCT47A==" + }, + "node_modules/@progress/kendo-draggable-common": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@progress/kendo-draggable-common/-/kendo-draggable-common-0.2.3.tgz", + "integrity": "sha512-e1FraFsT7zwevswzZlQYL//K+fzmRUvkr/4emp51dzkARLDtGd95BtPNSoXYRG5xYHeueKBS75hzVwQI6Dm3Dg==", + "dependencies": { + "tslib": "^1.7.0" + } + }, + "node_modules/@progress/kendo-drawing": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@progress/kendo-drawing/-/kendo-drawing-1.19.0.tgz", + "integrity": "sha512-4gB+hEPN4GZMcGVFFEDhGqnhqtFIdqIZt5KNNR5RFZGU6+TxZjZEBEot+f0L3RoU8LpcFsaifd2mFOAMZombtQ==", + "dependencies": { + "@progress/pako-esm": "^1.0.1" + } + }, + "node_modules/@progress/kendo-editor-common": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/@progress/kendo-editor-common/-/kendo-editor-common-1.11.0.tgz", + "integrity": "sha512-rPL2xKthPwtGB/wsV++JzfGS7HNw3+1jY4ozp1vWJ3YAbbMkNQWlGUlpv1sW2ZfVnrNXxawYfTfWICXgk8KkkQ==", + "dependencies": { + "prosemirror-commands": "1.5.2", + "prosemirror-dropcursor": "1.8.1", + "prosemirror-gapcursor": "1.3.2", + "prosemirror-history": "1.3.2", + "prosemirror-inputrules": "1.2.1", + "prosemirror-keymap": "1.2.2", + "prosemirror-model": "1.19.3", + "prosemirror-schema-list": "1.3.0", + "prosemirror-state": "1.4.3", + "prosemirror-tables": "1.3.4", + "prosemirror-transform": "1.8.0", + "prosemirror-view": "1.32.4", + "tslib": "^2.4.0" + } + }, + "node_modules/@progress/kendo-editor-common/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@progress/kendo-file-saver": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@progress/kendo-file-saver/-/kendo-file-saver-1.1.1.tgz", + "integrity": "sha512-mo0Cw3MLoLcx2bA+Ma/VAxkM9vHSJ4Sg0vgh6U1ZIvPXmnfO8Dgsdiv/475lafyju0kG8KOhl3bcVagCF71glQ==" + }, + "node_modules/@progress/kendo-inputs-common": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@progress/kendo-inputs-common/-/kendo-inputs-common-3.1.0.tgz", + "integrity": "sha512-lOpdICbRtrkYU+KOiNylTudFr266oTSgzdQ/H5R9cIK9CJvKXhU5Qdtq3gcx9PL/vJdPnbt3nj3YmuDn2hqp5Q==", + "peer": true, + "dependencies": { + "tslib": "^2.3.1" + }, + "peerDependencies": { + "@progress/kendo-drawing": "^1.17.0" + } + }, + "node_modules/@progress/kendo-inputs-common/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "peer": true + }, + "node_modules/@progress/kendo-intl": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@progress/kendo-intl/-/kendo-intl-3.1.1.tgz", + "integrity": "sha512-Dv+j4rQTSODq3EMTlzvWMBsDmnbupAgMUFmVG6wbgg29xtvQTYDoKej4m3POazh7BitdlascbP+2bqs/9Xcm3g==", + "peer": true + }, + "node_modules/@progress/kendo-licensing": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@progress/kendo-licensing/-/kendo-licensing-1.3.5.tgz", + "integrity": "sha512-HWxM6Ov1g0LvOQN9sp+3N1h+YpF0OKq7rWW2bqoJnkyHy8woC8Ve6ew6KmHdbeaKMgikVOYgyo5NTjef2j+gVQ==", + "hasInstallScript": true, + "dependencies": { + "jsonwebtoken": "^9.0.2" + }, + "bin": { + "kendo-ui-license": "bin/kendo-ui-license.js" + } + }, + "node_modules/@progress/kendo-ooxml": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@progress/kendo-ooxml/-/kendo-ooxml-1.8.0.tgz", + "integrity": "sha512-oT/XKi2rd5XPkea3kHD1S6YAXfnNxzB8NCEzVlAd2PjFeAcuH0spNd3QreLSGlMlFpAxE00wIeAx0A+M0s8ogQ==", + "dependencies": { + "@progress/jszip-esm": "^1.0.3", + "@progress/pako-esm": "^1.0.1" + } + }, + "node_modules/@progress/kendo-popup-common": { + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-popup-common/-/kendo-popup-common-1.9.2.tgz", + "integrity": "sha512-Gs50UafJcERiGuSP/47Yg7ftPX3HQXiK5M9zHB8sHSoc1/AEYd0/Sj5wh8UrVVBAM9b0pUTwmEuzQ/D5yDDd2Q==", + "peer": true + }, + "node_modules/@progress/kendo-react-animation": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-animation/-/kendo-react-animation-7.0.2.tgz", + "integrity": "sha512-nz3p8UxrH3ZyhRI8PLdBAx2iPGZh/Vwi3UVz1jmTdihJZmqAQYYbUdxVVoh99MPKP8ky7ZEvjnRgLouhiTZ+eg==", + "peer": true, + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-common": "7.0.2", + "@progress/kendo-svg-icons": "^2.0.0", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-transition-group": "4.4.2" + } + }, + "node_modules/@progress/kendo-react-buttons": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-buttons/-/kendo-react-buttons-7.0.2.tgz", + "integrity": "sha512-d7yVZhniM8TvjSVtpuFQDcfxpPeY6hTL4k0/cb+5Mmy9ys7f4RQqG28NdQ988TqtXS2q8t+DI0qFEccryW83LQ==", + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-common": "7.0.2", + "@progress/kendo-react-popup": "7.0.2", + "@progress/kendo-svg-icons": "^2.0.0", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-charts": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-charts/-/kendo-react-charts-7.0.2.tgz", + "integrity": "sha512-YREgH1AIhnpyQuxrhemaBybHafJrVqCZo3Aoc5w+gv7Te5HzVzZYALJpHk3zen1Rrte4fiHEc4VHUNs7MkwFIQ==", + "dependencies": { + "@progress/kendo-charts": "^1.32.0", + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-drawing": "^1.17.2", + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-common": "7.0.2", + "@progress/kendo-react-intl": "7.0.2", + "@progress/kendo-react-layout": "7.0.2", + "@progress/kendo-react-popup": "7.0.2", + "@progress/kendo-svg-icons": "^2.0.0", + "hammerjs": "^2.0.0", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-common": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-common/-/kendo-react-common-7.0.2.tgz", + "integrity": "sha512-HKn6m39DqKPKwek4bjhHgWyBzRJoxoR94x9gRfBWpf69bbkzI2x3CjRQof7m1g88InE3J3vh7EUVqv5GmKsGag==", + "dependencies": { + "@progress/kendo-draggable-common": "^0.2.3", + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-svg-icons": "^2.0.0", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-data-tools": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-data-tools/-/kendo-react-data-tools-7.0.2.tgz", + "integrity": "sha512-AbxgRAbOsog3WGBrZt32tTfjuWj9Acow58yk6uLnC00Q6GWjWlDH8adVIyNb/+qHs7L2pS5G1mWf+QV/e69PcQ==", + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-data-query": "^1.0.0", + "@progress/kendo-drawing": "^1.17.2", + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-animation": "7.0.2", + "@progress/kendo-react-buttons": "7.0.2", + "@progress/kendo-react-common": "7.0.2", + "@progress/kendo-react-dateinputs": "7.0.2", + "@progress/kendo-react-dropdowns": "7.0.2", + "@progress/kendo-react-inputs": "7.0.2", + "@progress/kendo-react-intl": "7.0.2", + "@progress/kendo-react-popup": "7.0.2", + "@progress/kendo-svg-icons": "^2.0.0", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-dateinputs": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-dateinputs/-/kendo-react-dateinputs-7.0.2.tgz", + "integrity": "sha512-8vvnvsaQDOFrzNDkdrrViEFEkPdTr14wccydTXjvDbZYu++1AICatDVFcArFpfxXJIPlizMFmaigykzFjWj6LQ==", + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-date-math": "^1.4.0", + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-buttons": "7.0.2", + "@progress/kendo-react-common": "7.0.2", + "@progress/kendo-react-intl": "7.0.2", + "@progress/kendo-react-labels": "7.0.2", + "@progress/kendo-react-layout": "7.0.2", + "@progress/kendo-react-popup": "7.0.2", + "@progress/kendo-svg-icons": "^2.0.0", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-dialogs": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-dialogs/-/kendo-react-dialogs-7.0.2.tgz", + "integrity": "sha512-9qbqOLNuVYqRt/JNguijRRP7+iF/JAmrClVHI97tOdVn+NaHXr0RX19WYb6P2YzCAV60C+pTg8z1L2hpFzXbLg==", + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-buttons": "7.0.2", + "@progress/kendo-react-common": "7.0.2", + "@progress/kendo-svg-icons": "^2.0.0", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-dropdowns": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-dropdowns/-/kendo-react-dropdowns-7.0.2.tgz", + "integrity": "sha512-4UELakxPpnWgunIL5lMSZmUU3I7JUstk/Yg9vQlIZ8OqUwBJqlXVZjF1Togd+mGes5rXSupXhnJVh3dLpiUaFg==", + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-buttons": "7.0.2", + "@progress/kendo-react-common": "7.0.2", + "@progress/kendo-react-inputs": "7.0.2", + "@progress/kendo-react-intl": "7.0.2", + "@progress/kendo-react-labels": "7.0.2", + "@progress/kendo-react-layout": "7.0.2", + "@progress/kendo-react-popup": "7.0.2", + "@progress/kendo-react-treeview": "7.0.2", + "@progress/kendo-svg-icons": "^2.0.0", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-editor": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-editor/-/kendo-react-editor-7.0.2.tgz", + "integrity": "sha512-HTWTdD9yE1tWCmtVK/M2hk7FnwCl/CBKEoTN4+QNWMZiFNW8fyqmpo1jmdGJdVrQic4xFuXGAtQytR1rg/NeTw==", + "dependencies": { + "@progress/kendo-editor-common": "1.11.0", + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-drawing": "^1.17.2", + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-buttons": "7.0.2", + "@progress/kendo-react-common": "7.0.2", + "@progress/kendo-react-dialogs": "7.0.2", + "@progress/kendo-react-dropdowns": "7.0.2", + "@progress/kendo-react-form": "7.0.2", + "@progress/kendo-react-inputs": "7.0.2", + "@progress/kendo-react-intl": "7.0.2", + "@progress/kendo-react-layout": "7.0.2", + "@progress/kendo-react-pdf": "7.0.2", + "@progress/kendo-react-popup": "7.0.2", + "@progress/kendo-svg-icons": "^2.0.0", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-excel-export": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-excel-export/-/kendo-react-excel-export-7.0.2.tgz", + "integrity": "sha512-LvX/eUAySU7uAZx4HMJ0MpgQI/v0pviDOFy4SxKLXEjds2HTFHewFCibDrSdfj1RmmqiNfjGTn6MzaiZzz+OpQ==", + "dependencies": { + "@progress/kendo-file-saver": "^1.0.0", + "@progress/kendo-ooxml": "^1.6.3", + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-data-query": "^1.0.0", + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-common": "7.0.2", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-form": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-form/-/kendo-react-form-7.0.2.tgz", + "integrity": "sha512-ILOu15yMoIlNTdnpN2JYCu9S+UdLtffALG84jOkXroffHa8PsKYB1aC3Rivb4DnnygKTTc+fp8jlFyRj1O7mzA==", + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-common": "7.0.2", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-grid": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-grid/-/kendo-react-grid-7.0.2.tgz", + "integrity": "sha512-/ZSY9qjBEvKQ25LSITKKUm1Sks0TBxNhbWI3rkhxzM9ItVUFjxt8+r5Mn9j0D4PtcGwPhui88/VygKRW15RxmA==", + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-data-query": "^1.0.0", + "@progress/kendo-drawing": "^1.17.2", + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-animation": "7.0.2", + "@progress/kendo-react-buttons": "7.0.2", + "@progress/kendo-react-common": "7.0.2", + "@progress/kendo-react-data-tools": "7.0.2", + "@progress/kendo-react-dateinputs": "7.0.2", + "@progress/kendo-react-dropdowns": "7.0.2", + "@progress/kendo-react-inputs": "7.0.2", + "@progress/kendo-react-intl": "7.0.2", + "@progress/kendo-react-popup": "7.0.2", + "@progress/kendo-svg-icons": "^2.0.0", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-indicators": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-indicators/-/kendo-react-indicators-7.0.2.tgz", + "integrity": "sha512-PGpBiImn+CzCxNcOjAGojgaPx0TyXv8yEgykgRjAhO25X1EFmfKDKDOB5m51WHsfUl0FZ6IxPQKOPj+8HDmnRg==", + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-common": "7.0.2", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-inputs": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-inputs/-/kendo-react-inputs-7.0.2.tgz", + "integrity": "sha512-rCy2jfcM4sxKjFMChdd5cE4xShwzOLaMgvexmuvhlpnX03fYCFqm2gXRETUZJPwrHlnN5XX1oEt+lpKKsaT9kw==", + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-drawing": "^1.17.2", + "@progress/kendo-inputs-common": "^3.1.0", + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-animation": "7.0.2", + "@progress/kendo-react-buttons": "7.0.2", + "@progress/kendo-react-common": "7.0.2", + "@progress/kendo-react-dialogs": "7.0.2", + "@progress/kendo-react-form": "7.0.2", + "@progress/kendo-react-intl": "7.0.2", + "@progress/kendo-react-labels": "7.0.2", + "@progress/kendo-react-popup": "7.0.2", + "@progress/kendo-svg-icons": "^2.0.0", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-intl": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-intl/-/kendo-react-intl-7.0.2.tgz", + "integrity": "sha512-OVPUyumQWyYE1TNVTMsaj1o0GHr4gE2dXrQkdK6vmDsK8awrvGHONj8fl11wNH3VS0kC5a5Dr+cBjC+U1a0jxA==", + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-intl": "^3.1.1", + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-common": "7.0.2", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-labels": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-labels/-/kendo-react-labels-7.0.2.tgz", + "integrity": "sha512-dsrPIxKhCDHtV/R350bZXhLzPWjHZXwBAtIVR5ZUAl7eTsHWkAHQ/T9Siz5rltOYezvIZ07q8RMNIgroMZRGag==", + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-common": "7.0.2", + "@progress/kendo-react-intl": "7.0.2", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-layout": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-layout/-/kendo-react-layout-7.0.2.tgz", + "integrity": "sha512-eYQMMQtXLM/u/AFpG9jCh2J9GDMcoCXD4cNFLhiq4W+w3bynyhU3zvhQxoVLjbUkb59loyVlz0iQv/fgd7/+7w==", + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-animation": "7.0.2", + "@progress/kendo-react-common": "7.0.2", + "@progress/kendo-react-intl": "7.0.2", + "@progress/kendo-react-popup": "7.0.2", + "@progress/kendo-react-progressbars": "7.0.2", + "@progress/kendo-svg-icons": "^2.0.0", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-pdf": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-pdf/-/kendo-react-pdf-7.0.2.tgz", + "integrity": "sha512-htXudiQ1JI29QJrUUI+tdApKFr+ENKO9HDCrpMoJ/7+3epUq/7gEP6/lWtjlNa0HUpwOYtcHDVQkYAxt+XMPFA==", + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-drawing": "^1.17.2", + "@progress/kendo-file-saver": "^1.0.1", + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-common": "7.0.2", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-popup": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-popup/-/kendo-react-popup-7.0.2.tgz", + "integrity": "sha512-ekevsPFSspGoXwyijltyKh5qQPdpOvFfFgK0odqXAlkyBfPDNaUjQhAwIdivHihYkfqKisUiZFXCoYlRq91e9g==", + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-popup-common": "^1.9.0", + "@progress/kendo-react-common": "7.0.2", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-progressbars": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-progressbars/-/kendo-react-progressbars-7.0.2.tgz", + "integrity": "sha512-8v6Z8zCze/WTNT6fi9kKgeWJk2Mm+/LMkMV07LJIb1GkvpQ34Pn1xmgW5dzK1vRUXhkMJIy15X6/gjH7O4svFw==", + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-animation": "7.0.2", + "@progress/kendo-react-common": "7.0.2", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-scheduler": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-scheduler/-/kendo-react-scheduler-7.0.2.tgz", + "integrity": "sha512-Vif23dBvmDRCxRWdFlcGGOJZW+2uAq/Nm4a9oEcLBxxAr7v9Mq/KrQ/BAjEvrQz1RdABzG6EG28maq6ICTiSSw==", + "dependencies": { + "@progress/kendo-draggable": "^3.0.1", + "@progress/kendo-recurrence": "^1.0.1", + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-data-query": "^1.5.1", + "@progress/kendo-date-math": "^1.4.1", + "@progress/kendo-drawing": "^1.17.2", + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-buttons": "7.0.2", + "@progress/kendo-react-common": "7.0.2", + "@progress/kendo-react-dateinputs": "7.0.2", + "@progress/kendo-react-dialogs": "7.0.2", + "@progress/kendo-react-dropdowns": "7.0.2", + "@progress/kendo-react-form": "7.0.2", + "@progress/kendo-react-inputs": "7.0.2", + "@progress/kendo-react-intl": "7.0.2", + "@progress/kendo-react-popup": "7.0.2", + "@progress/kendo-svg-icons": "^2.0.0", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-treeview": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-treeview/-/kendo-react-treeview-7.0.2.tgz", + "integrity": "sha512-cNWzNdeHiWB7lTrV/wDb6ofEovd0fJpwZOG9lM7OfqvYe6lBeLeHkdeLOeZRUbP/gzlUN1s3L0LRC2KETgwx5w==", + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-animation": "7.0.2", + "@progress/kendo-react-common": "7.0.2", + "@progress/kendo-svg-icons": "^2.0.0", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-react-upload": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@progress/kendo-react-upload/-/kendo-react-upload-7.0.2.tgz", + "integrity": "sha512-tHOlwn4JjHzuAAHoQGincuwYSc1CL0R84IX8JiHUl++STe1sc16HfKAvuDloBlYf1KDuy0gZ9XSBKYaOgYy1Gg==", + "dependencies": { + "prop-types": "^15.6.0" + }, + "peerDependencies": { + "@progress/kendo-licensing": "^1.3.4", + "@progress/kendo-react-buttons": "7.0.2", + "@progress/kendo-react-common": "7.0.2", + "@progress/kendo-react-intl": "7.0.2", + "@progress/kendo-react-progressbars": "7.0.2", + "@progress/kendo-svg-icons": "^2.0.0", + "axios": "1.6.0", + "react": "^16.8.2 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@progress/kendo-recurrence": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@progress/kendo-recurrence/-/kendo-recurrence-1.0.3.tgz", + "integrity": "sha512-eG4xt3WUBLuxctJN6dWhDI41hqCl60Fe6a7Pb5IX4WIEW3Y5Hhn9AntJ/X1k0oQqU/n1vxdUJJp+9TihbBYgHA==", + "dependencies": { + "@telerik/kendo-intl": "^2.0.0", + "tslib": "^1.7.0" + }, + "peerDependencies": { + "@progress/kendo-date-math": "^1.3.0" + } + }, + "node_modules/@progress/kendo-svg-icons": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@progress/kendo-svg-icons/-/kendo-svg-icons-2.1.0.tgz", + "integrity": "sha512-zAwxw8lt5xlIBMoE3uwUX2Z2RI5njWViYxdFoinvr5d8WJ6kU3sghNONsRelM9GiDd2vbSg0IkEN8dOrBvFjPg==" + }, + "node_modules/@progress/pako-esm": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@progress/pako-esm/-/pako-esm-1.0.1.tgz", + "integrity": "sha512-O4A3b1EuE9Xe1pC3Xz9Tcn1M/CYrL71f4y/5TXeytOVTkmkzBgYW97fYP2f+54H0e0erWRaqV/kUUB/a8Uxfbw==" + }, + "node_modules/@remix-run/router": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.14.1.tgz", + "integrity": "sha512-Qg4DMQsfPNAs88rb2xkdk03N3bjK4jgX5fR24eHCTR9q6PrhZQZ4UJBPzCHJkIpTRN1UKxx2DzjZmnC+7Lj0Ow==", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@rollup/plugin-babel": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", + "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", + "dependencies": { + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "@types/babel__core": "^7.1.9", + "rollup": "^1.20.0||^2.0.0" + }, + "peerDependenciesMeta": { + "@types/babel__core": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-node-resolve": { + "version": "11.2.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", + "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/plugin-replace": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", + "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + }, + "peerDependencies": { + "rollup": "^1.20.0 || ^2.0.0" + } + }, + "node_modules/@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "dependencies": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/pluginutils/node_modules/@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.6.1.tgz", + "integrity": "sha512-UY+FGM/2jjMkzQLn8pxcHGMaVLh9aEitG3zY2CiY7XHdLiz3bZOwa6oDxNqEMv7zZkV+cj5DOdz0cQ1BP5Hjgw==" + }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "optional": true, + "peer": true + }, + "node_modules/@sinonjs/commons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "optional": true, + "peer": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "optional": true, + "peer": true, + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@surma/rollup-plugin-off-main-thread": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", + "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", + "dependencies": { + "ejs": "^3.1.6", + "json5": "^2.2.0", + "magic-string": "^0.25.0", + "string.prototype.matchall": "^4.0.6" + } + }, + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "dependencies": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/core/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "dependencies": { + "@babel/types": "^7.12.6" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "dependencies": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", + "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@telerik/kendo-intl": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@telerik/kendo-intl/-/kendo-intl-2.3.1.tgz", + "integrity": "sha512-30iXfS/1Kz3wn0rZLiWzrfJCv/c0Wffr5T42uxjJBTxZQ6XLBmUdfaQ4Jn1Td1W0skZrlP0M3/wNAEYTbxXigQ==" + }, + "node_modules/@testing-library/dom": { + "version": "9.3.3", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-9.3.3.tgz", + "integrity": "sha512-fB0R+fa3AUqbLHWyxXa2kGVtf1Fe1ZZFr0Zp6AIbIAzXb2mKbEXl+PCQNUOaq5lbTab5tfctfXRNsWXxa2f7Aw==", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.1.3", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@testing-library/jest-dom": { + "version": "6.1.5", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.1.5.tgz", + "integrity": "sha512-3y04JLW+EceVPy2Em3VwNr95dOKqA8DhR0RJHhHKDZNYXcVXnEK7WIrpj4eYU8SVt/qYZ2aRWt/WgQ+grNES8g==", + "dependencies": { + "@adobe/css-tools": "^4.3.1", + "@babel/runtime": "^7.9.2", + "aria-query": "^5.0.0", + "chalk": "^3.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.5.6", + "lodash": "^4.17.15", + "redent": "^3.0.0" + }, + "engines": { + "node": ">=14", + "npm": ">=6", + "yarn": ">=1" + }, + "peerDependencies": { + "@jest/globals": ">= 28", + "@types/jest": ">= 28", + "jest": ">= 28", + "vitest": ">= 0.32" + }, + "peerDependenciesMeta": { + "@jest/globals": { + "optional": true + }, + "@types/jest": { + "optional": true + }, + "jest": { + "optional": true + }, + "vitest": { + "optional": true + } + } + }, + "node_modules/@testing-library/jest-dom/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/react": { + "version": "14.1.2", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-14.1.2.tgz", + "integrity": "sha512-z4p7DVBTPjKM5qDZ0t5ZjzkpSNb+fZy1u6bzO7kk8oeGagpPCAtgh4cx1syrfp7a+QWkM021jGqjJaxJJnXAZg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^9.0.0", + "@types/react-dom": "^18.0.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/@testing-library/user-event": { + "version": "14.5.1", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.5.1.tgz", + "integrity": "sha512-UCcUKrUYGj7ClomOo2SpNVvx4/fkd/2BbIHDCle8A0ax+P3bU7yJwDBDrS6ZwdTMARWTGODX1hEsCcO+7beJjg==", + "engines": { + "node": ">=12", + "npm": ">=6" + }, + "peerDependencies": { + "@testing-library/dom": ">=7.21.4" + } + }, + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@types/aria-query": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", + "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==" + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.4", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.4.tgz", + "integrity": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==", + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/bonjour": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", + "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", + "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "node_modules/@types/eslint": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.0.tgz", + "integrity": "sha512-FlsN0p4FhuYRjIxpbdXovvHQhtlG05O1GG/RNWvdAxTboR438IOTwmrY/vLA+Xfgg06BTkP045M3vpFwTMv1dg==", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" + }, + "node_modules/@types/express": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", + "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.41", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.41.tgz", + "integrity": "sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" + }, + "node_modules/@types/http-errors": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" + }, + "node_modules/@types/http-proxy": { + "version": "1.17.14", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.14.tgz", + "integrity": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==", + "dependencies": { + "@types/node": "*" + } + }, + "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==" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "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==" + }, + "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==" + }, + "node_modules/@types/mime": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" + }, + "node_modules/@types/minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==" + }, + "node_modules/@types/node": { + "version": "20.10.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.5.tgz", + "integrity": "sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw==", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@types/node-forge": { + "version": "1.3.10", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.10.tgz", + "integrity": "sha512-y6PJDYN4xYBxwd22l+OVH35N+1fCYWiuC3aiP2SlXVE6Lo7SS+rSx9r89hLxrP4pn6n1lBGhHJ12pj3F3Mpttw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==" + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" + }, + "node_modules/@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.11", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz", + "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==" + }, + "node_modules/@types/q": { + "version": "1.5.8", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz", + "integrity": "sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==" + }, + "node_modules/@types/qs": { + "version": "6.9.11", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.11.tgz", + "integrity": "sha512-oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ==" + }, + "node_modules/@types/range-parser": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" + }, + "node_modules/@types/react": { + "version": "18.2.45", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.45.tgz", + "integrity": "sha512-TtAxCNrlrBp8GoeEp1npd5g+d/OejJHFxS3OWmrPBMFaVQMSN0OFySozJio5BHxTuTeug00AVXVAjfDSfk+lUg==", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.2.18", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.18.tgz", + "integrity": "sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/resolve": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", + "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + }, + "node_modules/@types/scheduler": { + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz", + "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==" + }, + "node_modules/@types/semver": { + "version": "7.5.6", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz", + "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==" + }, + "node_modules/@types/send": { + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/serve-index": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", + "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", + "dependencies": { + "@types/express": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.5.tgz", + "integrity": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==", + "dependencies": { + "@types/http-errors": "*", + "@types/mime": "*", + "@types/node": "*" + } + }, + "node_modules/@types/sockjs": { + "version": "0.3.36", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", + "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" + }, + "node_modules/@types/trusted-types": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", + "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==" + }, + "node_modules/@types/ws": { + "version": "8.5.10", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", + "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/yargs": { + "version": "16.0.9", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", + "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz", + "integrity": "sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==", + "dependencies": { + "@typescript-eslint/utils": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "dependencies": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", + "dependencies": { + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/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==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "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/@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/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==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-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==" + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "deprecated": "Use your platform's native atob() and btoa() methods instead" + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", + "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "node_modules/acorn-globals/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "peerDependencies": { + "acorn": "^8" + } + }, + "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==", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/agentkeepalive": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz", + "integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==", + "dependencies": { + "humanize-ms": "^1.2.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "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/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "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==", + "engines": { + "node": ">=8" + } + }, + "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==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" + }, + "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==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" + }, + "node_modules/are-we-there-yet": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", + "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/aria-query": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + }, + "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==", + "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": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", + "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + }, + "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==", + "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==", + "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.reduce": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.6.tgz", + "integrity": "sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg==", + "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.tosorted": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz", + "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + }, + "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==", + "optional": true, + "peer": 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==", + "optional": true, + "peer": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==" + }, + "node_modules/async": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" + }, + "node_modules/async-foreach": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", + "integrity": "sha512-VUeSMD8nEGBWaZK4lizI1sf3yEC7pnAQ/mrI7pC2fBz2s/tq5jWWEngTwaf0Gruu/OoXRGLGg1XFqpYBiGTYJA==", + "engines": { + "node": "*" + } + }, + "node_modules/asynciterator.prototype": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", + "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", + "dependencies": { + "has-symbols": "^1.0.3" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.16", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", + "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.21.10", + "caniuse-lite": "^1.0.30001538", + "fraction.js": "^4.3.6", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "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==", + "optional": true, + "peer": 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==", + "optional": true, + "peer": true + }, + "node_modules/axe-core": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", + "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/axios": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.0.tgz", + "integrity": "sha512-EZ1DYihju9pwVB+jg67ogm+Tmqc6JmhamRN6I4Zt8DfZu5lbcQGw3ozH9lFejSJgs/ibaef3A9PMXPLeefFGJg==", + "peer": true, + "dependencies": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/babel-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "dependencies": { + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-loader": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/babel-plugin-named-asset-import": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", + "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", + "peerDependencies": { + "@babel/core": "^7.1.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.7", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.7.tgz", + "integrity": "sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==", + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.4.4", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.8.7", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.7.tgz", + "integrity": "sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.4.4", + "core-js-compat": "^3.33.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.4.tgz", + "integrity": "sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.4.4" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@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-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", + "dependencies": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-react-app": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz", + "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-decorators": "^7.16.4", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-transform-flow-strip-types": "^7.16.0", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.4", + "@babel/preset-env": "^7.16.4", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24" + } + }, + "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==" + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + }, + "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==", + "optional": true, + "peer": true, + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "node_modules/bfj": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.1.0.tgz", + "integrity": "sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==", + "dependencies": { + "bluebird": "^3.7.2", + "check-types": "^11.2.3", + "hoopy": "^0.1.4", + "jsonpath": "^1.1.1", + "tryer": "^1.0.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "engines": { + "node": "*" + } + }, + "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==", + "engines": { + "node": ">=8" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/bonjour-service": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz", + "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==", + "dependencies": { + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + }, + "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==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" + }, + "node_modules/browserslist": { + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", + "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "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" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001565", + "electron-to-chromium": "^1.4.601", + "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/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "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==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacache": { + "version": "16.1.3", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-16.1.3.tgz", + "integrity": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==", + "dependencies": { + "@npmcli/fs": "^2.1.0", + "@npmcli/move-file": "^2.0.0", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "glob": "^8.0.1", + "infer-owner": "^1.0.4", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "mkdirp": "^1.0.4", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^9.0.0", + "tar": "^6.1.11", + "unique-filename": "^2.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/cacache/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==", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/cacache/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "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/cacache/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "dependencies": { + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + }, + "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==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camel-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/camelcase-keys": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dependencies": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001571", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001571.tgz", + "integrity": "sha512-tYq/6MoXhdezDLFZuCO/TKboTzuQ/xR5cFdgXPfDtM7/kchBO3b4VWghE/OAi/DV7tTdhmLjZiZBZi1fA/GheQ==", + "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" + } + ] + }, + "node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", + "optional": true, + "peer": true + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "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/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/check-types": { + "version": "11.2.3", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.3.tgz", + "integrity": "sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==" + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "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==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==" + }, + "node_modules/cldr-core": { + "version": "43.1.0", + "resolved": "https://registry.npmjs.org/cldr-core/-/cldr-core-43.1.0.tgz", + "integrity": "sha512-8Q/Zh/eCzV4SxggzZhPnw5WDWH9OnhbPfwzthfG8uXsCn7F5UeBCiAOTxsstxuxtXPKlvPJqqMSQjiYcqJPJsA==" + }, + "node_modules/cldr-dates-full": { + "version": "43.1.0", + "resolved": "https://registry.npmjs.org/cldr-dates-full/-/cldr-dates-full-43.1.0.tgz", + "integrity": "sha512-KJgVDc08AWF1DqKbg2Yew3aomktLI/CnbnJgXDDpstWOi7yAzLKhG4xSeWMcx54RGmS4s+mZNSK7cZLfqBQRzA==", + "peerDependencies": { + "cldr-numbers-full": "43.1.0" + } + }, + "node_modules/cldr-numbers-full": { + "version": "43.1.0", + "resolved": "https://registry.npmjs.org/cldr-numbers-full/-/cldr-numbers-full-43.1.0.tgz", + "integrity": "sha512-IP1/DLQnC0U1r+KsaNYqNu1rRv3yeiYtImFrtssMqRs5HRMt9DvuSaKEIgj91EpoyNwAxMeRBCGLP5NYkzP4XQ==", + "peerDependencies": { + "cldr-core": "43.1.0" + } + }, + "node_modules/clean-css": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", + "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "engines": { + "node": ">=6" + } + }, + "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==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/coa/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==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/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==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/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==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/coa/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==" + }, + "node_modules/coa/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==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/coa/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==", + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/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==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" + }, + "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==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "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==" + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + }, + "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==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "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/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" + }, + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "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==" + }, + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "engines": { + "node": ">= 0.6" + } + }, + "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==" + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "node_modules/core-js": { + "version": "3.34.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.34.0.tgz", + "integrity": "sha512-aDdvlDder8QmY91H88GzNi9EtQi2TjvQhpCX6B1v/dAZHU1AuLgHvRh54RiOerpEhEW46Tkf+vgAViB/CWC0ag==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.34.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.34.0.tgz", + "integrity": "sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==", + "dependencies": { + "browserslist": "^4.22.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-pure": { + "version": "3.34.0", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.34.0.tgz", + "integrity": "sha512-pmhivkYXkymswFfbXsANmBAewXx86UBfmagP+w0wkK06kLsLlTK5oQmsURPivzMkIBQiYq2cjamcZExIwlFQIg==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/create-jest/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "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==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/css-blank-pseudo": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz", + "integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-blank-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-declaration-sorter": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz", + "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==", + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-has-pseudo": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz", + "integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-has-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-loader": { + "version": "6.8.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.8.1.tgz", + "integrity": "sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==", + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.21", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.3", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.8" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/css-minimizer-webpack-plugin": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", + "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", + "dependencies": { + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@parcel/css": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-prefers-color-scheme": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", + "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", + "bin": { + "css-prefers-color-scheme": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + }, + "node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==" + }, + "node_modules/cssdb": { + "version": "7.9.1", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.9.1.tgz", + "integrity": "sha512-fqy6ZnNfpb8qAvTT0qijWyTsUmYThsDX2F2ctMG4ceI7mI4DtsMILSiMBiuuDnVIYTyWvCctdp9Nb08p/6m2SQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + } + ] + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "5.1.15", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", + "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", + "dependencies": { + "cssnano-preset-default": "^5.2.14", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-preset-default": { + "version": "5.2.14", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", + "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", + "dependencies": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.1", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.4", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.2", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "node_modules/csso/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + }, + "node_modules/dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", + "optional": true, + "peer": true, + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/debug/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==" + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decamelize-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", + "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", + "dependencies": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decamelize-keys/node_modules/map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" + }, + "node_modules/dedent": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "optional": true, + "peer": true, + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/deep-equal": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.3.tgz", + "integrity": "sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.5", + "es-get-iterator": "^1.1.3", + "get-intrinsic": "^1.2.2", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.2", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==" + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dependencies": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "engines": { + "node": ">=8" + } + }, + "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==", + "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==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + }, + "node_modules/detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "node_modules/detect-port-alt/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/detect-port-alt/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" + }, + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "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==", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==" + }, + "node_modules/dns-packet": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", + "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==" + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "peer": true, + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "deprecated": "Use your platform's native DOMException instead", + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "engines": { + "node": ">=10" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + }, + "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==", + "optional": true, + "peer": true, + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/ecdsa-sig-formatter": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "dependencies": { + "safe-buffer": "^5.0.1" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "node_modules/ejs": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", + "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.616", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.616.tgz", + "integrity": "sha512-1n7zWYh8eS0L9Uy+GskE0lkBUNK83cXTVJI0pU3mGprFsbfSdAc15VTFbo+A+Bq4pwstmL30AVcEU3Fo463lNg==" + }, + "node_modules/email-addresses": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/email-addresses/-/email-addresses-5.0.0.tgz", + "integrity": "sha512-4OIPYlA6JXqtVn8zpHpGiI7vE6EQOAg16aGnDMIAlZVinnoZ8208tW1hAbjWydgN/4PLTT9q+O1K6AH/vALJGw==", + "dev": true + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "optional": true, + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "optional": true, + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/err-code": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/es-abstract": { + "version": "1.22.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", + "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.2", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.5", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.2", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "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.12", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "safe-array-concat": "^1.0.1", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.0", + "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.13" + }, + "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==" + }, + "node_modules/es-get-iterator": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz", + "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", + "dependencies": { + "asynciterator.prototype": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.1", + "es-set-tostringtag": "^2.0.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "iterator.prototype": "^1.1.2", + "safe-array-concat": "^1.0.1" + } + }, + "node_modules/es-module-lexer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz", + "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==" + }, + "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==", + "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==", + "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==", + "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/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "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==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", + "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", + "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-react-app": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", + "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/eslint-parser": "^7.16.3", + "@rushstack/eslint-patch": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^5.5.0", + "@typescript-eslint/parser": "^5.5.0", + "babel-preset-react-app": "^10.0.1", + "confusing-browser-globals": "^1.0.11", + "eslint-plugin-flowtype": "^8.0.3", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jest": "^25.3.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0", + "eslint-plugin-testing-library": "^5.0.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "eslint": "^8.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==", + "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==", + "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==", + "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==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-flowtype": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", + "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", + "dependencies": { + "lodash": "^4.17.21", + "string-natural-compare": "^3.0.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@babel/plugin-syntax-flow": "^7.14.5", + "@babel/plugin-transform-react-jsx": "^7.14.9", + "eslint": "^8.1.0" + } + }, + "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==", + "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/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "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==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-jest": { + "version": "25.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", + "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", + "dependencies": { + "@typescript-eslint/experimental-utils": "^5.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + }, + "jest": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz", + "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==", + "dependencies": { + "@babel/runtime": "^7.23.2", + "aria-query": "^5.3.0", + "array-includes": "^3.1.7", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "=4.7.0", + "axobject-query": "^3.2.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "es-iterator-helpers": "^1.0.15", + "hasown": "^2.0.0", + "jsx-ast-utils": "^3.3.5", + "language-tags": "^1.0.9", + "minimatch": "^3.1.2", + "object.entries": "^1.1.7", + "object.fromentries": "^2.0.7" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-jsx-a11y/node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.33.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.12", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.8" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "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/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-testing-library": { + "version": "5.11.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz", + "integrity": "sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==", + "dependencies": { + "@typescript-eslint/utils": "^5.58.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0", + "npm": ">=6" + }, + "peerDependencies": { + "eslint": "^7.5.0 || ^8.0.0" + } + }, + "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==", + "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-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==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "dependencies": { + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^5.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/eslint-webpack-plugin/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/eslint-webpack-plugin/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==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?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==" + }, + "node_modules/eslint/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==", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/eslint/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==", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/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==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/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==", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/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==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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==", + "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/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "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==", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "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==", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/expect/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/expect/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/expect/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/expect/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "optional": true, + "peer": 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==", + "engines": [ + "node >=0.6.0" + ], + "optional": true, + "peer": true + }, + "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==" + }, + "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==", + "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==", + "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==" + }, + "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==" + }, + "node_modules/fastq": { + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.16.0.tgz", + "integrity": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dependencies": { + "bser": "2.1.1" + } + }, + "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==", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "node_modules/filelist/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==", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/filenamify": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-4.3.0.tgz", + "integrity": "sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==", + "dev": true, + "dependencies": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.1", + "trim-repeated": "^1.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/filesize": { + "version": "8.0.7", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", + "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", + "engines": { + "node": ">= 0.4.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==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "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==", + "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==" + }, + "node_modules/follow-redirects": { + "version": "1.15.3", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz", + "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": 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==", + "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==", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/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==", + "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==", + "optional": true, + "peer": true, + "engines": { + "node": "*" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz", + "integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=10", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "eslint": ">= 6", + "typescript": ">= 2.7", + "vue-template-compiler": "*", + "webpack": ">= 4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + } + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "dependencies": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "peer": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz", + "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==" + }, + "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==" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "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==", + "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==", + "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==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gauge": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", + "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^3.0.7", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/gaze": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", + "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", + "dependencies": { + "globule": "^1.0.0" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "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==", + "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==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "dependencies": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "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==", + "optional": true, + "peer": true, + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "node_modules/gh-pages": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/gh-pages/-/gh-pages-6.1.0.tgz", + "integrity": "sha512-MdXigvqN3I66Y+tAZsQJMzpBWQOI1snD6BYuECmP+GEdryYMMOQvzn4AConk/+qNg/XIuQhB1xNGrl3Rmj1iow==", + "dev": true, + "dependencies": { + "async": "^3.2.4", + "commander": "^11.0.0", + "email-addresses": "^5.0.0", + "filenamify": "^4.3.0", + "find-cache-dir": "^3.3.1", + "fs-extra": "^11.1.1", + "globby": "^6.1.0" + }, + "bin": { + "gh-pages": "bin/gh-pages.js", + "gh-pages-clean": "bin/gh-pages-clean.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "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/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==", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "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==", + "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==", + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "dev": true, + "dependencies": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/globule": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/globule/-/globule-1.3.4.tgz", + "integrity": "sha512-OPTIfhMBh7JbBYDpa5b+Q5ptmMWKwcNcFSR/0c6t8V4f3ZAVBEsKNY37QdVqmLRYSMhOUGYrY0QhSoEpzGr/Eg==", + "dependencies": { + "glob": "~7.1.1", + "lodash": "^4.17.21", + "minimatch": "~3.0.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/globule/node_modules/glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/globule/node_modules/minimatch": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + }, + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/hammerjs": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/hammerjs/-/hammerjs-2.0.8.tgz", + "integrity": "sha512-tSQXBXS/MWQOn/RKckawJ61vvsDpCom87JgxiYdGwHdOa0ht0vzUWDlfioofFCRU0L+6NGDt6XzbgoJvZkMeRQ==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + }, + "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==", + "optional": true, + "peer": 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", + "optional": true, + "peer": true, + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hard-rejection": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/harmony-reflect": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", + "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" + }, + "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==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dependencies": { + "get-intrinsic": "^1.2.2" + }, + "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==", + "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==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "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==", + "bin": { + "he": "bin/he" + } + }, + "node_modules/hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hosted-git-info/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==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hpack.js/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/hpack.js/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/html-entities": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", + "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ] + }, + "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==" + }, + "node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-minifier-terser/node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "engines": { + "node": ">= 12" + } + }, + "node_modules/html-webpack-plugin": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.0.tgz", + "integrity": "sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==", + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.20.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } + } + }, + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "dependencies": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } + } + }, + "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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==", + "optional": true, + "peer": 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/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/humanize-ms": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", + "dependencies": { + "ms": "^2.0.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/idb": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", + "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==" + }, + "node_modules/identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", + "dependencies": { + "harmony-reflect": "^1.4.6" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ignore": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immer": { + "version": "9.0.21", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", + "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "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==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/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==", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "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==", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + }, + "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==", + "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==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/internal-slot": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", + "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", + "dependencies": { + "get-intrinsic": "^1.2.2", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" + }, + "node_modules/ipaddr.js": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", + "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "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-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "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==", + "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==", + "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==", + "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-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "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==", + "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==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-lambda": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==" + }, + "node_modules/is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==" + }, + "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==", + "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==", + "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==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", + "engines": { + "node": ">=0.10.0" + } + }, + "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==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + }, + "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==", + "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-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "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==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "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==", + "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==", + "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.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "dependencies": { + "which-typed-array": "^1.1.11" + }, + "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==" + }, + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", + "optional": true, + "peer": 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==", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "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==", + "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/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==", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/iterator.prototype": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "dependencies": { + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" + } + }, + "node_modules/jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jake": { + "version": "10.8.7", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", + "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", + "dependencies": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.4", + "minimatch": "^3.1.2" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/types": "^29.6.3", + "import-local": "^3.0.2", + "jest-cli": "^29.7.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", + "optional": true, + "peer": true, + "dependencies": { + "execa": "^5.0.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-changed-files/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-changed-files/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-changed-files/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-changed-files/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==", + "optional": true, + "peer": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-circus": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.7.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-circus/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus/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==", + "optional": true, + "peer": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-circus/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "optional": true, + "peer": true + }, + "node_modules/jest-cli": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "create-jest": "^29.7.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-cli/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-cli/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-cli/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "optional": true, + "peer": true + }, + "node_modules/jest-config": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", + "optional": true, + "peer": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-config/node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "optional": true, + "peer": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-config/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-config/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-config/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/babel-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/transform": "^29.7.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/jest-config/node_modules/babel-plugin-jest-hoist": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", + "optional": true, + "peer": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-config/node_modules/babel-preset-jest": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", + "optional": true, + "peer": true, + "dependencies": { + "babel-plugin-jest-hoist": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/jest-config/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-config/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-config/node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-config/node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-config/node_modules/jest-resolve": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "optional": true, + "peer": true, + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-config/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-config/node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-config/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "optional": true, + "peer": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-config/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-config/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "optional": true, + "peer": true + }, + "node_modules/jest-config/node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-config/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==", + "optional": true, + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "optional": true, + "peer": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "optional": true, + "peer": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-diff/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-diff/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-diff/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "optional": true, + "peer": true + }, + "node_modules/jest-docblock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", + "optional": true, + "peer": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "optional": true, + "peer": true + }, + "node_modules/jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dependencies": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-node/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-node/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-environment-node/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-jasmine2": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dependencies": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/jest-jasmine2/node_modules/@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/jest-jasmine2/node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-each": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "dependencies": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-leak-detector": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", + "optional": true, + "peer": true, + "dependencies": { + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-leak-detector/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-leak-detector/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-leak-detector/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-leak-detector/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "optional": true, + "peer": true + }, + "node_modules/jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "optional": true, + "peer": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "optional": true, + "peer": true + }, + "node_modules/jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "optional": true, + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "optional": true, + "peer": true + }, + "node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-mock/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-mock/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-mock/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", + "optional": true, + "peer": true, + "dependencies": { + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve-dependencies/node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner/node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "optional": true, + "peer": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-runner/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-runner/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner/node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-runner/node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner/node_modules/jest-resolve": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "optional": true, + "peer": true, + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner/node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "optional": true, + "peer": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner/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==", + "optional": true, + "peer": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-runner/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "optional": true, + "peer": true + }, + "node_modules/jest-runner/node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-runner/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true, + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-runner/node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "optional": true, + "peer": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/jest-runner/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==", + "optional": true, + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "optional": true, + "peer": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/jest-runtime": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "optional": true, + "peer": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-runtime/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-runtime/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-runtime/node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-resolve": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "optional": true, + "peer": true, + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "optional": true, + "peer": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "optional": true, + "peer": true + }, + "node_modules/jest-runtime/node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-runtime/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==", + "optional": true, + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "optional": true, + "peer": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", + "optional": true, + "peer": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.7.0", + "semver": "^7.5.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "optional": true, + "peer": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-snapshot/node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "optional": true, + "peer": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "optional": true, + "peer": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "optional": true, + "peer": true + }, + "node_modules/jest-snapshot/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==", + "optional": true, + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "optional": true, + "peer": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watcher": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.7.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-watcher/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-watcher/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-watcher/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/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==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jest/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "optional": true, + "peer": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "optional": true, + "peer": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jiti": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", + "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/js-base64": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", + "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==" + }, + "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==" + }, + "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==", + "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==", + "optional": true, + "peer": true + }, + "node_modules/jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "dependencies": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsdom/node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/jsdom/node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jsdom/node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "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==" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "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==" + }, + "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==" + }, + "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==" + }, + "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==", + "optional": true, + "peer": 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==", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonpath": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/jsonpath/-/jsonpath-1.1.1.tgz", + "integrity": "sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==", + "dependencies": { + "esprima": "1.2.2", + "static-eval": "2.0.2", + "underscore": "1.12.1" + } + }, + "node_modules/jsonpath/node_modules/esprima": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz", + "integrity": "sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jsonpointer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", + "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsonwebtoken": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz", + "integrity": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==", + "dependencies": { + "jws": "^3.2.2", + "lodash.includes": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isinteger": "^4.0.4", + "lodash.isnumber": "^3.0.3", + "lodash.isplainobject": "^4.0.6", + "lodash.isstring": "^4.0.1", + "lodash.once": "^4.0.0", + "ms": "^2.1.1", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=12", + "npm": ">=6" + } + }, + "node_modules/jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "optional": true, + "peer": 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/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/jwa": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", + "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", + "dependencies": { + "buffer-equal-constant-time": "1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/jws": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", + "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", + "dependencies": { + "jwa": "^1.4.1", + "safe-buffer": "^5.0.1" + } + }, + "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==", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" + }, + "node_modules/language-tags": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", + "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/launch-editor": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz", + "integrity": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==", + "dependencies": { + "picocolors": "^1.0.0", + "shell-quote": "^1.8.1" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "engines": { + "node": ">=6" + } + }, + "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==", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "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==" + }, + "node_modules/lodash.includes": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", + "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==" + }, + "node_modules/lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" + }, + "node_modules/lodash.isinteger": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", + "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==" + }, + "node_modules/lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" + }, + "node_modules/lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" + }, + "node_modules/lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + }, + "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==" + }, + "node_modules/lodash.once": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", + "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==" + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lower-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/lz-string": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "bin": { + "lz-string": "bin/bin.js" + } + }, + "node_modules/magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "dependencies": { + "sourcemap-codec": "^1.4.8" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/make-fetch-happen": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", + "integrity": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==", + "dependencies": { + "agentkeepalive": "^4.2.1", + "cacache": "^16.1.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^2.0.3", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^7.0.0", + "ssri": "^9.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/map-obj": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "dependencies": { + "fs-monkey": "^1.0.4" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/meow": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", + "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", + "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize": "^1.2.0", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "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==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "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==", + "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==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "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==", + "engines": { + "node": ">=6" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "2.7.6", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz", + "integrity": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==", + "dependencies": { + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minimist-options": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dependencies": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-fetch": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.2.tgz", + "integrity": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==", + "dependencies": { + "minipass": "^3.1.6", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "optionalDependencies": { + "encoding": "^0.1.13" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "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==" + }, + "node_modules/multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nan": { + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", + "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==" + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/no-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-gyp": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", + "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==", + "dependencies": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^9.1.0", + "nopt": "^5.0.0", + "npmlog": "^6.0.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^2.0.2" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, + "engines": { + "node": ">= 10.12.0" + } + }, + "node_modules/node-gyp/node_modules/@npmcli/fs": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", + "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", + "dependencies": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "node_modules/node-gyp/node_modules/@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "deprecated": "This functionality has been moved to @npmcli/fs", + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-gyp/node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/node-gyp/node_modules/cacache": { + "version": "15.3.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", + "dependencies": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/node-gyp/node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/node-gyp/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==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-gyp/node_modules/make-fetch-happen": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", + "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", + "dependencies": { + "agentkeepalive": "^4.1.3", + "cacache": "^15.2.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^6.0.0", + "minipass": "^3.1.3", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^1.3.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.2", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^6.0.0", + "ssri": "^8.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/node-gyp/node_modules/minipass-fetch": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz", + "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", + "dependencies": { + "minipass": "^3.1.0", + "minipass-sized": "^1.0.3", + "minizlib": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "optionalDependencies": { + "encoding": "^0.1.12" + } + }, + "node_modules/node-gyp/node_modules/socks-proxy-agent": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz", + "integrity": "sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==", + "dependencies": { + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/node-gyp/node_modules/ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/node-gyp/node_modules/unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/node-gyp/node_modules/unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + }, + "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==" + }, + "node_modules/node-sass": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-9.0.0.tgz", + "integrity": "sha512-yltEuuLrfH6M7Pq2gAj5B6Zm7m+gdZoG66wTqG6mIZV/zijq3M2OO2HswtT6oBspPyFhHDcaxWpsBm0fRNDHPg==", + "hasInstallScript": true, + "dependencies": { + "async-foreach": "^0.1.3", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "gaze": "^1.0.0", + "get-stdin": "^4.0.1", + "glob": "^7.0.3", + "lodash": "^4.17.15", + "make-fetch-happen": "^10.0.4", + "meow": "^9.0.0", + "nan": "^2.17.0", + "node-gyp": "^8.4.1", + "sass-graph": "^4.0.1", + "stdout-stream": "^1.4.0", + "true-case-path": "^2.2.1" + }, + "bin": { + "node-sass": "bin/node-sass" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "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==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npmlog": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", + "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", + "dependencies": { + "are-we-there-yet": "^3.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^4.0.3", + "set-blocking": "^2.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/nwsapi": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", + "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==" + }, + "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==", + "optional": true, + "peer": true, + "engines": { + "node": "*" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "engines": { + "node": ">= 6" + } + }, + "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==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "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==", + "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==", + "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==", + "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==", + "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.getownpropertydescriptors": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.7.tgz", + "integrity": "sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g==", + "dependencies": { + "array.prototype.reduce": "^1.0.6", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "safe-array-concat": "^1.0.0" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", + "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1" + } + }, + "node_modules/object.hasown": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", + "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", + "dependencies": { + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "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/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "engines": { + "node": ">= 0.8" + } + }, + "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==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "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/orderedmap": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/orderedmap/-/orderedmap-2.1.1.tgz", + "integrity": "sha512-TvAWxi0nDe1j/rtMcWcIj94+Ffe6n7zhow33h40SKxmsmozs6dz/e+EajymfoFcHd7sxNn8yHM8839uixMOV6g==" + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "dependencies": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-retry/node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/param-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "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==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/pascal-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "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==", + "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==", + "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==", + "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==" + }, + "node_modules/path-scurry": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "dependencies": { + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/path-scurry/node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "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==", + "engines": { + "node": ">=8" + } + }, + "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==" + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss": { + "version": "8.4.32", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.32.tgz", + "integrity": "sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-attribute-case-insensitive": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz", + "integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-browser-comments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz", + "integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==", + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "browserslist": ">=4", + "postcss": ">=8" + } + }, + "node_modules/postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "dependencies": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "node_modules/postcss-clamp": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", + "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=7.6.0" + }, + "peerDependencies": { + "postcss": "^8.4.6" + } + }, + "node_modules/postcss-color-functional-notation": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz", + "integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-color-hex-alpha": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", + "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-color-rebeccapurple": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz", + "integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-colormin": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", + "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-convert-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-custom-media": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", + "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-custom-properties": { + "version": "12.1.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz", + "integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-custom-selectors": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", + "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "node_modules/postcss-dir-pseudo-class": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz", + "integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-double-position-gradients": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz", + "integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-env-function": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz", + "integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-flexbugs-fixes": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", + "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", + "peerDependencies": { + "postcss": "^8.1.4" + } + }, + "node_modules/postcss-focus-visible": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz", + "integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-focus-within": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz", + "integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-gap-properties": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz", + "integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-image-set-function": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz", + "integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-initial": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", + "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-lab-function": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz", + "integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-load-config/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==", + "engines": { + "node": ">=14" + } + }, + "node_modules/postcss-load-config/node_modules/yaml": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", + "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", + "engines": { + "node": ">= 14" + } + }, + "node_modules/postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" + } + }, + "node_modules/postcss-logical": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", + "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-media-minmax": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", + "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-merge-rules": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", + "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-params": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", + "dependencies": { + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", + "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.1.0.tgz", + "integrity": "sha512-SaIbK8XW+MZbd0xHPf7kdfA/3eOt7vxJ72IRecn3EzuZVLr1r0orzf0MX/pN8m+NMDoo6X/SQd8oeKqGZd8PXg==", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.11" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-nesting": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", + "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-normalize": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz", + "integrity": "sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==", + "dependencies": { + "@csstools/normalize.css": "*", + "postcss-browser-comments": "^4", + "sanitize.css": "*" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "browserslist": ">= 4", + "postcss": ">= 8" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-unicode": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "dependencies": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-opacity-percentage": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz", + "integrity": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==", + "funding": [ + { + "type": "kofi", + "url": "https://ko-fi.com/mrcgrtz" + }, + { + "type": "liberapay", + "url": "https://liberapay.com/mrcgrtz" + } + ], + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "dependencies": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-overflow-shorthand": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz", + "integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", + "peerDependencies": { + "postcss": "^8" + } + }, + "node_modules/postcss-place": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz", + "integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-preset-env": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz", + "integrity": "sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==", + "dependencies": { + "@csstools/postcss-cascade-layers": "^1.1.1", + "@csstools/postcss-color-function": "^1.1.1", + "@csstools/postcss-font-format-keywords": "^1.0.1", + "@csstools/postcss-hwb-function": "^1.0.2", + "@csstools/postcss-ic-unit": "^1.0.1", + "@csstools/postcss-is-pseudo-class": "^2.0.7", + "@csstools/postcss-nested-calc": "^1.0.0", + "@csstools/postcss-normalize-display-values": "^1.0.1", + "@csstools/postcss-oklab-function": "^1.1.1", + "@csstools/postcss-progressive-custom-properties": "^1.3.0", + "@csstools/postcss-stepped-value-functions": "^1.0.1", + "@csstools/postcss-text-decoration-shorthand": "^1.0.0", + "@csstools/postcss-trigonometric-functions": "^1.0.2", + "@csstools/postcss-unset-value": "^1.0.2", + "autoprefixer": "^10.4.13", + "browserslist": "^4.21.4", + "css-blank-pseudo": "^3.0.3", + "css-has-pseudo": "^3.0.4", + "css-prefers-color-scheme": "^6.0.3", + "cssdb": "^7.1.0", + "postcss-attribute-case-insensitive": "^5.0.2", + "postcss-clamp": "^4.1.0", + "postcss-color-functional-notation": "^4.2.4", + "postcss-color-hex-alpha": "^8.0.4", + "postcss-color-rebeccapurple": "^7.1.1", + "postcss-custom-media": "^8.0.2", + "postcss-custom-properties": "^12.1.10", + "postcss-custom-selectors": "^6.0.3", + "postcss-dir-pseudo-class": "^6.0.5", + "postcss-double-position-gradients": "^3.1.2", + "postcss-env-function": "^4.0.6", + "postcss-focus-visible": "^6.0.4", + "postcss-focus-within": "^5.0.4", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^3.0.5", + "postcss-image-set-function": "^4.0.7", + "postcss-initial": "^4.0.1", + "postcss-lab-function": "^4.2.1", + "postcss-logical": "^5.0.4", + "postcss-media-minmax": "^5.0.0", + "postcss-nesting": "^10.2.0", + "postcss-opacity-percentage": "^1.1.2", + "postcss-overflow-shorthand": "^3.0.4", + "postcss-page-break": "^3.0.4", + "postcss-place": "^7.0.5", + "postcss-pseudo-class-any-link": "^7.1.6", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-pseudo-class-any-link": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz", + "integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", + "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-replace-overflow-wrap": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", + "peerDependencies": { + "postcss": "^8.0.3" + } + }, + "node_modules/postcss-selector-not": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz", + "integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-svgo/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/postcss-svgo/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/postcss-svgo/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "node_modules/postcss-svgo/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-svgo/node_modules/svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "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==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/promise": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "dependencies": { + "asap": "~2.0.6" + } + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==" + }, + "node_modules/promise-retry": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", + "dependencies": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/prosemirror-commands": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/prosemirror-commands/-/prosemirror-commands-1.5.2.tgz", + "integrity": "sha512-hgLcPaakxH8tu6YvVAaILV2tXYsW3rAdDR8WNkeKGcgeMVQg3/TMhPdVoh7iAmfgVjZGtcOSjKiQaoeKjzd2mQ==", + "dependencies": { + "prosemirror-model": "^1.0.0", + "prosemirror-state": "^1.0.0", + "prosemirror-transform": "^1.0.0" + } + }, + "node_modules/prosemirror-dropcursor": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/prosemirror-dropcursor/-/prosemirror-dropcursor-1.8.1.tgz", + "integrity": "sha512-M30WJdJZLyXHi3N8vxN6Zh5O8ZBbQCz0gURTfPmTIBNQ5pxrdU7A58QkNqfa98YEjSAL1HUyyU34f6Pm5xBSGw==", + "dependencies": { + "prosemirror-state": "^1.0.0", + "prosemirror-transform": "^1.1.0", + "prosemirror-view": "^1.1.0" + } + }, + "node_modules/prosemirror-gapcursor": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/prosemirror-gapcursor/-/prosemirror-gapcursor-1.3.2.tgz", + "integrity": "sha512-wtjswVBd2vaQRrnYZaBCbyDqr232Ed4p2QPtRIUK5FuqHYKGWkEwl08oQM4Tw7DOR0FsasARV5uJFvMZWxdNxQ==", + "dependencies": { + "prosemirror-keymap": "^1.0.0", + "prosemirror-model": "^1.0.0", + "prosemirror-state": "^1.0.0", + "prosemirror-view": "^1.0.0" + } + }, + "node_modules/prosemirror-history": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/prosemirror-history/-/prosemirror-history-1.3.2.tgz", + "integrity": "sha512-/zm0XoU/N/+u7i5zepjmZAEnpvjDtzoPWW6VmKptcAnPadN/SStsBjMImdCEbb3seiNTpveziPTIrXQbHLtU1g==", + "dependencies": { + "prosemirror-state": "^1.2.2", + "prosemirror-transform": "^1.0.0", + "prosemirror-view": "^1.31.0", + "rope-sequence": "^1.3.0" + } + }, + "node_modules/prosemirror-inputrules": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prosemirror-inputrules/-/prosemirror-inputrules-1.2.1.tgz", + "integrity": "sha512-3LrWJX1+ULRh5SZvbIQlwZafOXqp1XuV21MGBu/i5xsztd+9VD15x6OtN6mdqSFI7/8Y77gYUbQ6vwwJ4mr6QQ==", + "dependencies": { + "prosemirror-state": "^1.0.0", + "prosemirror-transform": "^1.0.0" + } + }, + "node_modules/prosemirror-keymap": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/prosemirror-keymap/-/prosemirror-keymap-1.2.2.tgz", + "integrity": "sha512-EAlXoksqC6Vbocqc0GtzCruZEzYgrn+iiGnNjsJsH4mrnIGex4qbLdWWNza3AW5W36ZRrlBID0eM6bdKH4OStQ==", + "dependencies": { + "prosemirror-state": "^1.0.0", + "w3c-keyname": "^2.2.0" + } + }, + "node_modules/prosemirror-model": { + "version": "1.19.3", + "resolved": "https://registry.npmjs.org/prosemirror-model/-/prosemirror-model-1.19.3.tgz", + "integrity": "sha512-tgSnwN7BS7/UM0sSARcW+IQryx2vODKX4MI7xpqY2X+iaepJdKBPc7I4aACIsDV/LTaTjt12Z56MhDr9LsyuZQ==", + "dependencies": { + "orderedmap": "^2.0.0" + } + }, + "node_modules/prosemirror-schema-list": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/prosemirror-schema-list/-/prosemirror-schema-list-1.3.0.tgz", + "integrity": "sha512-Hz/7gM4skaaYfRPNgr421CU4GSwotmEwBVvJh5ltGiffUJwm7C8GfN/Bc6DR1EKEp5pDKhODmdXXyi9uIsZl5A==", + "dependencies": { + "prosemirror-model": "^1.0.0", + "prosemirror-state": "^1.0.0", + "prosemirror-transform": "^1.7.3" + } + }, + "node_modules/prosemirror-state": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/prosemirror-state/-/prosemirror-state-1.4.3.tgz", + "integrity": "sha512-goFKORVbvPuAQaXhpbemJFRKJ2aixr+AZMGiquiqKxaucC6hlpHNZHWgz5R7dS4roHiwq9vDctE//CZ++o0W1Q==", + "dependencies": { + "prosemirror-model": "^1.0.0", + "prosemirror-transform": "^1.0.0", + "prosemirror-view": "^1.27.0" + } + }, + "node_modules/prosemirror-tables": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/prosemirror-tables/-/prosemirror-tables-1.3.4.tgz", + "integrity": "sha512-z6uLSQ1BLC3rgbGwZmpfb+xkdvD7W/UOsURDfognZFYaTtc0gsk7u/t71Yijp2eLflVpffMk6X0u0+u+MMDvIw==", + "dependencies": { + "prosemirror-keymap": "^1.1.2", + "prosemirror-model": "^1.8.1", + "prosemirror-state": "^1.3.1", + "prosemirror-transform": "^1.2.1", + "prosemirror-view": "^1.13.3" + } + }, + "node_modules/prosemirror-transform": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/prosemirror-transform/-/prosemirror-transform-1.8.0.tgz", + "integrity": "sha512-BaSBsIMv52F1BVVMvOmp1yzD3u65uC3HTzCBQV1WDPqJRQ2LuHKcyfn0jwqodo8sR9vVzMzZyI+Dal5W9E6a9A==", + "dependencies": { + "prosemirror-model": "^1.0.0" + } + }, + "node_modules/prosemirror-view": { + "version": "1.32.4", + "resolved": "https://registry.npmjs.org/prosemirror-view/-/prosemirror-view-1.32.4.tgz", + "integrity": "sha512-WoT+ZYePp0WQvp5coABAysheZg9WttW3TSEUNgsfDQXmVOJlnjkbFbXicKPvWFLiC0ZjKt1ykbyoVKqhVnCiSQ==", + "dependencies": { + "prosemirror-model": "^1.16.0", + "prosemirror-state": "^1.0.0", + "prosemirror-transform": "^1.1.0" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "peer": true + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/pure-rand": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", + "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ], + "optional": true, + "peer": true + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + }, + "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==", + "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/quick-lru": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "engines": { + "node": ">=8" + } + }, + "node_modules/raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "dependencies": { + "performance-now": "^2.1.0" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-app-polyfill": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz", + "integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==", + "dependencies": { + "core-js": "^3.19.2", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.9", + "whatwg-fetch": "^3.6.2" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/react-app-polyfill/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==" + }, + "node_modules/react-dev-utils": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", + "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", + "dependencies": { + "@babel/code-frame": "^7.16.0", + "address": "^1.1.2", + "browserslist": "^4.18.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "detect-port-alt": "^1.1.6", + "escape-string-regexp": "^4.0.0", + "filesize": "^8.0.6", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.5.0", + "global-modules": "^2.0.0", + "globby": "^11.0.4", + "gzip-size": "^6.0.0", + "immer": "^9.0.7", + "is-root": "^2.1.0", + "loader-utils": "^3.2.0", + "open": "^8.4.0", + "pkg-up": "^3.1.0", + "prompts": "^2.4.2", + "react-error-overlay": "^6.0.11", + "recursive-readdir": "^2.2.2", + "shell-quote": "^1.7.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/react-dev-utils/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==", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/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==", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "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/react-dev-utils/node_modules/loader-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/react-dev-utils/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==", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/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==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/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==", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-error-overlay": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", + "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==" + }, + "node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, + "node_modules/react-refresh": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", + "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-router": { + "version": "6.21.1", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.21.1.tgz", + "integrity": "sha512-W0l13YlMTm1YrpVIOpjCADJqEUpz1vm+CMo47RuFX4Ftegwm6KOYsL5G3eiE52jnJpKvzm6uB/vTKTPKM8dmkA==", + "dependencies": { + "@remix-run/router": "1.14.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/react-router-dom": { + "version": "6.21.1", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.21.1.tgz", + "integrity": "sha512-QCNrtjtDPwHDO+AO21MJd7yIcr41UetYt5jzaB9Y1UYaPTCnVuJq6S748g1dE11OQlCFIQg+RtAA1SEZIyiBeA==", + "dependencies": { + "@remix-run/router": "1.14.1", + "react-router": "6.21.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8", + "react-dom": ">=16.8" + } + }, + "node_modules/react-scripts": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", + "integrity": "sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==", + "dependencies": { + "@babel/core": "^7.16.0", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", + "@svgr/webpack": "^5.5.0", + "babel-jest": "^27.4.2", + "babel-loader": "^8.2.3", + "babel-plugin-named-asset-import": "^0.3.8", + "babel-preset-react-app": "^10.0.1", + "bfj": "^7.0.2", + "browserslist": "^4.18.1", + "camelcase": "^6.2.1", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "css-loader": "^6.5.1", + "css-minimizer-webpack-plugin": "^3.2.0", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "eslint": "^8.3.0", + "eslint-config-react-app": "^7.0.1", + "eslint-webpack-plugin": "^3.1.1", + "file-loader": "^6.2.0", + "fs-extra": "^10.0.0", + "html-webpack-plugin": "^5.5.0", + "identity-obj-proxy": "^3.0.0", + "jest": "^27.4.3", + "jest-resolve": "^27.4.2", + "jest-watch-typeahead": "^1.0.0", + "mini-css-extract-plugin": "^2.4.5", + "postcss": "^8.4.4", + "postcss-flexbugs-fixes": "^5.0.2", + "postcss-loader": "^6.2.1", + "postcss-normalize": "^10.0.1", + "postcss-preset-env": "^7.0.1", + "prompts": "^2.4.2", + "react-app-polyfill": "^3.0.0", + "react-dev-utils": "^12.0.1", + "react-refresh": "^0.11.0", + "resolve": "^1.20.0", + "resolve-url-loader": "^4.0.0", + "sass-loader": "^12.3.0", + "semver": "^7.3.5", + "source-map-loader": "^3.0.0", + "style-loader": "^3.3.1", + "tailwindcss": "^3.0.2", + "terser-webpack-plugin": "^5.2.5", + "webpack": "^5.64.4", + "webpack-dev-server": "^4.6.0", + "webpack-manifest-plugin": "^4.0.2", + "workbox-webpack-plugin": "^6.4.1" + }, + "bin": { + "react-scripts": "bin/react-scripts.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + }, + "peerDependencies": { + "react": ">= 16", + "typescript": "^3.2.1 || ^4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/react-scripts/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/@jest/core": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", + "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/react-scripts/node_modules/@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dependencies": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/@jest/reporters": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", + "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/react-scripts/node_modules/@jest/schemas": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", + "dependencies": { + "@sinclair/typebox": "^0.24.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/react-scripts/node_modules/@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/@jest/test-sequencer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", + "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", + "dependencies": { + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/@sinclair/typebox": { + "version": "0.24.51", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==" + }, + "node_modules/react-scripts/node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/react-scripts/node_modules/@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/react-scripts/node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/react-scripts/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/react-scripts/node_modules/are-we-there-yet": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", + "optional": true, + "peer": true, + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-scripts/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-scripts/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==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/react-scripts/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/react-scripts/node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" + }, + "node_modules/react-scripts/node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/react-scripts/node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/react-scripts/node_modules/gauge": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", + "optional": true, + "peer": true, + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-scripts/node_modules/jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", + "dependencies": { + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/react-scripts/node_modules/jest-changed-files": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "dependencies": { + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-circus": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", + "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", + "dependencies": { + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/react-scripts/node_modules/jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "dependencies": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "node_modules/react-scripts/node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-docblock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-each": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-environment-node": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-leak-detector": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "dependencies": { + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-resolve-dependencies": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-runner": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "dependencies": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz", + "integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==", + "dependencies": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^28.0.0", + "jest-watcher": "^28.0.0", + "slash": "^4.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "jest": "^27.0.0 || ^28.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/@jest/console": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", + "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "slash": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/@jest/test-result": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", + "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", + "dependencies": { + "@jest/console": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/@jest/types": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", + "dependencies": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/emittery": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", + "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/jest-message-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/jest-regex-util": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/jest-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/jest-watcher": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", + "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", + "dependencies": { + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.10.2", + "jest-util": "^28.1.3", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/jest-watcher/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==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/pretty-format": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", + "dependencies": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/string-length": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", + "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", + "dependencies": { + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/string-length/node_modules/char-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz", + "integrity": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==", + "engines": { + "node": ">=12.20" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead/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==", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/strip-ansi/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==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/react-scripts/node_modules/jest-watcher": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", + "dependencies": { + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.5.1", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/node-sass": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-7.0.3.tgz", + "integrity": "sha512-8MIlsY/4dXUkJDYht9pIWBhMil3uHmE8b/AdJPjmFn1nBx9X9BASzfzmsCy0uCCb8eqI3SYYzVPDswWqSx7gjw==", + "hasInstallScript": true, + "optional": true, + "peer": true, + "dependencies": { + "async-foreach": "^0.1.3", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "gaze": "^1.0.0", + "get-stdin": "^4.0.1", + "glob": "^7.0.3", + "lodash": "^4.17.15", + "meow": "^9.0.0", + "nan": "^2.13.2", + "node-gyp": "^8.4.1", + "npmlog": "^5.0.0", + "request": "^2.88.0", + "sass-graph": "^4.0.1", + "stdout-stream": "^1.4.0", + "true-case-path": "^1.0.2" + }, + "bin": { + "node-sass": "bin/node-sass" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/react-scripts/node_modules/npmlog": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", + "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", + "optional": true, + "peer": true, + "dependencies": { + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" + } + }, + "node_modules/react-scripts/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "node_modules/react-scripts/node_modules/sass-loader": { + "version": "12.6.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", + "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", + "dependencies": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + } + } + }, + "node_modules/react-scripts/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/true-case-path": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz", + "integrity": "sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew==", + "optional": true, + "peer": true, + "dependencies": { + "glob": "^7.1.2" + } + }, + "node_modules/react-scripts/node_modules/v8-to-istanbul": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", + "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/react-scripts/node_modules/v8-to-istanbul/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/react-scripts/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "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/react-transition-group": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.2.tgz", + "integrity": "sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==", + "peer": true, + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/read-pkg/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/recursive-readdir": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", + "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", + "dependencies": { + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", + "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==" + }, + "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==", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "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==" + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", + "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" + }, + "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==", + "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==", + "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==", + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "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", + "optional": true, + "peer": 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==", + "optional": true, + "peer": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/request/node_modules/qs": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", + "optional": true, + "peer": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/request/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==", + "optional": true, + "peer": true, + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/request/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.", + "optional": true, + "peer": true, + "bin": { + "uuid": "bin/uuid" + } + }, + "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==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "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-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-url-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", + "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", + "dependencies": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^7.0.35", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=8.9" + }, + "peerDependencies": { + "rework": "1.0.1", + "rework-visit": "1.0.0" + }, + "peerDependenciesMeta": { + "rework": { + "optional": true + }, + "rework-visit": { + "optional": true + } + } + }, + "node_modules/resolve-url-loader/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/resolve-url-loader/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/resolve-url-loader/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/resolve-url-loader/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve.exports": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", + "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rollup": { + "version": "2.79.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", + "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/rollup-plugin-terser": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", + "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", + "deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + }, + "peerDependencies": { + "rollup": "^2.0.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/rope-sequence": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/rope-sequence/-/rope-sequence-1.3.4.tgz", + "integrity": "sha512-UT5EDe2cu2E/6O4igUr5PSFs23nvvukicWHx6GnOPlHAiiYbzNuCRQCuiUdHJQcqKalLKlrYJnjY0ySGsXNQXQ==" + }, + "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==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "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==", + "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.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.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==" + }, + "node_modules/sanitize.css": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-13.0.0.tgz", + "integrity": "sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==" + }, + "node_modules/sass-graph": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-4.0.1.tgz", + "integrity": "sha512-5YCfmGBmxoIRYHnKK2AKzrAkCoQ8ozO+iumT8K4tXJXRVCPf+7s1/9KxTSW3Rbvf+7Y7b4FR3mWyLnQr3PHocA==", + "dependencies": { + "glob": "^7.0.0", + "lodash": "^4.17.11", + "scss-tokenizer": "^0.4.3", + "yargs": "^17.2.1" + }, + "bin": { + "sassgraph": "bin/sassgraph" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "node_modules/saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/scss-tokenizer": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.4.3.tgz", + "integrity": "sha512-raKLgf1LI5QMQnG+RxHz6oK0sL3x3I4FN2UDLqgLOGO8hodECNnNh5BXn7fAyBxrA8zVzdQizQ6XjNJQ+uBwMw==", + "dependencies": { + "js-base64": "^2.4.9", + "source-map": "^0.7.3" + } + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" + }, + "node_modules/selfsigned": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", + "dependencies": { + "@types/node-forge": "^1.3.0", + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver/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==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" + }, + "node_modules/set-function-length": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", + "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "dependencies": { + "define-data-property": "^1.1.1", + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "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==", + "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/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "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==", + "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==", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==" + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/socks": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "dependencies": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", + "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", + "dependencies": { + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + }, + "node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-loader": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", + "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", + "dependencies": { + "abab": "^2.0.5", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "deprecated": "Please use @jridgewell/sourcemap-codec instead" + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==" + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + }, + "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==", + "optional": true, + "peer": 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/ssri": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-9.0.1.tgz", + "integrity": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==", + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + }, + "node_modules/static-eval": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz", + "integrity": "sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==", + "dependencies": { + "escodegen": "^1.8.1" + } + }, + "node_modules/static-eval/node_modules/escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/static-eval/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/static-eval/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-eval/node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-eval/node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/static-eval/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-eval/node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stdout-stream": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.1.tgz", + "integrity": "sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==", + "dependencies": { + "readable-stream": "^2.0.1" + } + }, + "node_modules/stdout-stream/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/stdout-stream/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/stdout-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/stdout-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/stop-iteration-iterator": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", + "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", + "dependencies": { + "internal-slot": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==" + }, + "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==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs": { + "name": "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==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/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==" + }, + "node_modules/string-width/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==" + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", + "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "regexp.prototype.flags": "^1.5.0", + "set-function-name": "^2.0.0", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "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==", + "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==", + "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/stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "dependencies": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "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==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", + "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "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==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-outer/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, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/style-loader": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.3.tgz", + "integrity": "sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==", + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/stylehacks": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/sucrase/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==", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sucrase/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sucrase/node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "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==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "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==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + }, + "node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/svgo/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==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/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==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/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==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/svgo/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==" + }, + "node_modules/svgo/node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/svgo/node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/svgo/node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/svgo/node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/svgo/node_modules/domutils/node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "node_modules/svgo/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==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/svgo/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==", + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/svgo/node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/svgo/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==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + }, + "node_modules/tailwindcss": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.0.tgz", + "integrity": "sha512-VigzymniH77knD1dryXbyxR+ePHihHociZbXnLZHUyzf2MMs2ZVqlUrZ3FvpXP8pno9JzmILt1sZPD19M3IxtA==", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.0", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.19.1", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/tar": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", + "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/tempy": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz", + "integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==", + "dependencies": { + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser": { + "version": "5.26.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.26.0.tgz", + "integrity": "sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.9", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", + "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "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==", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "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==" + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/throat": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", + "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==" + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + }, + "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==", + "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==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tough-cookie": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/trim-newlines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/trim-repeated/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, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/true-case-path": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-2.2.1.tgz", + "integrity": "sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q==" + }, + "node_modules/tryer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", + "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" + }, + "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==", + "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==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tsconfig-paths/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==", + "engines": { + "node": ">=4" + } + }, + "node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "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==", + "optional": true, + "peer": 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==", + "optional": true, + "peer": 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==", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + }, + "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==", + "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.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "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-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==", + "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/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "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==", + "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/underscore": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz", + "integrity": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==" + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" + }, + "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==", + "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==", + "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==", + "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==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unique-filename": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz", + "integrity": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==", + "dependencies": { + "unique-slug": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/unique-slug": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-3.0.0.tgz", + "integrity": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==", + "dependencies": { + "imurmurhash": "^0.1.4" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "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==", + "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" + } + ], + "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==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/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==", + "optional": true, + "peer": 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/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "engines": { + "node": ">= 0.8" + } + }, + "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==", + "engines": [ + "node >=0.6.0" + ], + "optional": true, + "peer": true, + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/verror/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==", + "optional": true, + "peer": true + }, + "node_modules/w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "deprecated": "Use your platform's native performance.now() and performance.timeOrigin.", + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "node_modules/w3c-keyname": { + "version": "2.2.8", + "resolved": "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.8.tgz", + "integrity": "sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==" + }, + "node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dependencies": { + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "engines": { + "node": ">=10.4" + } + }, + "node_modules/webpack": { + "version": "5.89.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.89.0.tgz", + "integrity": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==", + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server": { + "version": "4.15.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz", + "integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==", + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.5", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "launch-editor": "^2.6.0", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.1.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.13.0" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-server/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "8.15.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.15.1.tgz", + "integrity": "sha512-W5OZiCjXEmk0yZ66ZN82beM5Sz7l7coYxpRkzS+p9PP+ToQry8szKh+61eNktr7EA9DOwvFGhfC605jDHbP6QQ==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/webpack-manifest-plugin": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz", + "integrity": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==", + "dependencies": { + "tapable": "^2.0.0", + "webpack-sources": "^2.2.0" + }, + "engines": { + "node": ">=12.22.0" + }, + "peerDependencies": { + "webpack": "^4.44.2 || ^5.47.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/webpack-sources": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz", + "integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==", + "dependencies": { + "source-list-map": "^2.0.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/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==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "node_modules/whatwg-encoding/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/whatwg-fetch": { + "version": "3.6.20", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", + "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==" + }, + "node_modules/whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" + }, + "node_modules/whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dependencies": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "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==", + "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-builtin-type": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "dependencies": { + "function.prototype.name": "^1.1.5", + "has-tostringtag": "^1.0.0", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", + "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.4", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "dependencies": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workbox-background-sync": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.6.0.tgz", + "integrity": "sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-broadcast-update": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.6.0.tgz", + "integrity": "sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-build": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.6.0.tgz", + "integrity": "sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==", + "dependencies": { + "@apideck/better-ajv-errors": "^0.3.1", + "@babel/core": "^7.11.1", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.2", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-node-resolve": "^11.2.1", + "@rollup/plugin-replace": "^2.4.1", + "@surma/rollup-plugin-off-main-thread": "^2.2.3", + "ajv": "^8.6.0", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "lodash": "^4.17.20", + "pretty-bytes": "^5.3.0", + "rollup": "^2.43.1", + "rollup-plugin-terser": "^7.0.0", + "source-map": "^0.8.0-beta.0", + "stringify-object": "^3.3.0", + "strip-comments": "^2.0.1", + "tempy": "^0.6.0", + "upath": "^1.2.0", + "workbox-background-sync": "6.6.0", + "workbox-broadcast-update": "6.6.0", + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-google-analytics": "6.6.0", + "workbox-navigation-preload": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-range-requests": "6.6.0", + "workbox-recipes": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0", + "workbox-streams": "6.6.0", + "workbox-sw": "6.6.0", + "workbox-window": "6.6.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz", + "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==", + "dependencies": { + "json-schema": "^0.4.0", + "jsonpointer": "^5.0.0", + "leven": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "ajv": ">=8" + } + }, + "node_modules/workbox-build/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/workbox-build/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/workbox-build/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/workbox-build/node_modules/source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", + "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "dependencies": { + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/workbox-build/node_modules/tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/workbox-build/node_modules/webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + }, + "node_modules/workbox-build/node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/workbox-cacheable-response": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.6.0.tgz", + "integrity": "sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==", + "deprecated": "workbox-background-sync@6.6.0", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-core": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.6.0.tgz", + "integrity": "sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==" + }, + "node_modules/workbox-expiration": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.6.0.tgz", + "integrity": "sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-google-analytics": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.6.0.tgz", + "integrity": "sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==", + "dependencies": { + "workbox-background-sync": "6.6.0", + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "node_modules/workbox-navigation-preload": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.6.0.tgz", + "integrity": "sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-precaching": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.6.0.tgz", + "integrity": "sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==", + "dependencies": { + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "node_modules/workbox-range-requests": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.6.0.tgz", + "integrity": "sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-recipes": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.6.0.tgz", + "integrity": "sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==", + "dependencies": { + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "node_modules/workbox-routing": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.6.0.tgz", + "integrity": "sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-strategies": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.6.0.tgz", + "integrity": "sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-streams": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.6.0.tgz", + "integrity": "sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==", + "dependencies": { + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0" + } + }, + "node_modules/workbox-sw": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.6.0.tgz", + "integrity": "sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==" + }, + "node_modules/workbox-webpack-plugin": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.6.0.tgz", + "integrity": "sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==", + "dependencies": { + "fast-json-stable-stringify": "^2.1.0", + "pretty-bytes": "^5.4.1", + "upath": "^1.2.0", + "webpack-sources": "^1.4.3", + "workbox-build": "6.6.0" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.9.0" + } + }, + "node_modules/workbox-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workbox-webpack-plugin/node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/workbox-window": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.6.0.tgz", + "integrity": "sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==", + "dependencies": { + "@types/trusted-types": "^2.0.2", + "workbox-core": "6.6.0" + } + }, + "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==", + "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-cjs": { + "name": "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==", + "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/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "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": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs/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==", + "engines": { + "node": ">=12" + } + }, + "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==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/examples/react-coffee-warehouse/package.json b/examples/react-coffee-warehouse/package.json new file mode 100644 index 00000000..03b3c687 --- /dev/null +++ b/examples/react-coffee-warehouse/package.json @@ -0,0 +1,73 @@ +{ + "name": "coffee-warehouse", + "version": "0.1.0", + "private": true, + "homepage": "http://telerik.github.io/react-coffee-warehouse", + "dependencies": { + "@progress/kendo-data-query": "^1.7.0", + "@progress/kendo-date-math": "^1.5.12", + "@progress/kendo-drawing": "^1.19.0", + "@progress/kendo-licensing": "^1.3.3", + "@progress/kendo-react-buttons": "^7.0.2", + "@progress/kendo-react-charts": "^7.0.2", + "@progress/kendo-react-common": "^7.0.2", + "@progress/kendo-react-data-tools": "^7.0.2", + "@progress/kendo-react-dateinputs": "^7.0.2", + "@progress/kendo-react-dialogs": "^7.0.2", + "@progress/kendo-react-dropdowns": "^7.0.2", + "@progress/kendo-react-editor": "^7.0.2", + "@progress/kendo-react-excel-export": "^7.0.2", + "@progress/kendo-react-form": "^7.0.2", + "@progress/kendo-react-grid": "^7.0.2", + "@progress/kendo-react-indicators": "^7.0.2", + "@progress/kendo-react-inputs": "^7.0.2", + "@progress/kendo-react-intl": "^7.0.2", + "@progress/kendo-react-labels": "^7.0.2", + "@progress/kendo-react-layout": "^7.0.2", + "@progress/kendo-react-pdf": "^7.0.2", + "@progress/kendo-react-popup": "^7.0.2", + "@progress/kendo-react-progressbars": "^7.0.2", + "@progress/kendo-react-scheduler": "^7.0.2", + "@progress/kendo-react-treeview": "^7.0.2", + "@progress/kendo-react-upload": "^7.0.2", + "@progress/kendo-svg-icons": "^2.1.0", + "@testing-library/jest-dom": "^6.1.5", + "@testing-library/react": "^14.1.2", + "@testing-library/user-event": "^14.5.1", + "cldr-core": "43.1.0", + "cldr-dates-full": "^43.1.0", + "cldr-numbers-full": "^43.1.0", + "hammerjs": "^2.0.8", + "node-sass": "^9.0.0", + "react": "18.2.0", + "react-dom": "18.2.0", + "react-router-dom": "^6.21.0", + "react-scripts": "5.0.1" + }, + "scripts": { + "start": "react-scripts start", + "build": "react-scripts build", + "test": "react-scripts test", + "eject": "react-scripts eject", + "predeploy": "npm run build", + "deploy": "gh-pages -d build" + }, + "eslintConfig": { + "extends": "react-app" + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + }, + "devDependencies": { + "gh-pages": "^6.1.0" + } +} diff --git a/examples/react-coffee-warehouse/public/favicon.ico b/examples/react-coffee-warehouse/public/favicon.ico new file mode 100644 index 00000000..667b63a9 Binary files /dev/null and b/examples/react-coffee-warehouse/public/favicon.ico differ diff --git a/examples/react-coffee-warehouse/public/index.html b/examples/react-coffee-warehouse/public/index.html new file mode 100644 index 00000000..682d1e25 --- /dev/null +++ b/examples/react-coffee-warehouse/public/index.html @@ -0,0 +1,40 @@ + + + + + + + + + + + + + React App + + + +
+ + + diff --git a/examples/react-coffee-warehouse/public/logo192.png b/examples/react-coffee-warehouse/public/logo192.png new file mode 100644 index 00000000..fc44b0a3 Binary files /dev/null and b/examples/react-coffee-warehouse/public/logo192.png differ diff --git a/examples/react-coffee-warehouse/public/logo512.png b/examples/react-coffee-warehouse/public/logo512.png new file mode 100644 index 00000000..a4e47a65 Binary files /dev/null and b/examples/react-coffee-warehouse/public/logo512.png differ diff --git a/examples/react-coffee-warehouse/public/manifest.json b/examples/react-coffee-warehouse/public/manifest.json new file mode 100644 index 00000000..2f2be64f --- /dev/null +++ b/examples/react-coffee-warehouse/public/manifest.json @@ -0,0 +1,25 @@ +{ + "short_name": "React App", + "name": "Create React App Sample", + "icons": [ + { + "src": "favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + }, + { + "src": "logo192.png", + "type": "image/png", + "sizes": "192x192" + }, + { + "src": "logo512.png", + "type": "image/png", + "sizes": "512x512" + } + ], + "start_url": ".", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +} diff --git a/examples/react-coffee-warehouse/public/robots.txt b/examples/react-coffee-warehouse/public/robots.txt new file mode 100644 index 00000000..9dd52a51 --- /dev/null +++ b/examples/react-coffee-warehouse/public/robots.txt @@ -0,0 +1,3 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Disallow: diff --git a/examples/react-coffee-warehouse/src/App.jsx b/examples/react-coffee-warehouse/src/App.jsx new file mode 100644 index 00000000..386dd073 --- /dev/null +++ b/examples/react-coffee-warehouse/src/App.jsx @@ -0,0 +1,109 @@ +import React from 'react'; + +import { BrowserRouter, Routes, Route, Navigate } from 'react-router-dom'; +import Dashboard from './pages/Dashboard.jsx'; +import Planning from './pages/Planning.jsx'; +import Profile from './pages/Profile.jsx'; +import Info from './pages/Info.jsx'; +import DrawerRouterContainer from './components/DrawerRouterContainer.jsx'; +import { AppContext } from './AppContext'; +import { countries } from './resources/countries'; +import { IntlProvider, load, LocalizationProvider, loadMessages } from '@progress/kendo-react-intl'; + +import likelySubtags from 'cldr-core/supplemental/likelySubtags.json'; +import currencyData from 'cldr-core/supplemental/currencyData.json'; +import weekData from 'cldr-core/supplemental/weekData.json'; + +import frNumbers from 'cldr-numbers-full/main/fr/numbers.json'; +import frLocalCurrency from 'cldr-numbers-full/main/fr/currencies.json'; +import frCaGregorian from 'cldr-dates-full/main/fr/ca-gregorian.json'; +import frDateFields from 'cldr-dates-full/main/fr/dateFields.json'; + +import usNumbers from 'cldr-numbers-full/main/en/numbers.json'; +import usLocalCurrency from 'cldr-numbers-full/main/en/currencies.json'; +import usCaGregorian from 'cldr-dates-full/main/en/ca-gregorian.json'; +import usDateFields from 'cldr-dates-full/main/en/dateFields.json'; + +import esNumbers from 'cldr-numbers-full/main/es/numbers.json'; +import esLocalCurrency from 'cldr-numbers-full/main/es/currencies.json'; +import esCaGregorian from 'cldr-dates-full/main/es/ca-gregorian.json'; +import esDateFields from 'cldr-dates-full/main/es/dateFields.json'; + +import { enMessages } from './messages/en-US'; +import { frMessages } from './messages/fr'; +import { esMessages } from './messages/es'; + +import 'hammerjs'; +import './App.scss'; + +load( + likelySubtags, + currencyData, + weekData, + frNumbers, + frLocalCurrency, + frCaGregorian, + frDateFields, + usNumbers, + usLocalCurrency, + usCaGregorian, + usDateFields, + esNumbers, + esLocalCurrency, + esCaGregorian, + esDateFields +); + +loadMessages(esMessages, 'es'); +loadMessages(frMessages, 'fr'); +loadMessages(enMessages, 'en-US'); + +const App = () => { + const [contextState, setContextState] = React.useState({ + localeId: 'en-US', + firstName: 'Peter', + lastName: 'Douglas', + middleName: '', + email: 'peter.douglas@progress.com', + phoneNumber: '(+1) 8373-837-93-02', + avatar: null, + country: countries[33].name, + isInPublicDirectory: true, + biography: '', + teamId: 1 + }); + const onLanguageChange = React.useCallback( + (event) => { setContextState({ ...contextState, localeId: event.value.localeId }) }, + [contextState, setContextState] + ); + const onProfileChange = React.useCallback( + (event) => { + setContextState({ ...contextState, ...event.dataItem }); + }, + [contextState, setContextState] + ); + + return ( +
+ + + + + + + } /> + } /> + } /> + } /> + } /> + + + + + + +
+ ); +} + +export default App; diff --git a/examples/react-coffee-warehouse/src/App.scss b/examples/react-coffee-warehouse/src/App.scss new file mode 100644 index 00000000..02d519cb --- /dev/null +++ b/examples/react-coffee-warehouse/src/App.scss @@ -0,0 +1,14 @@ +body { + margin: 0; + padding: 0; + list-style-type: none; +} + +html, +body { + &::-webkit-scrollbar { + display: none; + } +} + +@import "./styles/main.scss"; \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/AppContext.js b/examples/react-coffee-warehouse/src/AppContext.js new file mode 100644 index 00000000..1e7e8d96 --- /dev/null +++ b/examples/react-coffee-warehouse/src/AppContext.js @@ -0,0 +1,19 @@ +import React from 'react'; + +export const AppContext = React.createContext({ + languageId: 'en', + firstName: '', + lastName: '', + middleName: '', + email: '', + phoneNumber: '', + avatar: null, + country: '', + isInPublicDirectory: false, + biography: '', + teamId: null, + onLanguageChange: () => {}, + onProfileChange: () => {} +}); + +AppContext.displayName = 'AppContext'; \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/assets/dashboard-icon.svg b/examples/react-coffee-warehouse/src/assets/dashboard-icon.svg new file mode 100644 index 00000000..3309ae38 --- /dev/null +++ b/examples/react-coffee-warehouse/src/assets/dashboard-icon.svg @@ -0,0 +1,12 @@ + + + + + + + diff --git a/examples/react-coffee-warehouse/src/assets/github-icon.svg b/examples/react-coffee-warehouse/src/assets/github-icon.svg new file mode 100644 index 00000000..aa1b3732 --- /dev/null +++ b/examples/react-coffee-warehouse/src/assets/github-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/examples/react-coffee-warehouse/src/assets/hamburger-icon.svg b/examples/react-coffee-warehouse/src/assets/hamburger-icon.svg new file mode 100644 index 00000000..650ab6ae --- /dev/null +++ b/examples/react-coffee-warehouse/src/assets/hamburger-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/examples/react-coffee-warehouse/src/assets/header-bg.png b/examples/react-coffee-warehouse/src/assets/header-bg.png new file mode 100644 index 00000000..80b2b45b Binary files /dev/null and b/examples/react-coffee-warehouse/src/assets/header-bg.png differ diff --git a/examples/react-coffee-warehouse/src/assets/info-background.svg b/examples/react-coffee-warehouse/src/assets/info-background.svg new file mode 100644 index 00000000..ac1f3099 --- /dev/null +++ b/examples/react-coffee-warehouse/src/assets/info-background.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/examples/react-coffee-warehouse/src/assets/info-icon.svg b/examples/react-coffee-warehouse/src/assets/info-icon.svg new file mode 100644 index 00000000..1dba0b43 --- /dev/null +++ b/examples/react-coffee-warehouse/src/assets/info-icon.svg @@ -0,0 +1,12 @@ + + + + + + + diff --git a/examples/react-coffee-warehouse/src/assets/kendoka.png b/examples/react-coffee-warehouse/src/assets/kendoka.png new file mode 100644 index 00000000..026243a1 Binary files /dev/null and b/examples/react-coffee-warehouse/src/assets/kendoka.png differ diff --git a/examples/react-coffee-warehouse/src/assets/kendoka.svg b/examples/react-coffee-warehouse/src/assets/kendoka.svg new file mode 100644 index 00000000..12a949ff --- /dev/null +++ b/examples/react-coffee-warehouse/src/assets/kendoka.svg @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/react-coffee-warehouse/src/assets/planning-icon.svg b/examples/react-coffee-warehouse/src/assets/planning-icon.svg new file mode 100644 index 00000000..78190820 --- /dev/null +++ b/examples/react-coffee-warehouse/src/assets/planning-icon.svg @@ -0,0 +1,10 @@ + + + + + + + diff --git a/examples/react-coffee-warehouse/src/assets/profile-icon.svg b/examples/react-coffee-warehouse/src/assets/profile-icon.svg new file mode 100644 index 00000000..8396c2c3 --- /dev/null +++ b/examples/react-coffee-warehouse/src/assets/profile-icon.svg @@ -0,0 +1,13 @@ + + + + + + + diff --git a/examples/react-coffee-warehouse/src/assets/teammember-01.png b/examples/react-coffee-warehouse/src/assets/teammember-01.png new file mode 100644 index 00000000..ef2bd190 Binary files /dev/null and b/examples/react-coffee-warehouse/src/assets/teammember-01.png differ diff --git a/examples/react-coffee-warehouse/src/assets/teammember-02.png b/examples/react-coffee-warehouse/src/assets/teammember-02.png new file mode 100644 index 00000000..60fc2e75 Binary files /dev/null and b/examples/react-coffee-warehouse/src/assets/teammember-02.png differ diff --git a/examples/react-coffee-warehouse/src/assets/teammember-03.png b/examples/react-coffee-warehouse/src/assets/teammember-03.png new file mode 100644 index 00000000..f2c28b57 Binary files /dev/null and b/examples/react-coffee-warehouse/src/assets/teammember-03.png differ diff --git a/examples/react-coffee-warehouse/src/assets/teammember-04.png b/examples/react-coffee-warehouse/src/assets/teammember-04.png new file mode 100644 index 00000000..b24b9dbc Binary files /dev/null and b/examples/react-coffee-warehouse/src/assets/teammember-04.png differ diff --git a/examples/react-coffee-warehouse/src/assets/teammember-05.png b/examples/react-coffee-warehouse/src/assets/teammember-05.png new file mode 100644 index 00000000..b5774de1 Binary files /dev/null and b/examples/react-coffee-warehouse/src/assets/teammember-05.png differ diff --git a/examples/react-coffee-warehouse/src/assets/user-avatar.jpg b/examples/react-coffee-warehouse/src/assets/user-avatar.jpg new file mode 100644 index 00000000..dec80f17 Binary files /dev/null and b/examples/react-coffee-warehouse/src/assets/user-avatar.jpg differ diff --git a/examples/react-coffee-warehouse/src/components/Chart.jsx b/examples/react-coffee-warehouse/src/components/Chart.jsx new file mode 100644 index 00000000..93cc2475 --- /dev/null +++ b/examples/react-coffee-warehouse/src/components/Chart.jsx @@ -0,0 +1,105 @@ + +import React from 'react'; +import * as PropTypes from 'prop-types'; + +import { + Chart as KendoChart, + ChartSeries, + ChartSeriesItem, + ChartCategoryAxis, + ChartCategoryAxisItem, + ChartValueAxis, + ChartValueAxisItem, + ChartLegend, + ChartTooltip +} from '@progress/kendo-react-charts'; +import { groupBy, filterBy } from '@progress/kendo-data-query'; +import { useInternationalization } from '@progress/kendo-react-intl'; +import { locales } from './../resources/locales'; + +const MONTH_FORMAT = 'MMMM yyyy'; +const COMPACT_FORMAT = 'MM yyyy'; + +export const Chart = (props) => { + const { + data, groupByField, seriesCategoryField, seriesField, + filterStart, filterEnd, seriesType, groupResourceData, groupTextField, + groupColorField, onRefresh + } = props; + + const intlService = useInternationalization(); + const filteredData = filterBy(data, { + logic: "and", + filters: [ + { field: "orderDate", operator: "gt", value: filterStart }, + { field: "orderDate", operator: "lt", value: filterEnd } + ] + }); + const groupedData = groupBy(filteredData, [{ field: groupByField }]); + + const ChartTooltipRender = ({ point }) => { + return ( +
+
{intlService.formatDate(point.category, MONTH_FORMAT)}
+
{intlService.formatNumber(point.value, {locale: locales.locale})}
+
+ ); + }; + + return ( + + + + + { + groupedData.map(group => { + const groupResource = groupResourceData.find(item => item[groupByField] === group.value); + + return ( + + + + ); + }) + } + + + = 480 ? MONTH_FORMAT : COMPACT_FORMAT + } + }} + > + + + + + + + + ); +}; + +Chart.displayName = 'Chart'; +Chart.propTypes = { + data: PropTypes.array, + groupByField: PropTypes.string, + seriesCategoryField: PropTypes.string, + seriesField: PropTypes.string, + filterStart: PropTypes.object, + filterEnd: PropTypes.object, + seriesType: PropTypes.string, + groupResourceData: PropTypes.array, + groupTextField: PropTypes.string, + onRefresh: PropTypes.func +}; diff --git a/examples/react-coffee-warehouse/src/components/DrawerRouterContainer.jsx b/examples/react-coffee-warehouse/src/components/DrawerRouterContainer.jsx new file mode 100644 index 00000000..0ae16103 --- /dev/null +++ b/examples/react-coffee-warehouse/src/components/DrawerRouterContainer.jsx @@ -0,0 +1,76 @@ +import React from 'react'; +import { useNavigate } from 'react-router-dom'; +import { Drawer, DrawerContent } from '@progress/kendo-react-layout'; +import { + useLocalization +} from "@progress/kendo-react-intl"; +import { Header } from './Header.jsx'; +import { gridIcon, calendarIcon, userIcon, infoCircleIcon} from '@progress/kendo-svg-icons' + +const items = [ + { name: 'dashboard', svgIcon: gridIcon, route: '/react-coffee-warehouse', selected: true }, + { name: 'planning', svgIcon: calendarIcon, route: '/planning', selected: false }, + { name: 'profile', svgIcon: userIcon, route: '/profile', selected: false }, + { separator: true }, + { name: 'info', svgIcon: infoCircleIcon, route: '/info', selected: false } +]; + +const DrawerRouterContainer = (props) => { + + const navigate = useNavigate(); + const localization = useLocalization(); + + const [expanded, setExpanded] = React.useState(false); + const [selectedId, setSelectedId] = React.useState(items.findIndex(x => x.selected === true)); + const [isSmallerScreen, setIsSmallerScreen] = React.useState(window.innerWidth < 768); + + const resizeWindow = () => { + setIsSmallerScreen(window.innerWidth < 768); + } + + const handleClick = (e) => { + setExpanded(!expanded); + } + + const handleSelect = (e) => { + setSelectedId(e.itemIndex); + setExpanded(false); + navigate(e.itemTarget.props.route); + } + + React.useEffect(() => { + window.addEventListener('resize', resizeWindow, false) + resizeWindow(); + }, []) + + return ( + +
+ ({ + ...item, + text: localization.toLanguageString(`custom.${item.name}`), + selected: index === selectedId + })) + } + position='start' + mode={isSmallerScreen ? 'overlay' : 'push'} + mini={isSmallerScreen ? false : true} + + onOverlayClick={handleClick} + onSelect={handleSelect} + > + + {props.children} + + + + ) +} + +export default DrawerRouterContainer; + diff --git a/examples/react-coffee-warehouse/src/components/Grid.jsx b/examples/react-coffee-warehouse/src/components/Grid.jsx new file mode 100644 index 00000000..70c69796 --- /dev/null +++ b/examples/react-coffee-warehouse/src/components/Grid.jsx @@ -0,0 +1,238 @@ + +import React from 'react'; +import * as PropTypes from 'prop-types'; + +import { Grid as KendoGrid, GridColumn, GridColumnMenuSort, GridColumnMenuFilter, GridToolbar } from '@progress/kendo-react-grid'; +import { Button } from '@progress/kendo-react-buttons' +import { GridPDFExport } from '@progress/kendo-react-pdf'; +import { ExcelExport } from '@progress/kendo-react-excel-export'; +import { process } from '@progress/kendo-data-query'; +import { Input } from '@progress/kendo-react-inputs'; +import { useLocalization } from '@progress/kendo-react-intl'; +import { fileExcelIcon, filePdfIcon } from '@progress/kendo-svg-icons'; + +export const Column = GridColumn; + +export const ColumnMenu = (props) => { + return ( +
+ + +
+ ); +} + +export const Grid = (props) => { + const { data, onDataChange, ...others } = props; + + const excelExportRef = React.useRef(null); + const pdfExportRef = React.useRef(null); + + const [isPdfExporting, setIsPdfExporting] = React.useState(false); + const [take, setTake] = React.useState(10); + const [skip, setSkip] = React.useState(0); + const [sort, setSort] = React.useState([]); + const [group, setGroup] = React.useState([]); + const [filter, setFilter] = React.useState(null); + const lastSelectedIndexRef = React.useRef(0); + const [allColumnFilter, setAllColumnFilter] = React.useState(''); + const localizationService = useLocalization(); + + const dataState = { + take, + skip, + sort, + group, + filter + }; + + const onDataStateChange = React.useCallback( + (event) => { + setTake(event.dataState.take); + setSkip(event.dataState.skip); + setSort(event.dataState.sort); + setGroup(event.dataState.group); + setFilter(event.dataState.filter); + }, + [setTake, setSkip, setSort, setGroup] + ); + + const onExcelExport = React.useCallback( + () => { + if (excelExportRef.current) { + excelExportRef.current.save(); + } + }, + [] + ); + + const onPdfExportDone = React.useCallback( + () => { + setIsPdfExporting(false); + }, + [] + ); + + const onAllColumnFilterChange = React.useCallback( + (event) => { + setAllColumnFilter(event.value); + }, + [setAllColumnFilter] + ); + + const onSelectionChange = React.useCallback( + (event) => { + let last = lastSelectedIndexRef.current; + const updatedData = data.map(dataItem => { + return {...dataItem}; + }); + const current = data.findIndex(dataItem => dataItem === event.dataItem); + + if (!event.nativeEvent.shiftKey) { + lastSelectedIndexRef.current = last = current; + } + + if (!event.nativeEvent.ctrlKey) { + updatedData.forEach(item => (item.selected = false)); + } + const select = !event.dataItem.selected; + for (let i = Math.min(last, current); i <= Math.max(last, current); i++) { + updatedData[i].selected = select; + } + + onDataChange(updatedData); + }, + [data, onDataChange] + ); + + const onHeaderSelectionChange = React.useCallback( + (event) => { + const checked = event.syntheticEvent.target.checked; + const updatedData = data.map(item=>{ + return { + ...item, + selected: checked + }; + }); + + onDataChange(updatedData); + }, + [data, onDataChange] + ); + + const textColumns = props.children.map(col => { + if (col.props.children) { + return col.props.children.map(child => { + if (!child.props.filter || child.props.filter === "text") { + return child.props.field; + } + return null; + }); + } else if (col.props.field) { + if (!col.props.filter || col.props.filter === "text") { + return col.props.field; + } + } + return null; + }) + .flat() + .filter(field => field); + + const allColumnsFilters = textColumns.map(column => ({ + field: column, + operator: 'contains', + value: allColumnFilter + })); + + const allColumnFilteredData = allColumnFilter ? + process(data, {filter: { logic: "or", filters: allColumnsFilters }}).data : + data; + + const processedData = process(allColumnFilteredData, dataState); + + React.useEffect( + () => { + if (!processedData.data.length) { + setSkip(0); + } + }, + [processedData] + ); + + const onPdfExport = React.useCallback( + () => { + if (pdfExportRef.current) { + setIsPdfExporting(true); + pdfExportRef.current.save(processedData.data, onPdfExportDone); + } + }, + [processedData, onPdfExportDone] + ); + + const GridElement = ( + + + + + + + dataItem.selected === false) === -1 + } + /> + {props.children} + + ); + + return ( + <> + + { GridElement } + + + { GridElement } + + + + ); +}; + +Grid.displayName = 'Grid'; +Grid.propTypes = { + data: PropTypes.array, + onDataChange: PropTypes.func, + style: PropTypes.object +}; diff --git a/examples/react-coffee-warehouse/src/components/GridCells.jsx b/examples/react-coffee-warehouse/src/components/GridCells.jsx new file mode 100644 index 00000000..9dfae7d7 --- /dev/null +++ b/examples/react-coffee-warehouse/src/components/GridCells.jsx @@ -0,0 +1,149 @@ +import * as React from 'react'; + +import { + Sparkline, + ChartValueAxis, + ChartValueAxisItem, + ChartArea +} from '@progress/kendo-react-charts'; +import { Badge } from '@progress/kendo-react-indicators'; +import { + useInternationalization +} from '@progress/kendo-react-intl'; + +import { images } from './../resources/images'; +import { SvgIcon } from '@progress/kendo-react-common'; +import { starIcon, starOutlineIcon} from '@progress/kendo-svg-icons'; + +export const FullNameCell = (props) => { + const customerPhotoStyle = { + display: 'inline-block', + width: 32, + height: 32, + borderRadius: '50%', + backgroundSize: '32px 35px', + backgroundPosition: 'center center', + verticalAlign: 'middle', + lineHeight: '32px', + boxShadow: 'inset 0 0 1px #999, inset 0 0 10px rgba(0,0,0,.2)', + marginLeft: '5px', + backgroundImage: images[props.dataItem.imgId + props.dataItem.gender] + }; + + const customerName = { + display: 'inline-block', + verticalAlign: 'middle', + lineHeight: '32px', + paddingLeft: '10px' + }; + + if (props.rowType === 'groupHeader') { + return null; + } + + return ( + +
+
{ props.dataItem.fullName }
+ + ); +}; + +export const FlagCell = (props) => { + if (props.rowType === 'groupHeader') { + return null; + } + + return ( + + {props.dataItem.country} + + ); +}; + +export const RatingCell = (props) => { + const MAX_STARS = 5; + const rating = props.dataItem.rating; + + if (props.rowType === 'groupHeader') { + return null; + } + + return ( + + { + [...new Array(MAX_STARS)].map((_, idx) => { + const isActive = rating <= idx; + return ( + + ); + }) + } + + ); +}; + +export const OnlineCell = (props) => { + const badgeStyle = { + position: 'relative', + display: 'inline' + }; + + if (props.rowType === 'groupHeader') { + return null; + } + + return ( + + + { + props.dataItem.isOnline === true ? + Online : + Offline + } + + ); +}; + +export const EngagementCell = (props) => { + if (props.rowType === 'groupHeader') { + return null; + } + + return ( + + + + + + + + + ); +}; + +export const CurrencyCell = (props) => { + const redBoldStyle = { + color: '#d9534f', + fontWeight: 600 + }; + + const intlService = useInternationalization(); + + if (props.rowType === 'groupHeader') { + return null; + } + + return ( + + { intlService.formatNumber(props.dataItem.budget, 'c') } + + ); +}; \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/components/Header.jsx b/examples/react-coffee-warehouse/src/components/Header.jsx new file mode 100644 index 00000000..2be51b11 --- /dev/null +++ b/examples/react-coffee-warehouse/src/components/Header.jsx @@ -0,0 +1,79 @@ + +import * as React from 'react'; +import * as PropTypes from 'prop-types'; + +import { DropDownList } from '@progress/kendo-react-dropdowns'; +import { Avatar } from '@progress/kendo-react-layout'; +import { useLocalization } from '@progress/kendo-react-intl'; + +import { locales } from './../resources/locales'; + +import { AppContext } from './../AppContext' +import { SvgIcon } from '@progress/kendo-react-common'; +import { menuIcon } from '@progress/kendo-svg-icons'; + +import headerBg from '../assets/header-bg.png'; +import userAvatar from '../assets/user-avatar.jpg'; + +export const Header = (props) => { + const { onButtonClick } = props; + const { avatar, localeId, onLanguageChange } = React.useContext(AppContext); + const localizationService = useLocalization(); + + const currentLanguage = locales.find(item => item.localeId === localeId); + + const imgRef = React.useRef(null); + const hasImage = avatar && avatar.length > 0; + + React.useEffect( + () => { + if (hasImage) { + var reader = new FileReader(); + + reader.onload = function (e) { + imgRef.current.setAttribute('src', e.target.result) + } + + reader.readAsDataURL(avatar[0].getRawFile()); + } + }, + [avatar, hasImage] + ); + + return ( +
+
+
+ +
+ +
+

{localizationService.toLanguageString('custom.warehouse')}

+
+
+ {localizationService.toLanguageString('custom.language')} + +
+ + { + hasImage ? + {'User : + user-avatar + } + +
+
+ ); +} + +Header.displayName = 'Header'; +Header.propTypes = { + page: PropTypes.string, + onButtonClick: PropTypes.func +}; diff --git a/examples/react-coffee-warehouse/src/components/Scheduler.jsx b/examples/react-coffee-warehouse/src/components/Scheduler.jsx new file mode 100644 index 00000000..2a10fa64 --- /dev/null +++ b/examples/react-coffee-warehouse/src/components/Scheduler.jsx @@ -0,0 +1,48 @@ + +import React from 'react'; +import * as PropTypes from 'prop-types'; + +import { + Scheduler as KendoScheduler, + DayView, + WeekView, + WorkWeekView, + MonthView, +} from '@progress/kendo-react-scheduler'; + +export const Scheduler = (props) => { + const { + data, modelFields, resources, onDataChange + } = props; + + const defaultDate = new Date("2020-04-27T00:00:00Z"); + + return ( + + + + + + + ); +}; + +Scheduler.displayName = 'Scheduler'; +Scheduler.propTypes = { + data: PropTypes.array +}; diff --git a/examples/react-coffee-warehouse/src/components/form/DropDownList.jsx b/examples/react-coffee-warehouse/src/components/form/DropDownList.jsx new file mode 100644 index 00000000..fae6e2ca --- /dev/null +++ b/examples/react-coffee-warehouse/src/components/form/DropDownList.jsx @@ -0,0 +1,62 @@ +import React from 'react'; +import * as PropTypes from 'prop-types'; + +import { DropDownList as KendoDropDownList } from '@progress/kendo-react-dropdowns'; +import { FieldWrapper } from '@progress/kendo-react-form'; +import { Label, Error, Hint } from '@progress/kendo-react-labels'; + +export const DropDownList = (fieldRenderProps) => { + const { validationMessage, touched, label, id, valid, disabled, hint, wrapperStyle, ...others } = fieldRenderProps; + const editorRef = React.useRef(null); + + const showValidationMessage = touched && validationMessage; + const showHint = !showValidationMessage && hint; + const hintId = showHint ? `${id}_hint` : ''; + const errorId = showValidationMessage ? `${id}_error` : ''; + const labelId = label ? `${id}_label` : ''; + + return ( + + +
+ + { + showHint && + {hint} + } + { + showValidationMessage && + {validationMessage} + } +
+
+ ); +}; + +DropDownList.displayName = 'DropDownList'; +DropDownList.propTypes = { + valid: PropTypes.bool, + defaultValue: PropTypes.object, + id: PropTypes.string, + optional: PropTypes.bool, + label: PropTypes.string, + hint: PropTypes.string, + validationMessage: PropTypes.string, + visited: PropTypes.bool, +}; \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/components/form/Editor.jsx b/examples/react-coffee-warehouse/src/components/form/Editor.jsx new file mode 100644 index 00000000..0c8f4773 --- /dev/null +++ b/examples/react-coffee-warehouse/src/components/form/Editor.jsx @@ -0,0 +1,59 @@ +import React from 'react'; +import * as PropTypes from 'prop-types'; + +import { Editor as KendoEditor, EditorTools } from '@progress/kendo-react-editor'; +import { FieldWrapper } from '@progress/kendo-react-form'; +import { Label, Error, Hint } from '@progress/kendo-react-labels'; + +export const Editor = (fieldRenderProps) => { + const { validationMessage, touched, label, id, valid, hint, optional, value, onChange, ...others } = fieldRenderProps; + const showValidationMessage = touched && validationMessage; + const showHint = !showValidationMessage && hint; + + const onChangeHandler = (event) => { + onChange({value: event.html}); + }; + + return ( + + +
+ + { + showHint && + {hint} + } + { + showValidationMessage && + {validationMessage} + } +
+
+ ); +}; + +Editor.displayName = 'Editor'; +Editor.propTypes = { + valid: PropTypes.bool, + value: PropTypes.string, + id: PropTypes.string, + optional: PropTypes.bool, + label: PropTypes.string, + hint: PropTypes.string, + validationMessage: PropTypes.string, + visited: PropTypes.bool, + onChange: PropTypes.func +}; \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/components/form/Input.jsx b/examples/react-coffee-warehouse/src/components/form/Input.jsx new file mode 100644 index 00000000..ad9657ee --- /dev/null +++ b/examples/react-coffee-warehouse/src/components/form/Input.jsx @@ -0,0 +1,51 @@ +import React from 'react'; +import * as PropTypes from 'prop-types'; + +import { Input as KendoInput } from '@progress/kendo-react-inputs'; +import { FieldWrapper } from '@progress/kendo-react-form'; +import { Label, Error, Hint } from '@progress/kendo-react-labels'; + +export const Input = (fieldRenderProps) => { + const { validationMessage, touched, label, id, valid, disabled, hint, type, optional, ...others } = fieldRenderProps; + + const showValidationMessage = touched && validationMessage; + const showHint = !showValidationMessage && hint; + const hintId = showHint ? `${id}_hint` : ''; + const errorId = showValidationMessage ? `${id}_error` : ''; + + return ( + + +
+ + { + showHint && + {hint} + } + { + showValidationMessage && + {validationMessage} + } +
+
+ ); +}; + +Input.displayName = 'Input'; +Input.propTypes = { + valid: PropTypes.bool, + value: PropTypes.string, + id: PropTypes.string, + optional: PropTypes.bool, + label: PropTypes.string, + hint: PropTypes.string, + validationMessage: PropTypes.string, + visited: PropTypes.bool, +}; \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/components/form/MaskedTextBox.jsx b/examples/react-coffee-warehouse/src/components/form/MaskedTextBox.jsx new file mode 100644 index 00000000..4e6e2fbd --- /dev/null +++ b/examples/react-coffee-warehouse/src/components/form/MaskedTextBox.jsx @@ -0,0 +1,48 @@ +import React from 'react'; +import * as PropTypes from 'prop-types'; + +import { MaskedTextBox as KendoMaskedTextBox } from '@progress/kendo-react-inputs'; +import { FieldWrapper } from '@progress/kendo-react-form'; +import { Label, Error, Hint } from '@progress/kendo-react-labels'; + +export const MaskedTextBox = (fieldRenderProps) => { + const { validationMessage, touched, label, id, valid, hint, optional, ...others } = fieldRenderProps; + + const showValidationMessage = touched && validationMessage; + const showHint = !showValidationMessage && hint; + const hintId = showHint ? `${id}_hint` : ''; + const errorId = showValidationMessage ? `${id}_error` : ''; + + return ( + + +
+ + { + showHint && + {hint} + } + { + showValidationMessage && + {validationMessage} + } +
+
+ ); +}; +MaskedTextBox.displayName = 'MaskedTextBox'; +MaskedTextBox.propTypes = { + valid: PropTypes.bool, + value: PropTypes.string, + id: PropTypes.string, + optional: PropTypes.bool, + label: PropTypes.string, + hint: PropTypes.string, + validationMessage: PropTypes.string, + visited: PropTypes.bool, +}; \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/components/form/RadioGroup.jsx b/examples/react-coffee-warehouse/src/components/form/RadioGroup.jsx new file mode 100644 index 00000000..6f329b19 --- /dev/null +++ b/examples/react-coffee-warehouse/src/components/form/RadioGroup.jsx @@ -0,0 +1,56 @@ +import React from 'react'; +import * as PropTypes from 'prop-types'; + +import { RadioGroup as KendoRadioGroup } from '@progress/kendo-react-inputs'; +import { FieldWrapper } from '@progress/kendo-react-form'; +import { Label, Error, Hint } from '@progress/kendo-react-labels'; + +export const RadioGroup = (fieldRenderProps) => { + const { validationMessage, touched, id, label, valid, disabled, hint, ...others } = fieldRenderProps; + const editorRef = React.useRef(null); + + const showValidationMessage = touched && validationMessage; + const showHint = !showValidationMessage && hint + const hintId = showHint ? `${id}_hint` : ''; + const errorId = showValidationMessage ? `${id}_error` : ''; + const labelId = label ? `${id}_label` : ''; + + return ( + + +
+ + { + showHint && + {hint} + } + { + showValidationMessage && + {validationMessage} + } +
+
+ ); +}; + + +RadioGroup.displayName = 'RadioGroup'; +RadioGroup.propTypes = { + valid: PropTypes.bool, + value: PropTypes.number, + labelId: PropTypes.string, + data: PropTypes.array, + optional: PropTypes.bool, + label: PropTypes.string, + hint: PropTypes.string, + validationMessage: PropTypes.string, + visited: PropTypes.bool, +}; \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/components/form/Switch.jsx b/examples/react-coffee-warehouse/src/components/form/Switch.jsx new file mode 100644 index 00000000..6f109f95 --- /dev/null +++ b/examples/react-coffee-warehouse/src/components/form/Switch.jsx @@ -0,0 +1,64 @@ +import React from 'react'; +import * as PropTypes from 'prop-types'; + +import { Switch as KendoSwitch } from '@progress/kendo-react-inputs'; +import { FieldWrapper } from '@progress/kendo-react-form'; +import { Label, Error, Hint } from '@progress/kendo-react-labels'; + +export const Switch = (fieldRenderProps) => { + const { validationMessage, touched, label, optional, id, valid, disabled, hint, ...others } = fieldRenderProps; + const editorRef = React.useRef(null); + + const showValidationMessage = touched && validationMessage; + const showHint = !showValidationMessage && hint; + const hintId = showHint ? `${id}_hint` : ''; + const errorId = showValidationMessage ? `${id}_error` : ''; + const labelId = label ? `${id}_label` : ''; + + return ( + + +
+ + { + showHint && + {hint} + } + { + showValidationMessage && + {validationMessage} + } +
+
+ ); +}; + +Switch.displayName = 'Switch'; +Switch.propTypes = { + valid: PropTypes.bool, + value: PropTypes.bool, + id: PropTypes.string, + labelId: PropTypes.string, + optional: PropTypes.bool, + label: PropTypes.string, + hint: PropTypes.string, + validationMessage: PropTypes.string, + visited: PropTypes.bool, +}; \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/components/form/Upload.jsx b/examples/react-coffee-warehouse/src/components/form/Upload.jsx new file mode 100644 index 00000000..b3a08a43 --- /dev/null +++ b/examples/react-coffee-warehouse/src/components/form/Upload.jsx @@ -0,0 +1,93 @@ +import React from 'react'; +import * as PropTypes from 'prop-types'; + +import { Upload as KendoUpload } from '@progress/kendo-react-upload'; +import { FieldWrapper } from '@progress/kendo-react-form'; +import { Label, Error, Hint } from '@progress/kendo-react-labels'; +import { Avatar } from '@progress/kendo-react-layout'; + +import userAvatar from '../../assets/user-avatar.jpg'; + +export const Upload = (fieldRenderProps) => { + const {valid, value, id, optional, label, hint, validationMessage, touched, ...others} = fieldRenderProps; + const imgRef = React.useRef(null); + const hasImage = value && value.length > 0; + const showValidationMessage = touched && validationMessage; + const showHint = !showValidationMessage && hint; + + const hintId = showHint ? `${id}_hint` : ''; + const errorId = showValidationMessage ? `${id}_error` : ''; + const labelId = label ? `${id}_label` : ''; + + const onChangeHandler = (event) => { + fieldRenderProps.onChange({ value: event.newState }); + }; + const onRemoveHandler = (event) => { + fieldRenderProps.onChange({ value: event.newState }); + }; + + React.useEffect( + () => { + if (hasImage) { + var reader = new FileReader(); + + reader.onload = function(e) { + imgRef.current.setAttribute('src', e.target.result) + } + + reader.readAsDataURL(value[0].getRawFile()); + } + }, + [value, hasImage] + ); + + return ( + + +
+ + { + showHint && + {hint} + } + { + showValidationMessage && + {validationMessage} + } +
+
+ ); +}; + +Upload.displayName = 'Upload'; +Upload.propTypes = { + valid: PropTypes.bool, + value: PropTypes.array, + id: PropTypes.string, + optional: PropTypes.bool, + label: PropTypes.string, + hint: PropTypes.string, + validationMessage: PropTypes.string, + visited: PropTypes.bool, +}; diff --git a/examples/react-coffee-warehouse/src/index.js b/examples/react-coffee-warehouse/src/index.js new file mode 100644 index 00000000..c1a705c9 --- /dev/null +++ b/examples/react-coffee-warehouse/src/index.js @@ -0,0 +1,20 @@ +import React from 'react'; +import { createRoot } from 'react-dom/client'; +import App from './App'; + +import * as serviceWorker from './serviceWorker'; + +import './App.scss'; + + +const root = createRoot(document.getElementById('root')); +root.render( + + + +); + +// If you want your app to work offline and load faster, you can change +// unregister() to register() below. Note this comes with some pitfalls. +// Learn more about service workers: https://bit.ly/CRA-PWA +serviceWorker.unregister(); diff --git a/examples/react-coffee-warehouse/src/messages/en-US.js b/examples/react-coffee-warehouse/src/messages/en-US.js new file mode 100644 index 00000000..3266e92c --- /dev/null +++ b/examples/react-coffee-warehouse/src/messages/en-US.js @@ -0,0 +1,332 @@ +export const enMessages = { + "custom": { + "teamEfficiency": "Team Efficiency", + "teamMembers": "Team Members", + "dashboard": "Dashboard", + "planning": "Planning", + "profile": "Profile", + "info": "Info", + "language": "Language", + "trend": "Trend", + "volume": "Volume", + "myTeam": "My Team", + "allTeams": "All Teams", + "teamCalendar": "Team Calendar", + "saveChanges": "Save Changes", + "cancel": "Cancel", + "warehouse": "Coffee Warehouse", + "startFreeTrial": "Start Free Trial", + "buyNow": "Buy Now", + "getSource": "Get the source code on GitHub", + "demoInfo": "This demo application is built using the following KendoReact components and the KendoReact Default Theme.", + "firstName": "First Name", + "middleName": "Middle Name", + "lastName": "Last Name", + "email": "Email Address", + "phoneNumber": "Phone Number", + "country": "Country", + "biography": "Short Biography", + "public": "Include in public directory", + "team": "Team", + "employee": "Employee", + "contactName": "Contact Name", + "jobTitle": "Job Title", + "status": "Status", + "performance": "Performance", + "rating":"Rating", + "engagement": "Engagement", + "budget": "Budget", + "contacts": "Contacts", + "address": "Address", + "phone": "Phone", + "gridSearch": "Search in all columns...", + "exportExcel": "Export to Excel", + "exportPdf": "Export to PDF" + }, + "grid":{ + "groupPanelEmpty": "Drag a column header and drop it here to group by that column", + "pagerItemsPerPage": "items per page", + "pagerInfo": "{0} - {1} of {2} items", + "pagerFirstPage": "Go to the first page", + "pagerPreviousPage": "Go to the previous page", + "pagerNextPage": "Go to the next page", + "pagerLastPage": "Go to the last page", + "pagerPage": "Page", + "pagerOf": "of", + "filterClearButton":"Clear", + "filterEqOperator": "Is equal to", + "filterNotEqOperator": "Is not equal to", + "filterIsNullOperator": "Is null", + "filterIsNotNullOperator": "Is not null", + "filterIsEmptyOperator": "Is empty", + "filterIsNotEmptyOperator": "Is not empty", + "filterStartsWithOperator": "Starts with", + "filterContainsOperator": "Contains", + "filterNotContainsOperator": "Does not contain", + "filterEndsWithOperator": "Ends with", + "filterGteOperator": "Is greater than or equal to", + "filterGtOperator": "Is greater than", + "filterLteOperator": "Is less than or equal to", + "filterLtOperator":"Is less than", + "filterIsTrue":"Is true", + "filterIsFalse": "Is false", + "filterBooleanAll": "(All)", + "filterAfterOrEqualOperator": "Is after or equal to", + "filterAfterOperator": "Is after", + "filterBeforeOperator":"Is before", + "filterBeforeOrEqualOperator":"Is before or equal to", + "noRecords":"No records available." + }, + "filter": { + "eqOperator": "Is equal to", + "notEqOperator": "Is not equal to", + "isNullOperator": "Is null", + "isNotNullOperator": "Is not null", + "isEmptyOperator": "Is empty", + "isNotEmptyOperator": "Is not empty", + "startsWithOperator": "Starts with", + "containsOperator": "Contains", + "notContainsOperator": "Does not contain", + "endsWithOperator": "Ends with", + "gteOperator": "Is greater than or equal to", + "gtOperator": "Is greater than", + "lteOperator": "Is less than or equal to", + "ltOperator": "Is less than", + "isTrue": "Is true", + "isFalse": "Is false", + "afterOrEqualOperator": "Is after or equal to", + "afterOperator": "Is after", + "beforeOperator": "Is before", + "beforeOrEqualOperator": "Is before or equal to", + "andLogic": "And", + "orLogic": "Or", + "addExpression": "Add Expression", + "addGroup": "Add Group", + "close": "Close" + }, + "dateinput":{ + "increment": "Increase value", + "decrement": "Decrease value" + }, + "calendar":{ + "today":"TODAY" + }, + "datepicker":{ + "toggleCalendar": "Toggle calendar" + }, + "daterangepicker": { + "swapStartEnd": "Swap start and end values", + "start": "Start", + "end": "End", + "separator": " " + }, + "datetimepicker": { + "date": "Date", + "time": "Time", + "toggleDateTimeSelector": "Toggle date-time selector", + "cancel": "Cancel", + "set": "Set" + }, + "editor": { + "bold": "Bold", + "italic": "Italic", + "underline": "Underline", + "strikethrough": "Strikethrough", + "subscript": "Subscript", + "superscript": "Superscript", + "unlink": "Remove hyperlink", + "undo": "Undo", + "redo": "Redo", + "fontSize": "Font Size", + "fontName": "Font Name", + "format": "Format", + "alignLeft": "Align text left", + "alignRight": "Align text right", + "alignCenter": "Center text", + "alignJustify": "Justify", + "indent": "Indent", + "outdent": "Outdent", + "orderedList": "Insert ordered list", + "bulletList": "Insert unordered list", + "createTable": "Create a table", + "insertTableHint": "Create a {0} x {1} table", + "addRowBefore": "Add row above", + "addRowAfter": "Add row below", + "addColumnBefore": "Add column on the left", + "addColumnAfter": "Add column on the right", + "deleteRow": "Delete row", + "deleteColumn": "Delete column", + "deleteTable": "Delete table", + "mergeCells": "Merge cells", + "splitCell": "Split cell", + "hyperlink": "Insert hyperlink", + "hyperlink-dialog-title": "Insert hyperlink", + "hyperlink-dialog-content-address": "Web address", + "hyperlink-dialog-content-title": "Title", + "hyperlink-dialog-content-newwindow": "Open link in new window", + "hyperlink-dialog-cancel": "Cancel", + "hyperlink-dialog-insert": "Insert", + "image": "Insert image", + "image-dialog-title": "Insert image", + "image-address": "Web address", + "image-title": "Title", + "image-altText": "Alternate text", + "image-width": "Width (px)", + "image-height": "Height (px)", + "image-cancel": "Cancel", + "image-insert": "Insert", + "viewHtml": "View HTML", + "viewHtml-dialog-title": "View HTML", + "viewHtml-cancel": "Cancel", + "viewHtml-update": "Update" + }, + "timepicker": { + "now": "NOW", + "selectNow": "Select Now", + "cancel": "Cancel", + "set": "Set", + "toggleTimeSelector": "Toggle TimeSelector", + "toggleClock": "Toggle Clock" + }, + "dropdowns":{ + "nodata": "NO DATA FOUND.", + "clear": "Clear" + }, + "numerictextbox":{ + "increment": "Increase value", + "decrement": "Decrease value" + }, + "upload": { + "cancel": "Cancel", + "clearSelectedFiles": "Clear", + "dropFilesHere": "Drop files here to upload", + "headerStatusUploaded": "Done", + "headerStatusUploading": "Uploading...", + "invalidFileExtension": "File type not allowed.", + "invalidFiles": "Invalid file(s). Please check file upload requirements.", + "invalidMaxFileSize": "File size too large.", + "invalidMinFileSize": "File size too small.", + "remove": "Remove", + "retry": "Retry", + "select": "Select files...", + "uploadSelectedFiles": "Upload", + "total": "Total", + "files": "files" + }, + "sortable": { + "noData": "No Data" + }, + "pager": { + "itemsPerPage": "items per page", + "info": "{0} - {1} of {2} items", + "firstPage": "Go to the first page", + "previousPage": "Go to the previous page", + "nextPage": "Go to the next page", + "lastPage": "Go to the last page", + "page": "Page", + "of": "of" + }, + "treelist": { + "filterClearButton": "Clear", + "filterEqOperator": "Is equal to", + "filterNotEqOperator": "Is not equal to", + "filterIsNullOperator": "Is null", + "filterIsNotNullOperator": "Is not null", + "filterIsEmptyOperator": "Is empty", + "filterIsNotEmptyOperator": "Is not empty", + "filterStartsWithOperator": "Starts with", + "filterContainsOperator": "Contains", + "filterNotContainsOperator": "Does not contain", + "filterEndsWithOperator": "Ends with", + "filterGteOperator": "Is greater than or equal to", + "filterGtOperator": "Is greater than", + "filterLteOperator": "Is less than or equal to", + "filterLtOperator": "Is less than", + "filterIsTrue": "Is true", + "filterIsFalse": "Is false", + "filterBooleanAll": "(All)", + "filterAfterOrEqualOperator": "Is after or equal to", + "filterAfterOperator": "Is after", + "filterBeforeOperator": "Is before", + "filterBeforeOrEqualOperator": "Is before or equal to", + "noRecords": "No records available" + }, + "scheduler": { + "editorValidationRequired": "Field is required.", + "editorValidationStart": "Start time must be be before End time.", + "editorValidationEnd": "End time must be after Start time.", + "allEvents": "All events", + "allDay": "all day", + "today": "Today", + "dayViewTitle": "Day", + "monthViewTitle": "Month", + "weekViewTitle": "Week", + "workWeekViewTitle": "Work Week", + "timelineViewTitle": "Timeline", + "agendaViewTitle": "Agenda", + "deleteTitle": "Delete", + "previousTitle": "Previous", + "nextTitle": "Next", + "showFullDay": "Show full day", + "showWorkDay": "Show business hours", + "editorOccurrence": "Edit current occurrence", + "editorSeries": "Edit the series", + "editorRecurringConfirmation": "Do you want to edit only this event occurrence or the whole series?", + "editorRecurringDialogTitle": "Edit Recurring Item", + "editorSave": "Save", + "editorCancel": "Cancel", + "editorDelete": "Delete", + "editorTitle": "Event", + "editorEventTitle": "Title", + "editorEventStart": "Start", + "editorEventStartTimeZone": "Start Time Zone", + "editorEventEnd": "End", + "editorEventEndTimeZone": "End Time Zone", + "editorEventAllDay": "All Day Event", + "editorEventDescription": "Description", + "editorEventSeparateTimeZones": "End in different Time Zone", + "editorEventTimeZone": "Specify Time Zone", + "recurrenceEditorRepeat": "Repeat", + "recurrenceEditorDailyInterval": "day(s)", + "recurrenceEditorDailyRepeatEvery": "Repeat every", + "recurrenceEditorWeeklyInterval": "week(s)", + "recurrenceEditorWeeklyRepeatEvery": "Repeat every", + "recurrenceEditorWeeklyRepeatOn": "Repeat on", + "recurrenceEditorMonthlyDay": "Day", + "recurrenceEditorMonthlyInterval": "month(s)", + "recurrenceEditorMonthlyRepeatEvery": "Repeat every", + "recurrenceEditorMonthlyRepeatOn": "Repeat on", + "recurrenceEditorYearlyOf": "of", + "recurrenceEditorYearlyRepeatEvery": "Repeat every", + "recurrenceEditorYearlyRepeatOn": "Repeat on", + "recurrenceEditorYearlyInterval": "year(s)", + "recurrenceEditorFrequenciesDaily": "Daily", + "recurrenceEditorFrequenciesMonthly": "Monthly", + "recurrenceEditorFrequenciesNever": "Never", + "recurrenceEditorFrequenciesWeekly": "Weekly", + "recurrenceEditorFrequenciesYearly": "Yearly", + "recurrenceEditorOffsetPositionsFirst": "First", + "recurrenceEditorOffsetPositionsSecond": "Second", + "recurrenceEditorOffsetPositionsThird": "Third", + "recurrenceEditorOffsetPositionsFourth": "Fourth", + "recurrenceEditorOffsetPositionsLast": "Last", + "recurrenceEditorWeekdaysDay": "Day", + "recurrenceEditorWeekdaysWeekday": "Weekday", + "recurrenceEditorWeekdaysWeekendday": "Weekend Day", + "recurrenceEditorEndAfter": "After", + "recurrenceEditorEndOccurrence": "occurrence(s)", + "recurrenceEditorEndLabel": "End", + "recurrenceEditorEndNever": "Never", + "recurrenceEditorEndOn": "On", + "deleteConfirmation": "Are you sure you want to delete this event?", + "deleteRecurringConfirmation": "Do you want to delete only this event occurrence or the whole series?", + "deleteOccurrence": "Delete current occurrence", + "deleteSeries": "Delete the series", + "deleteDialogTitle": "Delete Event", + "deleteRecurringDialogTitle": "Delete Recurring Item", + "dateTitle": "Date", + "timeTitle": "Time", + "eventTitle": "Event", + "noEvents": "no events" + } +}; \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/messages/es.js b/examples/react-coffee-warehouse/src/messages/es.js new file mode 100644 index 00000000..39d39058 --- /dev/null +++ b/examples/react-coffee-warehouse/src/messages/es.js @@ -0,0 +1,190 @@ +export const esMessages = { + "custom": { + "teamEfficiency": "Eficiencia del equipo", + "teamMembers": "Miembros del equipo", + "dashboard": "Tablero", + "planning": "Planificación", + "info": "Informacion", + "profile": "Perfil", + "language": "Idioma", + "trend": "Tendencia", + "volume": "Volumen", + "myTeam": "Mi equipo", + "allTeams": "Todos los equipos", + "teamCalendar": "Calendario del equipo", + "saveChanges": "Guardar cambios", + "cancel": "Cancelar", + "warehouse": "Almacén De Café", + "startFreeTrial": "Iniciar prueba gratuita", + "buyNow": "Comprar ahora", + "getSource": "Obtenga el código fuente en GitHub", + "demoInfo": "Esta aplicación de demostración está construida utilizando los siguientes componentes de KendoReact y el tema predeterminado de KendoReact.", + "firstName": "Primer nombre", + "middleName": "Segundo nombre", + "lastName": "Apellido", + "email": "Dirección de correo electrónico", + "phoneNumber": "Número de teléfono", + "country": "País", + "biography": "Biografía corta", + "public": "Incluir en directorio público", + "team": "Equipo", + "employee": "Empleado", + "contactName": "Nombre de contacto", + "jobTitle": "Título del trabajo", + "status": "Estado", + "performance": "Rendimiento", + "rating":"Clasificación", + "engagement": "Compromiso", + "budget": "Presupuesto", + "contacts": "Contactos", + "address": "Dirección", + "phone": "Teléfono", + "gridSearch": "Buscar en todas las columnas ...", + "exportExcel": "Exportar a Excel", + "exportPdf": "Exportar a PDF" + }, + "datepicker": { + "toggleCalendar": "Alternar calendario" + }, + "calendar": { + "today": "Hoy" + }, + "dateinput": { + "increment": "Incrementar valor", + "decrement": "Disminuir valor" + }, + "datetimepicker": { + "date": "Fecha", + "time": "Hora", + "cancel": "Cancelar", + "set": "Establecer" + }, + "numerictextbox": { + "increment": "Incrementar valor", + "decrement": "Disminuir valor" + }, + "timepicker": { + "now": "AHORA", + "set": "Establecer", + "cancel": "Cancelar" + }, + "grid": { + "groupPanelEmpty": "Arrastre el título de una columna y suéltelo aquí para agrupar por ese criterio", + "noRecords": "No hay datos disponibles.", + "pagerFirstPage": "Ir a la primera página", + "pagerPreviousPage": "Ir a la página anterior", + "pagerNextPage": "Ir a la página siguiente", + "pagerLastPage": "Ir a la última página", + "pagerPage": "Página", + "pagerOf": "de", + "pagerItems": "ítems", + "pagerInfo": "{0} - {1} de {2} ítems", + "pagerItemsPerPage": "ítems por página", + "filterEqOperator": "Es igual a", + "filterNotEqOperator": "No es igual a", + "filterIsNullOperator": "Es nulo", + "filterIsNotNullOperator": "No es nulo", + "filterIsEmptyOperator": "Está vacío", + "filterIsNotEmptyOperator": "No está vacío", + "filterStartsWithOperator": "Comienza con", + "filterContainsOperator": "Contiene", + "filterNotContainsOperator": "No contiene", + "filterEndsWithOperator": "Termina en", + "filterGteOperator": "Es mayor o igual que", + "filterGtOperator": "Es mayor que", + "filterLteOperator": "Es menor o igual que", + "filterLtOperator": "Es menor o igual que", + "filterIsTrue": "Sí", + "filterIsFalse": "No", + "filterBooleanAll": "(Todas)", + "filterAfterOrEqualOperator": "Es posterior o igual a", + "filterAfterOperator": "Es posterior", + "filterBeforeOperator": "Es anterior", + "filterBeforeOrEqualOperator": "Es anterior o igual a", + "filterSubmitButton": "Filtrar", + "filterClearButton": "Limpiar", + "filterAndLogic": "Y", + "filterOrLogic": "O", + "filterTitle": "Filtros", + "sortAscending": "Orden ascendente", + "sortDescending": "Orden descendente" + }, + "scheduler": { + "editorValidationRequired": "El campo es obligatorio", + "editorValidationStart": "La hora de inicio debe ser anterior a la hora de finalización", + "editorValidationEnd": "La hora de finalización debe ser posterior a la hora de inicio", + "allEvents": "Todos los eventos", + "allDay": "todo el día", + "today": "Hoy", + "dayViewTitle": "Día", + "weekViewTitle": "Semana", + "monthViewTitle": "Mes", + "workWeekViewTitle": "Semana laboral", + "timelineViewTitle": "Línea de tiempo", + "agendaViewTitle": "Agenda", + "deleteTitle": "Eliminar", + "previousTitle": "Anterior", + "nextTitle": "Siguiente", + "showFullDay": "Mostrar día completo", + "showWorkDay": "Mostrar horario comercial", + "editorOccurrence": "Editar ocurrencia actual", + "editorSeries": "Editar la serie", + "editorRecurringConfirmation": "¿Desea editar solo este evento o la serie completa?", + "editorRecurringDialogTitle": "Editar elemento recurrente", + "editorSave": "Guardar", + "editorCancel": "Cancelar", + "editorDelete": "Eliminar", + "editorTitle": "Evento", + "editorEventTitle": "Título", + "editorEventStart": "Inicio", + "editorEventStartTimeZone": "Zona horaria de inicio", + "editorEventEnd": "Fin", + "editorEventEndTimeZone": "Zona horaria final", + "editorEventAllDay": "Evento de todo el día", + "editorEventDescription": "Descripción", + "editorEventSeparateTimeZones": "Finalizar en una zona horaria diferente", + "editorEventTimeZone": "Especificar zona horaria", + "recurrenceEditorRepeat": "Repetir", + "recurrenceEditorDailyInterval": "día (s)", + "recurrenceEditorDailyRepeatEvery": "Repetir cada", + "recurrenceEditorWeeklyInterval": "week (s)", + "recurrenceEditorWeeklyRepeatEvery": "Repetir cada", + "recurrenceEditorWeeklyRepeatOn": "Repetir en", + "recurrenceEditorMonthlyDay": "Día", + "recurrenceEditorMonthlyInterval": "mes (es)", + "recurrenceEditorMonthlyRepeatEvery": "Repetir cada", + "recurrenceEditorMonthlyRepeatOn": "Repetir en", + "recurrenceEditorYearlyOf": "de", + "recurrenceEditorYearlyRepeatEvery": "Repetir cada", + "recurrenceEditorYearlyRepeatOn": "Repetir en", + "recurrenceEditorYearlyInterval": "año (s)", + "recurrenceEditorFrequenciesDaily": "Diario", + "recurrenceEditorFrequenciesMonthly": "Monthly", + "recurrenceEditorFrequenciesNever": "Nunca", + "recurrenceEditorFrequenciesWeekly": "Semanal", + "recurrenceEditorFrequenciesYearly": "Anual", + "recurrenceEditorOffsetPositionsFirst": "Primero", + "recurrenceEditorOffsetPositionsSecond": "Segundo", + "recurrenceEditorOffsetPositionsThird": "Tercero", + "recurrenceEditorOffsetPositionsFourth": "Cuarto", + "recurrenceEditorOffsetPositionsLast": "Último", + "recurrenceEditorWeekdaysDay": "Día", + "recurrenceEditorWeekdaysWeekday": "Weekday", + "recurrenceEditorWeekdaysWeekendday": "Día de fin de semana", + "recurrenceEditorEndAfter": "Después", + "recurrenceEditorEndOccurrence": "ocurrencias", + "recurrenceEditorEndLabel": "Fin", + "recurrenceEditorEndNever": "Nunca", + "recurrenceEditorEndOn": "On", + "deleteConfirmation": "¿Está seguro de que desea eliminar este evento?", + "deleteRecurringConfirmation": "¿Desea eliminar solo este evento o la serie completa?", + "deleteOccurrence": "Eliminar la ocurrencia actual", + "deleteSeries": "Eliminar la serie", + "deleteDialogTitle": "Eliminar evento", + "deleteRecurringDialogTitle": "Eliminar elemento recurrente", + "dateTitle": "Fecha", + "timeTitle": "Tiempo", + "eventTitle": "Evento", + "noEvents": "sin eventos" + } +}; \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/messages/fr.js b/examples/react-coffee-warehouse/src/messages/fr.js new file mode 100644 index 00000000..2a1e376a --- /dev/null +++ b/examples/react-coffee-warehouse/src/messages/fr.js @@ -0,0 +1,202 @@ +export const frMessages = { + "custom": { + "teamEfficiency": "Efficacité de l'équipe", + "teamMembers": "Membres de l'équipe", + "dashboard": "Tableau de bord", + "planning": "Planification", + "info": "Info", + "profile": "Profil", + "language": "Langue", + "trend": "Tendance", + "volume": "Le volume", + "myTeam": "Mon équipe", + "allTeams": "Toutes les équipes", + "teamCalendar": "Calendrier d'équipe", + "saveChanges": "Sauvegarder les modifications", + "cancel": "Annuler", + "warehouse": "Entrepôt De Café", + "startFreeTrial": "Démarrer l'essai gratuit", + "buyNow": "Acheter maintenant", + "getSource": "Récupérer le code source sur GitHub", + "demoInfo": "Cette application de démonstration est construite à l'aide des composants KendoReact suivants et du thème par défaut KendoReact.", + "firstName": "Prénom", + "middleName": "Deuxième nom", + "lastName": "Nom de famille", + "email": "Adresse e-mail", + "phoneNumber": "Numéro de téléphone", + "country": "Pays", + "biography": "Biographie courte", + "public": "Inclure dans le répertoire public", + "team": "équipe", + "employee": "Employé", + "contactName": "Nom du contact", + "jobTitle": "Titre du poste", + "status": "Statut", + "performance": "Performance", + "rating":"Évaluation", + "engagement": "Engagement", + "budget": "Budget", + "contacts": "Contacts", + "address": "Adresse", + "phone": "Téléphone", + "gridSearch": "Rechercher dans toutes les colonnes ...", + "exportExcel": "Exporter vers Excel", + "exportPdf": "Exporter au format PDF" + }, + "grid":{ + "groupPanelEmpty": "Faites glisser un en-tête de colonne et déposez-le ici pour grouper par cette colonne", + "pagerItemsPerPage": "éléments par page", + "pagerInfo": "{0} - {1} sur {2} éléments", + "pagerFirstPage": "Aller à la première page", + "pagerPreviousPage": "Aller à la page précédente", + "pagerNextPage": "Aller à la page suivante", + "pagerLastPage": "Aller à la dernière page", + "pagerPage": "Page", + "pagerOf": "de", + "filterEqOperator": "Est égal à", + "filterNotEqOperator": "N'est pas égal à", + "filterIsNullOperator": "Est nulle", + "filterIsNotNullOperator": "Est non nulle", + "filterIsEmptyOperator": "Est vide", + "filterIsNotEmptyOperator": "N'est pas vide", + "filterStartsWithOperator": "Commence par", + "filterContainsOperator": "Contient", + "filterNotContainsOperator": "Ne contient pas", + "filterEndsWithOperator": "Se termine par", + "filterGteOperator": "Est supérieur ou égal à", + "filterGtOperator": "Est supérieur à", + "filterLteOperator": "Est inférieur ou égal à", + "filterLtOperator": "Est inférieur à", + "filterIsTrue":"Est vrai", + "filterIsFalse": "Est faux", + "filterBooleanAll": "(Tous)", + "filterAfterOrEqualOperator": "Est postérieur ou égal à", + "filterAfterOperator": "Est postérieur", + "filterBeforeOperator": "Est antérieur", + "filterBeforeOrEqualOperator": "Est antérieur ou égal à", + "noRecords": "Aucun enregistrement disponible.", + "filterSubmitButton": "Filtre", + "filterClearButton": "Effacer", + "filterAndLogic": "Et", + "filterOrLogic": "Ou alors", + "filterTitle": "Filtre", + "sortAscending": "Trier par ordre croissant", + "sortDescending": "Trier par ordre décroissant" + }, + "dateinput":{ + "increment": "Augmenter la valeur", + "decrement": "Diminuer la valeur" + }, + "calendar":{ + "today":"AUJOURD'HUI" + }, + "datepicker":{ + "toggleCalendar": "Basculer le calendrier" + }, + "dropdowns":{ + "nodata": "AUCUNE DONNÉE DISPONIBLE.", + "clear": "Effacer" + }, + "numerictextbox":{ + "increment": "Augmenter la valeur", + "decrement": "Diminuer la valeur" + }, + "upload": { + "cancel": "Cancel", + "clearSelectedFiles": "Effacer", + "dropFilesHere": "Déposer des fichiers ici pour télécharger", + "headerStatusUploaded": "Terminé", + "headerStatusUploading": "Téléchargement...", + "invalidFileExtension": "Type de fichier non autorisé.", + "invalidFiles": "Fichier(s) invalide(s). Veuillez vérifier les exigences de téléchargement de fichier.", + "invalidMaxFileSize": "La taille du fichier est trop grande.", + "invalidMinFileSize": "La taille du fichier est trop petite.", + "remove": "Retirer", + "retry": "Réessayez", + "select": "Sélectionnez les fichiers...", + "uploadSelectedFiles": "Télécharger", + "total": "Total", + "files": "fichiers" + }, + "sortable": { + "noData": "Aucune donnée" + }, + "scheduler": { + "editorValidationRequired": "Champ requis.", + "editorValidationStart": "L'heure de début doit être antérieure à l'heure de fin.", + "editorValidationEnd": "L'heure de fin doit être postérieure à l'heure de début.", + "allEvents": "Tous les évènements", + "allDay": "toute la journée", + "today": "Aujourd'hui", + "dayViewTitle": "Journée", + "monthViewTitle": "Mois", + "weekViewTitle": "La semaine", + "workWeekViewTitle": "Semaine de travail", + "timelineViewTitle": "Chronologie", + "agendaViewTitle": "Ordre du jour", + "deleteTitle": "Supprimer", + "previousTitle": "Précédent", + "nextTitle": "Suivant", + "showFullDay": "Afficher toute la journée", + "showWorkDay": "Afficher les heures d'ouverture", + "editorOccurrence": "Modifier l'occurrence actuelle", + "editorSeries": "Modifier la série", + "editorRecurringConfirmation": "Voulez-vous modifier uniquement cette occurrence d'événement ou toute la série?", + "editorRecurringDialogTitle": "Modifier l'élément récurrent", + "editorSave": "Enregistrer", + "editorCancel": "Annuler", + "editorDelete": "Supprimer", + "editorTitle": "Event", + "editorEventTitle": "Titre", + "editorEventStart": "Démarrer", + "editorEventStartTimeZone": "Start Time Zone", + "editorEventEnd": "End", + "editorEventEndTimeZone": "End Time Zone", + "editorEventAllDay": "All Day Event", + "editorEventDescription": "Description", + "editorEventSeparateTimeZones": "Terminer dans un fuseau horaire différent", + "editorEventTimeZone": "Spécifier le fuseau horaire", + "recurrenceEditorRepeat": "Répéter", + "recurrenceEditorDailyInterval": "jour (s)", + "recurrenceEditorDailyRepeatEvery": "Répéter chaque", + "recurrenceEditorWeeklyInterval": "semaine (s)", + "recurrenceEditorWeeklyRepeatEvery": "Répéter chaque", + "recurrenceEditorWeeklyRepeatOn": "Répéter", + "recurrenceEditorMonthlyDay": "Jour", + "recurrenceEditorMonthlyInterval": "mois (s)", + "recurrenceEditorMonthlyRepeatEvery": "Répéter chaque", + "recurrenceEditorMonthlyRepeatOn": "Répéter", + "recurrenceEditorYearlyOf": "of", + "recurrenceEditorYearlyRepeatEvery": "Répéter chaque", + "recurrenceEditorYearlyRepeatOn": "Répéter", + "recurrenceEditorYearlyInterval": "année (s)", + "recurrenceEditorFrequenciesDaily": "Du quotidien", + "recurrenceEditorFrequenciesMonthly": "Mensuel", + "recurrenceEditorFrequenciesNever": "Jamais", + "recurrenceEditorFrequenciesWeekly": "Hebdomadaire", + "recurrenceEditorFrequenciesYearly": "Annuel", + "recurrenceEditorOffsetPositionsFirst": "Premier", + "recurrenceEditorOffsetPositionsSecond": "Second", + "recurrenceEditorOffsetPositionsThird": "Troisième", + "recurrenceEditorOffsetPositionsFourth": "Quatrième", + "recurrenceEditorOffsetPositionsLast": "Dernier", + "recurrenceEditorWeekdaysDay": "Journée", + "recurrenceEditorWeekdaysWeekday": "Jour de la semaine", + "recurrenceEditorWeekdaysWeekendday": "Jour de weekend", + "recurrenceEditorEndAfter": "Après", + "recurrenceEditorEndOccurrence": "occurrence (s)", + "recurrenceEditorEndLabel": "Fin", + "recurrenceEditorEndNever": "Jamais", + "recurrenceEditorEndOn": "On", + "deleteConfirmation": "Voulez-vous vraiment supprimer cet événement?", + "deleteRecurringConfirmation": "Souhaitez-vous supprimer uniquement cette occurrence d'événement ou toute la série?", + "deleteOccurrence": "Supprimer l'occurrence actuelle", + "deleteSeries": "Supprimer la série", + "deleteDialogTitle": "Supprimer l'événement", + "deleteRecurringDialogTitle": "Supprimer l'élément récurrent", + "dateTitle": "Date", + "timeTitle": "Temps", + "eventTitle": "Un événement", + "noEvents": "Aucun événement", + } +}; \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/pages/Dashboard.jsx b/examples/react-coffee-warehouse/src/pages/Dashboard.jsx new file mode 100644 index 00000000..9d6114d3 --- /dev/null +++ b/examples/react-coffee-warehouse/src/pages/Dashboard.jsx @@ -0,0 +1,149 @@ + +import * as React from 'react'; + +import { ButtonGroup, Button } from '@progress/kendo-react-buttons'; +import { DateRangePicker } from '@progress/kendo-react-dateinputs'; + +import { useLocalization } from '@progress/kendo-react-intl'; +import { filterBy } from '@progress/kendo-data-query'; + +import { Grid, Column, ColumnMenu } from './../components/Grid'; +import { Chart } from './../components/Chart'; +import { FullNameCell, FlagCell, OnlineCell, RatingCell, EngagementCell, CurrencyCell } from './../components/GridCells'; + +import { AppContext } from './../AppContext' + +import { employees } from './../resources/employees'; +import { teams } from './../resources/teams'; +import { orders } from './../resources/orders'; + +const Dashboard = () => { + const [data, setData] = React.useState(employees); + const [isTrend, setIsTrend] = React.useState(true); + const [isMyTeam, setIsMyTeam] = React.useState(true); + const localizationService = useLocalization(); + + const isChartChangeRef = React.useRef(false); + const onChartRefresh = React.useCallback( + () => null, + [] + ); + + React.useEffect(() => { + isChartChangeRef.current = false; + }); + + const { teamId } = React.useContext(AppContext); + const gridFilterExpression = isMyTeam ? { + logic: "and", + filters: [{ field: "teamId", operator: "eq", value: teamId }] + } : null; + + const [range, setRange] = React.useState({ + start: new Date('2020-01-01T21:00:00.000Z'), + end: new Date('2020-04-29T21:00:00.000Z') + }); + const onRangeChange = React.useCallback( + (event) => { + setRange({ + start: event.value.start, + end: event.value.end + }) + }, + [setRange] + ); + const trendOnClick = React.useCallback( + () => { + isChartChangeRef.current = true; + setIsTrend(true); + }, + [setIsTrend] + ); + const volumeOnClick = React.useCallback( + () => { + isChartChangeRef.current = true; + setIsTrend(false); + }, + [setIsTrend] + ); + const myTeamOnClick = React.useCallback( + () => setIsMyTeam(true), + [setIsMyTeam] + ); + const allTeamOnClick = React.useCallback( + () => setIsMyTeam(false), + [setIsMyTeam] + ); + + return ( +
+
+

{localizationService.toLanguageString('custom.teamEfficiency')}

+
+ + + + +
+
+ +
+
+ +
+
+
+

{localizationService.toLanguageString('custom.teamMembers')}

+
+ + + + +
+ +
+ setData(data)}> + + + + + + + + + + + + + + + + +
+
+
+ ); +} + +export default Dashboard; + diff --git a/examples/react-coffee-warehouse/src/pages/Info.jsx b/examples/react-coffee-warehouse/src/pages/Info.jsx new file mode 100644 index 00000000..f44c59c1 --- /dev/null +++ b/examples/react-coffee-warehouse/src/pages/Info.jsx @@ -0,0 +1,231 @@ +import * as React from 'react'; + +import { useLocalization } from '@progress/kendo-react-intl'; + +import kendoka from '../assets/kendoka.png'; +import github from '../assets/github-icon.svg'; +import { Button } from "@progress/kendo-react-buttons"; + +const Info = () => { + const localizationService = useLocalization(); + return ( +
+
+
+ kendoka +
+
+

KendoReact

+

Master the Art of React UI

+
+ + +
+ + + github icon + + {localizationService.toLanguageString('custom.getSource')} + + +
+
+

+ {localizationService.toLanguageString('custom.demoInfo')} +

+
+
+
+
+

+ Buttons +

+ +
+
+
+
+

+ Data Query +

+
+
+
+
+

+ Charts +

+ +
+
+
+
+

+ Data Tools +

+ +
+
+
+
+

+ Date Inputs +

+ +
+
+
+
+

+ Dialogs +

+ +
+
+
+
+

+ Drawing +

+
+
+
+
+

+ Dropdowns +

+ +
+
+
+
+

+ Editor +

+
+
+
+
+

+ Excel Export +

+
+
+
+
+

+ Form +

+
+
+
+
+

+ Grid +

+
+
+
+
+

+ Inputs +

+ +
+
+
+
+

+ Layout +

+ +
+
+
+
+

+ Scheduler +

+
+
+
+
+

+ Tooltip +

+
+
+
+
+

+ Upload +

+
+
+
+
+
+
+ ); +} + +export default Info; diff --git a/examples/react-coffee-warehouse/src/pages/Planning.jsx b/examples/react-coffee-warehouse/src/pages/Planning.jsx new file mode 100644 index 00000000..68abdba6 --- /dev/null +++ b/examples/react-coffee-warehouse/src/pages/Planning.jsx @@ -0,0 +1,113 @@ + +import * as React from 'react'; + +import { useLocalization } from '@progress/kendo-react-intl'; +import { Card, CardHeader, Avatar, CardTitle, CardSubtitle } from '@progress/kendo-react-layout'; +import { guid } from '@progress/kendo-react-common'; + +import { Scheduler } from './../components/Scheduler'; + +import { employees } from './../resources/employees'; +import { images } from './../resources/images'; +import { orders, ordersModelFields } from './../resources/orders'; +import { teams } from './../resources/teams'; + +const orderEmployees = employees.filter(employee => employee.jobTitle === 'Sales Representative'); +const initialFilterState = { }; + +orderEmployees.forEach(employee => { + if(employee.fullName === 'Wait Peperell') { + initialFilterState[employee.id] = false; + } else { + initialFilterState[employee.id] = true; + } +}); + +const Planning = () => { + const localizationService = useLocalization(); + const [filterState, setFilterState] = React.useState(initialFilterState); + const [data, setData] = React.useState(orders); + + const onDataChange = React.useCallback( + ({ created, updated, deleted }) => { + setData(old => old + // Filter the deleted items + .filter((item) => deleted.find(current => current[ordersModelFields.id] === item[ordersModelFields.id]) === undefined) + // Find and replace the updated items + .map((item) => updated.find(current => current[ordersModelFields.id] === item[ordersModelFields.id]) || item) + // Add the newly created items and assign an `id`. + .concat(created.map((item) => Object.assign({}, item, { [ordersModelFields.id]: guid() })))) + }, + [] + ); + + const onEmployeeClick = React.useCallback( + (employeeId) => { + setFilterState({ + ...filterState, + [employeeId]: !filterState[employeeId] + }); + }, + [filterState, setFilterState] + ); + + return ( +
+
+

{localizationService.toLanguageString('custom.teamCalendar')}

+ { + + orderEmployees.map(employee => { + return ( +
onEmployeeClick(employee.id)} + style={!filterState[employee.id] ? {opacity: .5} : {}} + > + + + teamID === employee.teamId).teamColor, + }}> +
+ +
+ teamID === employee.teamId).teamColor}}>{employee.fullName} + {employee.jobTitle} +
+ + +
+ ); + }) + } +
+ filterState[event.employeeID])} + onDataChange={onDataChange} + modelFields={ordersModelFields} + resources={[ + { + name: 'Teams', + data: teams, + field: 'teamID', + valueField: 'teamID', + textField: 'teamName', + colorField: 'teamColor' + } + ]} + /> +
+
+
+ ); +} + +export default Planning; + diff --git a/examples/react-coffee-warehouse/src/pages/Profile.jsx b/examples/react-coffee-warehouse/src/pages/Profile.jsx new file mode 100644 index 00000000..3983b4cc --- /dev/null +++ b/examples/react-coffee-warehouse/src/pages/Profile.jsx @@ -0,0 +1,159 @@ + +import * as React from 'react'; + +import { useLocalization } from '@progress/kendo-react-intl'; +import { useNavigate } from "react-router-dom"; +import { Form, Field, FormElement } from '@progress/kendo-react-form'; +import { Button } from '@progress/kendo-react-buttons'; + +import { Input } from './../components/form/Input'; +import { MaskedTextBox } from './../components/form/MaskedTextBox'; +import { DropDownList } from './../components/form/DropDownList'; +import { Editor } from './../components/form/Editor'; +import { Upload } from './../components/form/Upload'; +import { RadioGroup } from './../components/form/RadioGroup'; +import { Switch } from './../components/form/Switch'; + +import { AppContext } from './../AppContext' + +import { countries } from './../resources/countries'; +import { teams } from './../resources/teams'; + +import { requiredValidator, emailValidator, phoneValidator, biographyValidator } from './../validators' + +const countriesData = countries.map(country => country.name); +const teamsData = teams.map(team => ({ + value: team.teamID, + label: team.teamName +})); + +const Profile = () => { + const {languageId, onLanguageChange, onProfileChange, ...formValues} = React.useContext(AppContext); + const localizationService = useLocalization(); + const history = useNavigate(); + + const onSubmit = React.useCallback( + (dataItem) => { + onProfileChange({dataItem}); + + history('/'); + }, + [onProfileChange, history] + ); + + const onCancelClick = React.useCallback( + () => { + history('/'); + }, + [history] + ); + + return ( +
+
+
+
( + + + + + + + + + + + +
+
+ + +
+
+ )} + /> +
+
+
+ ); +} + +export default Profile; diff --git a/examples/react-coffee-warehouse/src/resources/countries.js b/examples/react-coffee-warehouse/src/resources/countries.js new file mode 100644 index 00000000..7ca2d5c8 --- /dev/null +++ b/examples/react-coffee-warehouse/src/resources/countries.js @@ -0,0 +1,245 @@ +export const countries = [ + {name: 'Afghanistan', code: 'AF'}, + {name: 'Åland Islands', code: 'AX'}, + {name: 'Albania', code: 'AL'}, + {name: 'Algeria', code: 'DZ'}, + {name: 'American Samoa', code: 'AS'}, + {name: 'AndorrA', code: 'AD'}, + {name: 'Angola', code: 'AO'}, + {name: 'Anguilla', code: 'AI'}, + {name: 'Antarctica', code: 'AQ'}, + {name: 'Antigua and Barbuda', code: 'AG'}, + {name: 'Argentina', code: 'AR'}, + {name: 'Armenia', code: 'AM'}, + {name: 'Aruba', code: 'AW'}, + {name: 'Australia', code: 'AU'}, + {name: 'Austria', code: 'AT'}, + {name: 'Azerbaijan', code: 'AZ'}, + {name: 'Bahamas', code: 'BS'}, + {name: 'Bahrain', code: 'BH'}, + {name: 'Bangladesh', code: 'BD'}, + {name: 'Barbados', code: 'BB'}, + {name: 'Belarus', code: 'BY'}, + {name: 'Belgium', code: 'BE'}, + {name: 'Belize', code: 'BZ'}, + {name: 'Benin', code: 'BJ'}, + {name: 'Bermuda', code: 'BM'}, + {name: 'Bhutan', code: 'BT'}, + {name: 'Bolivia', code: 'BO'}, + {name: 'Bosnia and Herzegovina', code: 'BA'}, + {name: 'Botswana', code: 'BW'}, + {name: 'Bouvet Island', code: 'BV'}, + {name: 'Brazil', code: 'BR'}, + {name: 'British Indian Ocean Territory', code: 'IO'}, + {name: 'Brunei Darussalam', code: 'BN'}, + {name: 'Bulgaria', code: 'BG'}, + {name: 'Burkina Faso', code: 'BF'}, + {name: 'Burundi', code: 'BI'}, + {name: 'Cambodia', code: 'KH'}, + {name: 'Cameroon', code: 'CM'}, + {name: 'Canada', code: 'CA'}, + {name: 'Cape Verde', code: 'CV'}, + {name: 'Cayman Islands', code: 'KY'}, + {name: 'Central African Republic', code: 'CF'}, + {name: 'Chad', code: 'TD'}, + {name: 'Chile', code: 'CL'}, + {name: 'China', code: 'CN'}, + {name: 'Christmas Island', code: 'CX'}, + {name: 'Cocos (Keeling) Islands', code: 'CC'}, + {name: 'Colombia', code: 'CO'}, + {name: 'Comoros', code: 'KM'}, + {name: 'Congo', code: 'CG'}, + {name: 'Congo, The Democratic Republic of the', code: 'CD'}, + {name: 'Cook Islands', code: 'CK'}, + {name: 'Costa Rica', code: 'CR'}, + {name: 'Cote D\'Ivoire', code: 'CI'}, + {name: 'Croatia', code: 'HR'}, + {name: 'Cuba', code: 'CU'}, + {name: 'Cyprus', code: 'CY'}, + {name: 'Czech Republic', code: 'CZ'}, + {name: 'Denmark', code: 'DK'}, + {name: 'Djibouti', code: 'DJ'}, + {name: 'Dominica', code: 'DM'}, + {name: 'Dominican Republic', code: 'DO'}, + {name: 'Ecuador', code: 'EC'}, + {name: 'Egypt', code: 'EG'}, + {name: 'El Salvador', code: 'SV'}, + {name: 'Equatorial Guinea', code: 'GQ'}, + {name: 'Eritrea', code: 'ER'}, + {name: 'Estonia', code: 'EE'}, + {name: 'Ethiopia', code: 'ET'}, + {name: 'Falkland Islands (Malvinas)', code: 'FK'}, + {name: 'Faroe Islands', code: 'FO'}, + {name: 'Fiji', code: 'FJ'}, + {name: 'Finland', code: 'FI'}, + {name: 'France', code: 'FR'}, + {name: 'French Guiana', code: 'GF'}, + {name: 'French Polynesia', code: 'PF'}, + {name: 'French Southern Territories', code: 'TF'}, + {name: 'Gabon', code: 'GA'}, + {name: 'Gambia', code: 'GM'}, + {name: 'Georgia', code: 'GE'}, + {name: 'Germany', code: 'DE'}, + {name: 'Ghana', code: 'GH'}, + {name: 'Gibraltar', code: 'GI'}, + {name: 'Greece', code: 'GR'}, + {name: 'Greenland', code: 'GL'}, + {name: 'Grenada', code: 'GD'}, + {name: 'Guadeloupe', code: 'GP'}, + {name: 'Guam', code: 'GU'}, + {name: 'Guatemala', code: 'GT'}, + {name: 'Guernsey', code: 'GG'}, + {name: 'Guinea', code: 'GN'}, + {name: 'Guinea-Bissau', code: 'GW'}, + {name: 'Guyana', code: 'GY'}, + {name: 'Haiti', code: 'HT'}, + {name: 'Heard Island and Mcdonald Islands', code: 'HM'}, + {name: 'Holy See (Vatican City State)', code: 'VA'}, + {name: 'Honduras', code: 'HN'}, + {name: 'Hong Kong', code: 'HK'}, + {name: 'Hungary', code: 'HU'}, + {name: 'Iceland', code: 'IS'}, + {name: 'India', code: 'IN'}, + {name: 'Indonesia', code: 'ID'}, + {name: 'Iran, Islamic Republic Of', code: 'IR'}, + {name: 'Iraq', code: 'IQ'}, + {name: 'Ireland', code: 'IE'}, + {name: 'Isle of Man', code: 'IM'}, + {name: 'Israel', code: 'IL'}, + {name: 'Italy', code: 'IT'}, + {name: 'Jamaica', code: 'JM'}, + {name: 'Japan', code: 'JP'}, + {name: 'Jersey', code: 'JE'}, + {name: 'Jordan', code: 'JO'}, + {name: 'Kazakhstan', code: 'KZ'}, + {name: 'Kenya', code: 'KE'}, + {name: 'Kiribati', code: 'KI'}, + {name: 'Korea, Democratic People\'S Republic of', code: 'KP'}, + {name: 'Korea, Republic of', code: 'KR'}, + {name: 'Kuwait', code: 'KW'}, + {name: 'Kyrgyzstan', code: 'KG'}, + {name: 'Lao People\'S Democratic Republic', code: 'LA'}, + {name: 'Latvia', code: 'LV'}, + {name: 'Lebanon', code: 'LB'}, + {name: 'Lesotho', code: 'LS'}, + {name: 'Liberia', code: 'LR'}, + {name: 'Libyan Arab Jamahiriya', code: 'LY'}, + {name: 'Liechtenstein', code: 'LI'}, + {name: 'Lithuania', code: 'LT'}, + {name: 'Luxembourg', code: 'LU'}, + {name: 'Macao', code: 'MO'}, + {name: 'Macedonia, The Former Yugoslav Republic of', code: 'MK'}, + {name: 'Madagascar', code: 'MG'}, + {name: 'Malawi', code: 'MW'}, + {name: 'Malaysia', code: 'MY'}, + {name: 'Maldives', code: 'MV'}, + {name: 'Mali', code: 'ML'}, + {name: 'Malta', code: 'MT'}, + {name: 'Marshall Islands', code: 'MH'}, + {name: 'Martinique', code: 'MQ'}, + {name: 'Mauritania', code: 'MR'}, + {name: 'Mauritius', code: 'MU'}, + {name: 'Mayotte', code: 'YT'}, + {name: 'Mexico', code: 'MX'}, + {name: 'Micronesia, Federated States of', code: 'FM'}, + {name: 'Moldova, Republic of', code: 'MD'}, + {name: 'Monaco', code: 'MC'}, + {name: 'Mongolia', code: 'MN'}, + {name: 'Montserrat', code: 'MS'}, + {name: 'Morocco', code: 'MA'}, + {name: 'Mozambique', code: 'MZ'}, + {name: 'Myanmar', code: 'MM'}, + {name: 'Namibia', code: 'NA'}, + {name: 'Nauru', code: 'NR'}, + {name: 'Nepal', code: 'NP'}, + {name: 'Netherlands', code: 'NL'}, + {name: 'Netherlands Antilles', code: 'AN'}, + {name: 'New Caledonia', code: 'NC'}, + {name: 'New Zealand', code: 'NZ'}, + {name: 'Nicaragua', code: 'NI'}, + {name: 'Niger', code: 'NE'}, + {name: 'Nigeria', code: 'NG'}, + {name: 'Niue', code: 'NU'}, + {name: 'Norfolk Island', code: 'NF'}, + {name: 'Northern Mariana Islands', code: 'MP'}, + {name: 'Norway', code: 'NO'}, + {name: 'Oman', code: 'OM'}, + {name: 'Pakistan', code: 'PK'}, + {name: 'Palau', code: 'PW'}, + {name: 'Palestinian Territory, Occupied', code: 'PS'}, + {name: 'Panama', code: 'PA'}, + {name: 'Papua New Guinea', code: 'PG'}, + {name: 'Paraguay', code: 'PY'}, + {name: 'Peru', code: 'PE'}, + {name: 'Philippines', code: 'PH'}, + {name: 'Pitcairn', code: 'PN'}, + {name: 'Poland', code: 'PL'}, + {name: 'Portugal', code: 'PT'}, + {name: 'Puerto Rico', code: 'PR'}, + {name: 'Qatar', code: 'QA'}, + {name: 'Reunion', code: 'RE'}, + {name: 'Romania', code: 'RO'}, + {name: 'Russian Federation', code: 'RU'}, + {name: 'RWANDA', code: 'RW'}, + {name: 'Saint Helena', code: 'SH'}, + {name: 'Saint Kitts and Nevis', code: 'KN'}, + {name: 'Saint Lucia', code: 'LC'}, + {name: 'Saint Pierre and Miquelon', code: 'PM'}, + {name: 'Saint Vincent and the Grenadines', code: 'VC'}, + {name: 'Samoa', code: 'WS'}, + {name: 'San Marino', code: 'SM'}, + {name: 'Sao Tome and Principe', code: 'ST'}, + {name: 'Saudi Arabia', code: 'SA'}, + {name: 'Senegal', code: 'SN'}, + {name: 'Serbia and Montenegro', code: 'CS'}, + {name: 'Seychelles', code: 'SC'}, + {name: 'Sierra Leone', code: 'SL'}, + {name: 'Singapore', code: 'SG'}, + {name: 'Slovakia', code: 'SK'}, + {name: 'Slovenia', code: 'SI'}, + {name: 'Solomon Islands', code: 'SB'}, + {name: 'Somalia', code: 'SO'}, + {name: 'South Africa', code: 'ZA'}, + {name: 'South Georgia and the South Sandwich Islands', code: 'GS'}, + {name: 'Spain', code: 'ES'}, + {name: 'Sri Lanka', code: 'LK'}, + {name: 'Sudan', code: 'SD'}, + {name: 'Suriname', code: 'SR'}, + {name: 'Svalbard and Jan Mayen', code: 'SJ'}, + {name: 'Swaziland', code: 'SZ'}, + {name: 'Sweden', code: 'SE'}, + {name: 'Switzerland', code: 'CH'}, + {name: 'Syrian Arab Republic', code: 'SY'}, + {name: 'Taiwan, Province of China', code: 'TW'}, + {name: 'Tajikistan', code: 'TJ'}, + {name: 'Tanzania, United Republic of', code: 'TZ'}, + {name: 'Thailand', code: 'TH'}, + {name: 'Timor-Leste', code: 'TL'}, + {name: 'Togo', code: 'TG'}, + {name: 'Tokelau', code: 'TK'}, + {name: 'Tonga', code: 'TO'}, + {name: 'Trinidad and Tobago', code: 'TT'}, + {name: 'Tunisia', code: 'TN'}, + {name: 'Turkey', code: 'TR'}, + {name: 'Turkmenistan', code: 'TM'}, + {name: 'Turks and Caicos Islands', code: 'TC'}, + {name: 'Tuvalu', code: 'TV'}, + {name: 'Uganda', code: 'UG'}, + {name: 'Ukraine', code: 'UA'}, + {name: 'United Arab Emirates', code: 'AE'}, + {name: 'United Kingdom', code: 'GB'}, + {name: 'United States', code: 'US'}, + {name: 'United States Minor Outlying Islands', code: 'UM'}, + {name: 'Uruguay', code: 'UY'}, + {name: 'Uzbekistan', code: 'UZ'}, + {name: 'Vanuatu', code: 'VU'}, + {name: 'Venezuela', code: 'VE'}, + {name: 'Viet Nam', code: 'VN'}, + {name: 'Virgin Islands, British', code: 'VG'}, + {name: 'Virgin Islands, U.S.', code: 'VI'}, + {name: 'Wallis and Futuna', code: 'WF'}, + {name: 'Western Sahara', code: 'EH'}, + {name: 'Yemen', code: 'YE'}, + {name: 'Zambia', code: 'ZM'}, + {name: 'Zimbabwe', code: 'ZW'} +]; \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/resources/employees.js b/examples/react-coffee-warehouse/src/resources/employees.js new file mode 100644 index 00000000..6f6ca6b4 --- /dev/null +++ b/examples/react-coffee-warehouse/src/resources/employees.js @@ -0,0 +1,1501 @@ +export const employees = [{ + "teamId": 3, + "id": "848e6002-8a92-447d-951b-1ffd5e695578", + "fullName": "Sig Jeannel", + "jobTitle": "Human Resources Assistant III", + "country": "US", + "isOnline": true, + "rating": 3, + "target": 100, + "budget": 47601, + "phone": "(936) 9429601", + "address": "138 Buhler Avenue", + "imgId": 1, + "gender": "M", + "selected": false +}, { + "teamId": 3, + "id": "19d18d40-0e64-4837-9420-92130a0ed253", + "fullName": "Shelden Greyes", + "jobTitle": "Operator", + "country": "GB", + "isOnline": true, + "rating": 5, + "target": 40, + "budget": 12253, + "phone": "(343) 6656271", + "address": "2 Waxwing Point", + "imgId": 2, + "gender": "M", + "selected": false +}, { + "teamId": 4, + "id": "bebdc6eb-9179-484a-917d-2e16a23bfdfe", + "fullName": "Megen Cody", + "jobTitle": "Operator", + "country": "BR", + "isOnline": true, + "rating": 1, + "target": 66, + "budget": 96183, + "phone": "(178) 2336256", + "address": "4082 Stephen Court", + "imgId": 6, + "gender": "F", + "selected": false +}, { + "teamId": 1, + "id": "38b08b88-e482-46fc-8976-83590c02ec23", + "fullName": "Clevey Thursfield", + "jobTitle": "VP Quality Control", + "country": "BR", + "isOnline": true, + "rating": 2, + "target": 58, + "budget": 54936, + "phone": "(277) 7415010", + "address": "1563 Glacier Hill Parkway", + "imgId": 5, + "gender": "M", + "selected": false +}, { + "teamId": 2, + "id": "2aac53f8-b72d-4629-9082-6d8239a8fecf", + "fullName": "Ruthi Baldini", + "jobTitle": "Data Coordiator", + "country": "BR", + "isOnline": true, + "rating": 3, + "target": 37, + "budget": 46572, + "phone": "(766) 5691615", + "address": "6 Laurel Avenue", + "imgId": 8, + "gender": "F", + "selected": false +}, { + "teamId": 4, + "id": "1aa789e5-de01-406e-a2ee-cc5ce20f7e34", + "fullName": "Annecorinne Morter", + "jobTitle": "Professor", + "country": "FR", + "isOnline": false, + "rating": 2, + "target": 35, + "budget": 37198, + "phone": "(807) 2524830", + "address": "106 Green Street", + "imgId": 3, + "gender": "F", + "selected": false +}, { + "teamId": 2, + "id": "d2ff1b02-3808-44aa-9056-3b5df34bf865", + "fullName": "Gracia Punyer", + "jobTitle": "Assistant Manager", + "country": "ES", + "isOnline": true, + "rating": 4, + "target": 64, + "budget": 84752, + "phone": "(515) 9749536", + "address": "69 Brentwood Alley", + "imgId": 2, + "gender": "F", + "selected": false +}, { + "teamId": 2, + "id": "26b2b760-27e8-47a6-81c2-07870d1b2b30", + "fullName": "Duky Hurring", + "jobTitle": "Account Executive", + "country": "BR", + "isOnline": false, + "rating": 3, + "target": 61, + "budget": -1266, + "phone": "(897) 7202034", + "address": "39 Morning Circle", + "imgId": 3, + "gender": "M", + "selected": false +}, { + "teamId": 1, + "id": "91c6b652-4206-4a0c-bac6-dc21283a72d7", + "fullName": "Briana Shemelt", + "jobTitle": "Professor", + "country": "US", + "isOnline": false, + "rating": 3, + "target": 63, + "budget": -9308, + "phone": "(205) 2560799", + "address": "11 Walton Court", + "imgId": 2, + "gender": "F", + "selected": false +}, { + "teamId": 4, + "id": "1e8289dc-2ef3-4045-ad6b-786d00368427", + "fullName": "Lexis Mostin", + "jobTitle": "Analyst Programmer", + "country": "FR", + "isOnline": true, + "rating": 4, + "target": 81, + "budget": 38153, + "phone": "(903) 8388089", + "address": "38547 Westend Way", + "imgId": 4, + "gender": "F", + "selected": false +}, { + "teamId": 2, + "id": "797387bd-c247-48b3-97b6-5e75791f8809", + "fullName": "Felizio Gooda", + "jobTitle": "GIS Technical Architect", + "country": "DE", + "isOnline": true, + "rating": 3, + "target": 89, + "budget": 81585, + "phone": "(372) 2389397", + "address": "9 Summer Ridge Circle", + "imgId": 2, + "gender": "M", + "selected": false +}, { + "teamId": 2, + "id": "24c541b0-4978-4072-84d0-abe94fcd0756", + "fullName": "Aubry Oxberry", + "jobTitle": "Financial Advisor", + "country": "BR", + "isOnline": false, + "rating": 2, + "target": 3, + "budget": -6095, + "phone": "(665) 4176083", + "address": "06 Lerdahl Point", + "imgId": 10, + "gender": "F", + "selected": false +}, { + "teamId": 1, + "id": "d3416440-7411-42cc-a913-7dd319ca8311", + "fullName": "Orly Glasbey", + "jobTitle": "Environmental Tech", + "country": "BR", + "isOnline": true, + "rating": 5, + "target": 63, + "budget": 63945, + "phone": "(449) 8482879", + "address": "4035 Porter Parkway", + "imgId": 6, + "gender": "F", + "selected": false +}, { + "teamId": 4, + "id": "139066b5-60c5-4cf5-9afe-fb4e5558b087", + "fullName": "Stephanus Culp", + "jobTitle": "Cost Accountant", + "country": "BR", + "isOnline": false, + "rating": 2, + "target": 60, + "budget": 10613, + "phone": "(148) 3124030", + "address": "57028 Moland Terrace", + "imgId": 8, + "gender": "M", + "selected": false +}, { + "teamId": 2, + "id": "eb844971-b97d-4f79-bd5a-a266fcfaaf70", + "fullName": "Roseanna Janecek", + "jobTitle": "Database Administrator IV", + "country": "FR", + "isOnline": false, + "rating": 4, + "target": 97, + "budget": 77351, + "phone": "(125) 4421623", + "address": "21973 Beilfuss Alley", + "imgId": 4, + "gender": "F", + "selected": false +}, { + "teamId": 1, + "id": "5cb391fe-4855-445c-a8b8-617c04d1d999", + "fullName": "Weidar McCombe", + "jobTitle": "Civil Engineer", + "country": "FR", + "isOnline": true, + "rating": 1, + "target": 77, + "budget": 35924, + "phone": "(488) 7911627", + "address": "7 Dahle Terrace", + "imgId": 1, + "gender": "M", + "selected": false +}, { + "teamId": 4, + "id": "4ba9ad7e-d8b7-40e7-b8cd-67a8e743a249", + "fullName": "Evelin Spirritt", + "jobTitle": "Analyst Programmer", + "country": "BR", + "isOnline": false, + "rating": 2, + "target": 18, + "budget": 58552, + "phone": "(821) 9538078", + "address": "89418 Knutson Pass", + "imgId": 1, + "gender": "M", + "selected": false +}, { + "teamId": 2, + "id": "e4a31407-39d1-4ab7-aad1-4e026a8c42fa", + "fullName": "Andria Helbeck", + "jobTitle": "Nurse Practicioner", + "country": "BR", + "isOnline": true, + "rating": 4, + "target": 53, + "budget": 72526, + "phone": "(387) 9614638", + "address": "8589 Vernon Drive", + "imgId": 8, + "gender": "F", + "selected": false +}, { + "teamId": 1, + "id": "cd050499-dbf1-4a43-86ab-54feaacef401", + "fullName": "Mariellen Ravelus", + "jobTitle": "Systems Administrator I", + "country": "DE", + "isOnline": true, + "rating": 2, + "target": 22, + "budget": -6659, + "phone": "(300) 6741661", + "address": "707 Gale Hill", + "imgId": 9, + "gender": "F", + "selected": false +}, { + "teamId": 3, + "id": "fda1c419-c0b8-4278-94b0-2ebef6bda164", + "fullName": "Corri Pergens", + "jobTitle": "Help Desk Operator", + "country": "BR", + "isOnline": true, + "rating": 2, + "target": 74, + "budget": 12376, + "phone": "(769) 7145603", + "address": "856 Forest Crossing", + "imgId": 3, + "gender": "F", + "selected": false +}, { + "teamId": 3, + "id": "4a962db9-136e-4fcc-a683-2f961e27fb6e", + "fullName": "Friedrick Macknish", + "jobTitle": "Human Resources Assistant II", + "country": "FR", + "isOnline": true, + "rating": 2, + "target": 38, + "budget": 97848, + "phone": "(196) 4156385", + "address": "157 Talisman Trail", + "imgId": 9, + "gender": "M", + "selected": false +}, { + "teamId": 4, + "id": "fa47e456-83c4-4fdc-b57b-07effb279967", + "fullName": "Georgette Trevorrow", + "jobTitle": "VP Accounting", + "country": "FR", + "isOnline": true, + "rating": 3, + "target": 3, + "budget": 17327, + "phone": "(319) 1412549", + "address": "07 Marquette Point", + "imgId": 3, + "gender": "F", + "selected": false +}, { + "teamId": 4, + "id": "67656444-fbcd-4813-84e7-1bdcd82f803e", + "fullName": "Vanya Goalby", + "jobTitle": "Senior Cost Accountant", + "country": "FR", + "isOnline": false, + "rating": 2, + "target": 77, + "budget": 33584, + "phone": "(496) 7538982", + "address": "2192 Iowa Lane", + "imgId": 6, + "gender": "F", + "selected": false +}, { + "teamId": 1, + "id": "05c098c2-9617-4e66-928a-e29b97297138", + "fullName": "Abel Ansell", + "jobTitle": "Actuary", + "country": "US", + "isOnline": false, + "rating": 4, + "target": 52, + "budget": 12312, + "phone": "(571) 9908377", + "address": "4355 Iowa Parkway", + "imgId": 4, + "gender": "M", + "selected": false +}, { + "teamId": 2, + "id": "3b263e99-51bf-4461-bb20-d4303d326cd9", + "fullName": "Odille Barus", + "jobTitle": "Speech Pathologist", + "country": "FR", + "isOnline": true, + "rating": 4, + "target": 60, + "budget": 46911, + "phone": "(974) 1137672", + "address": "496 Lotheville Avenue", + "imgId": 8, + "gender": "F", + "selected": false +}, { + "teamId": 4, + "id": "c09ddfaf-569e-4a75-8e53-1be27cf25927", + "fullName": "Rudolf Consadine", + "jobTitle": "Structural Analysis Engineer", + "country": "FR", + "isOnline": true, + "rating": 4, + "target": 20, + "budget": 94258, + "phone": "(450) 7612220", + "address": "93 Thierer Park", + "imgId": 6, + "gender": "M", + "selected": false +}, { + "teamId": 3, + "id": "a48abbc9-6143-4f77-a720-0b76ad862a9a", + "fullName": "Christabel Bick", + "jobTitle": "Engineer III", + "country": "FR", + "isOnline": true, + "rating": 5, + "target": 0, + "budget": 65359, + "phone": "(361) 5159566", + "address": "191 Bunting Pass", + "imgId": 5, + "gender": "F", + "selected": false +}, { + "teamId": 3, + "id": "d8816aee-4230-4392-a045-0a9c297451f7", + "fullName": "Lancelot Tanzer", + "jobTitle": "Senior Developer", + "country": "US", + "isOnline": true, + "rating": 5, + "target": 80, + "budget": 13246, + "phone": "(502) 3949900", + "address": "4287 Corben Plaza", + "imgId": 8, + "gender": "M", + "selected": false +}, { + "teamId": 4, + "id": "9f5af32c-fb0d-4449-a658-f2c7f182b63a", + "fullName": "Bink Byk", + "jobTitle": "Software Engineer I", + "country": "FR", + "isOnline": false, + "rating": 3, + "target": 17, + "budget": 56472, + "phone": "(475) 9070061", + "address": "075 Eggendart Avenue", + "imgId": 9, + "gender": "M", + "selected": false +}, { + "teamId": 1, + "id": "dbd7f48a-6540-4560-bb7c-cd60456b55b8", + "fullName": "Rhys Pheazey", + "jobTitle": "Speech Pathologist", + "country": "BR", + "isOnline": false, + "rating": 5, + "target": 98, + "budget": 62483, + "phone": "(365) 8904529", + "address": "987 Carioca Lane", + "imgId": 9, + "gender": "M", + "selected": false +}, { + "teamId": 1, + "id": "844189fe-d36e-4e06-9761-932259701fc8", + "fullName": "Lyndell Howieson", + "jobTitle": "Speech Pathologist", + "country": "DE", + "isOnline": true, + "rating": 2, + "target": 82, + "budget": 16694, + "phone": "(461) 3130038", + "address": "9 Pennsylvania Crossing", + "imgId": 8, + "gender": "F", + "selected": false +}, { + "teamId": 1, + "id": "5544d9d5-40ea-4e5a-8fb8-f5016b313b8f", + "fullName": "Cassey Fitchell", + "jobTitle": "Software Engineer III", + "country": "FR", + "isOnline": true, + "rating": 2, + "target": 10, + "budget": 91253, + "phone": "(985) 5060547", + "address": "652 Merry Place", + "imgId": 9, + "gender": "F", + "selected": false +}, { + "teamId": 4, + "id": "1c669764-3cff-424a-b7e4-e7711d6c7d6c", + "fullName": "Coralyn Steljes", + "jobTitle": "Accounting Assistant III", + "country": "FR", + "isOnline": false, + "rating": 2, + "target": 81, + "budget": -9871, + "phone": "(760) 5696853", + "address": "4 Norway Maple Pass", + "imgId": 9, + "gender": "F", + "selected": false +}, { + "teamId": 2, + "id": "4cc649dc-7f85-40ab-bc59-950f37268a65", + "fullName": "Bruis Creavin", + "jobTitle": "Nuclear Power Engineer", + "country": "BR", + "isOnline": false, + "rating": 1, + "target": 59, + "budget": -5798, + "phone": "(570) 8801169", + "address": "71 Carioca Park", + "imgId": 6, + "gender": "M", + "selected": false +}, { + "teamId": 2, + "id": "8c9505f1-e8f8-4ba6-8c9a-5a1d089c6f09", + "fullName": "Adrianne Peery", + "jobTitle": "Chief Design Engineer", + "country": "FR", + "isOnline": false, + "rating": 2, + "target": 2, + "budget": 56575, + "phone": "(793) 1143493", + "address": "3 2nd Drive", + "imgId": 7, + "gender": "F", + "selected": false +}, { + "teamId": 2, + "id": "ced0905e-44ac-4317-a203-76994e53a751", + "fullName": "Port Gerauld", + "jobTitle": "Senior Cost Accountant", + "country": "FR", + "isOnline": true, + "rating": 2, + "target": 27, + "budget": 97919, + "phone": "(155) 5488067", + "address": "9 High Crossing Center", + "imgId": 5, + "gender": "M", + "selected": false +}, { + "teamId": 1, + "id": "f0bcc7cd-999e-4611-a04f-7bdc16bc6160", + "fullName": "Boy Antoszewski", + "jobTitle": "VP Accounting", + "country": "GB", + "isOnline": true, + "rating": 2, + "target": 11, + "budget": 74779, + "phone": "(715) 9192627", + "address": "3773 Hazelcrest Road", + "imgId": 6, + "gender": "M", + "selected": false +}, { + "teamId": 1, + "id": "322540e3-b72e-4b7d-ae4a-d927911340b7", + "fullName": "Gib Yakebowitch", + "jobTitle": "Marketing Assistant", + "country": "BR", + "isOnline": false, + "rating": 5, + "target": 57, + "budget": 89028, + "phone": "(923) 6953600", + "address": "7 Mariners Cove Point", + "imgId": 8, + "gender": "M", + "selected": false +}, { + "teamId": 1, + "id": "b1ed798d-6177-4a27-9571-2e02be932214", + "fullName": "Minerva Gilders", + "jobTitle": "Administrative Officer", + "country": "BR", + "isOnline": false, + "rating": 3, + "target": 54, + "budget": 32267, + "phone": "(773) 8863232", + "address": "82 Annamark Way", + "imgId": 4, + "gender": "F", + "selected": false +}, { + "teamId": 3, + "id": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "fullName": "Wait Peperell", + "jobTitle": "Sales Representative", + "country": "US", + "isOnline": true, + "rating": 4, + "target": 94, + "budget": 72251, + "phone": "(419) 5806752", + "address": "0355 Petterle Avenue", + "imgId": 1, + "gender": "M", + "selected": false +}, { + "teamId": 3, + "id": "da813d45-bd3b-4bfa-abdd-e12050a5da14", + "fullName": "Ailsun Esmead", + "jobTitle": "Software Test Engineer III", + "country": "FR", + "isOnline": true, + "rating": 1, + "target": 12, + "budget": 69596, + "phone": "(852) 7039628", + "address": "0 Lunder Crossing", + "imgId": 8, + "gender": "F", + "selected": false +}, { + "teamId": 2, + "id": "944d8752-ef63-47bc-8db0-f40808d50b15", + "fullName": "Vallie Van der Velde", + "jobTitle": "Nurse", + "country": "GB", + "isOnline": true, + "rating": 3, + "target": 89, + "budget": 19530, + "phone": "(331) 7690832", + "address": "2 Almo Lane", + "imgId": 4, + "gender": "F", + "selected": false +}, { + "teamId": 1, + "id": "3d2f991c-58ef-436d-912e-49496fd2065c", + "fullName": "Dov Amber", + "jobTitle": "Sales Representative", + "country": "FR", + "isOnline": false, + "rating": 4, + "target": 55, + "budget": 61106, + "phone": "(793) 4768356", + "address": "4 Rockefeller Street", + "imgId": 3, + "gender": "M", + "selected": false +}, { + "teamId": 3, + "id": "29b406e9-ca20-45cb-8630-6df3a632276a", + "fullName": "Tedie Alu", + "jobTitle": "Business Systems Analyst", + "country": "FR", + "isOnline": false, + "rating": 1, + "target": 76, + "budget": 3114, + "phone": "(602) 5831373", + "address": "28 Claremont Plaza", + "imgId": 5, + "gender": "M", + "selected": false +}, { + "teamId": 4, + "id": "767de27a-421c-4147-a552-26ac56390339", + "fullName": "Tally Rizzi", + "jobTitle": "Civil Engineer", + "country": "US", + "isOnline": false, + "rating": 1, + "target": 5, + "budget": 78575, + "phone": "(302) 6856300", + "address": "1 Roth Park", + "imgId": 10, + "gender": "M", + "selected": false +}, { + "teamId": 2, + "id": "2b6e6902-11b5-4ca7-8a59-c32b3f57533b", + "fullName": "Ilise Lewnden", + "jobTitle": "Database Administrator I", + "country": "BR", + "isOnline": false, + "rating": 4, + "target": 33, + "budget": -1059, + "phone": "(659) 8660881", + "address": "19 Stuart Alley", + "imgId": 2, + "gender": "F", + "selected": false +}, { + "teamId": 1, + "id": "c891e87f-b19b-4cb5-8902-b19c59e37494", + "fullName": "Farr Penwright", + "jobTitle": "Senior Editor", + "country": "US", + "isOnline": true, + "rating": 3, + "target": 82, + "budget": 30505, + "phone": "(505) 3900066", + "address": "9200 Karstens Crossing", + "imgId": 6, + "gender": "M", + "selected": false +}, { + "teamId": 1, + "id": "65821428-adc7-4743-9dd8-cf62400e62f2", + "fullName": "Chantal Bidgod", + "jobTitle": "Vice President, Sales", + "country": "BR", + "isOnline": false, + "rating": 3, + "target": 62, + "budget": 25742, + "phone": "(746) 3962702", + "address": "8807 Kinsman Drive", + "imgId": 2, + "gender": "F", + "selected": false +}, { + "teamId": 3, + "id": "f42907e0-d92c-4fb0-b886-2e84331ffe28", + "fullName": "Johanna Bergin", + "jobTitle": "Electrical Engineer", + "country": "BR", + "isOnline": false, + "rating": 2, + "target": 54, + "budget": 25864, + "phone": "(720) 6442547", + "address": "93166 Spohn Court", + "imgId": 3, + "gender": "F", + "selected": false +}, { + "teamId": 1, + "id": "4531be30-eec7-477f-bdc5-88acb8d902af", + "fullName": "Padriac Syphas", + "jobTitle": "Marketing Assistant", + "country": "BR", + "isOnline": true, + "rating": 1, + "target": 50, + "budget": 20879, + "phone": "(606) 9062546", + "address": "50465 Buena Vista Plaza", + "imgId": 5, + "gender": "M", + "selected": false +}, { + "teamId": 3, + "id": "4f0ab8f6-7a36-4a5c-a513-d5495223a9cd", + "fullName": "Garey De Maria", + "jobTitle": "Operator", + "country": "US", + "isOnline": true, + "rating": 2, + "target": 54, + "budget": 94251, + "phone": "(972) 1133958", + "address": "24 Maple Wood Terrace", + "imgId": 9, + "gender": "M", + "selected": false +}, { + "teamId": 2, + "id": "13556e73-d43a-485d-8603-cbf1769bd0ac", + "fullName": "Glenn Thorwarth", + "jobTitle": "Developer IV", + "country": "BR", + "isOnline": false, + "rating": 5, + "target": 39, + "budget": 33511, + "phone": "(394) 3115946", + "address": "8 Dryden Park", + "imgId": 1, + "gender": "M", + "selected": false +}, { + "teamId": 4, + "id": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "fullName": "Bron Crosson", + "jobTitle": "Sales Representative", + "country": "FR", + "isOnline": true, + "rating": 2, + "target": 80, + "budget": 62081, + "phone": "(686) 7934926", + "address": "974 Mayfield Place", + "imgId": 9, + "gender": "M", + "selected": false +}, { + "teamId": 4, + "id": "cd233a4e-0315-496d-8f5f-4c8787b0f1ba", + "fullName": "Garey Malecky", + "jobTitle": "Account Executive", + "country": "BR", + "isOnline": false, + "rating": 5, + "target": 51, + "budget": 76354, + "phone": "(304) 6324519", + "address": "3 Paget Court", + "imgId": 9, + "gender": "M", + "selected": false +}, { + "teamId": 2, + "id": "339838eb-99dc-4fc0-8e18-060dbcf6bf78", + "fullName": "Elisabet Kimblin", + "jobTitle": "Automation Specialist I", + "country": "US", + "isOnline": true, + "rating": 3, + "target": 35, + "budget": 26755, + "phone": "(904) 3334563", + "address": "75 Buell Court", + "imgId": 1, + "gender": "F", + "selected": false +}, { + "teamId": 2, + "id": "90a03a5a-1f16-4721-8c56-af4bb89a1f57", + "fullName": "Berk Uttley", + "jobTitle": "Health Coach IV", + "country": "FR", + "isOnline": false, + "rating": 4, + "target": 58, + "budget": 82064, + "phone": "(200) 2124940", + "address": "4 Mockingbird Trail", + "imgId": 8, + "gender": "M", + "selected": false +}, { + "teamId": 4, + "id": "ce5ba778-43eb-4658-a6bd-56f04e6f125f", + "fullName": "Kenny Clackers", + "jobTitle": "Assistant Manager", + "country": "FR", + "isOnline": true, + "rating": 4, + "target": 37, + "budget": 47477, + "phone": "(926) 3235464", + "address": "53315 Bashford Lane", + "imgId": 2, + "gender": "M", + "selected": false +}, { + "teamId": 1, + "id": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "fullName": "Rickard Pingston", + "jobTitle": "Sales Representative", + "country": "BR", + "isOnline": true, + "rating": 5, + "target": 72, + "budget": 94173, + "phone": "(902) 4658383", + "address": "8 Mesta Court", + "imgId": 2, + "gender": "M", + "selected": false +}, { + "teamId": 4, + "id": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "fullName": "Hobard Clabburn", + "jobTitle": "Sales Representative", + "country": "BR", + "isOnline": true, + "rating": 2, + "target": 37, + "budget": 66166, + "phone": "(711) 6587550", + "address": "29796 Mcbride Court", + "imgId": 4, + "gender": "M", + "selected": false +}, { + "teamId": 2, + "id": "71ebd82a-f9f2-48ea-ada4-ce8db424df64", + "fullName": "Uri Champken", + "jobTitle": "Software Test Engineer IV", + "country": "BR", + "isOnline": false, + "rating": 1, + "target": 39, + "budget": 65176, + "phone": "(514) 1953919", + "address": "78 Rowland Alley", + "imgId": 6, + "gender": "M", + "selected": false +}, { + "teamId": 1, + "id": "b7a77c35-1f9f-45c5-ba44-7622d279b377", + "fullName": "Obidiah Fold", + "jobTitle": "Budget/Accounting Analyst I", + "country": "FR", + "isOnline": false, + "rating": 5, + "target": 66, + "budget": 74529, + "phone": "(747) 8711780", + "address": "58 Lakeland Court", + "imgId": 9, + "gender": "M", + "selected": false +}, { + "teamId": 2, + "id": "9c0fbca6-b793-4fdc-8dcf-5136cb5d049c", + "fullName": "Angelia Marconi", + "jobTitle": "Associate Professor", + "country": "FR", + "isOnline": false, + "rating": 4, + "target": 91, + "budget": 38996, + "phone": "(530) 7506861", + "address": "7 Ohio Parkway", + "imgId": 2, + "gender": "F", + "selected": false +}, { + "teamId": 3, + "id": "9083010c-4f59-49e7-96c6-894cbf24ed75", + "fullName": "Ronda Lock", + "jobTitle": "Quality Engineer", + "country": "US", + "isOnline": false, + "rating": 5, + "target": 36, + "budget": 69903, + "phone": "(916) 6819628", + "address": "802 American Ash Street", + "imgId": 6, + "gender": "F", + "selected": false +}, { + "teamId": 4, + "id": "4225013e-fd75-46f6-b678-b25675e131bc", + "fullName": "Rachele Fantham", + "jobTitle": "Business Systems Analyst", + "country": "FR", + "isOnline": true, + "rating": 2, + "target": 100, + "budget": 79333, + "phone": "(652) 3112938", + "address": "62 Grim Center", + "imgId": 4, + "gender": "F", + "selected": false +}, { + "teamId": 4, + "id": "b75a42e9-db84-479c-96b0-d88109abfebb", + "fullName": "Emanuel Deery", + "jobTitle": "Sales Representative", + "country": "BR", + "isOnline": false, + "rating": 3, + "target": 93, + "budget": 77477, + "phone": "(860) 8318923", + "address": "850 Mifflin Junction", + "imgId": 8, + "gender": "M", + "selected": false +}, { + "teamId": 4, + "id": "b2e28f42-7a35-4e23-b2e4-40fe3ed909ca", + "fullName": "Clay Ellins", + "jobTitle": "Design Engineer", + "country": "US", + "isOnline": true, + "rating": 4, + "target": 98, + "budget": 4120, + "phone": "(682) 4688237", + "address": "458 Scoville Lane", + "imgId": 5, + "gender": "M", + "selected": false +}, { + "teamId": 4, + "id": "4239103e-80bc-4f09-8655-c2165b063027", + "fullName": "Bettina Menlove", + "jobTitle": "Senior Financial Analyst", + "country": "FR", + "isOnline": false, + "rating": 5, + "target": 78, + "budget": 80574, + "phone": "(293) 8801412", + "address": "29 Onsgard Junction", + "imgId": 8, + "gender": "F", + "selected": false +}, { + "teamId": 2, + "id": "8442ff74-6f05-43f7-90de-b948a5c2c895", + "fullName": "Claiborne Willoughey", + "jobTitle": "Food Chemist", + "country": "US", + "isOnline": true, + "rating": 5, + "target": 44, + "budget": 44673, + "phone": "(707) 3380798", + "address": "39114 Killdeer Terrace", + "imgId": 6, + "gender": "M", + "selected": false +}, { + "teamId": 3, + "id": "1701041a-2ede-4c1d-a51b-8fe4b3ec1c35", + "fullName": "Desmond Gritskov", + "jobTitle": "Pharmacist", + "country": "BR", + "isOnline": false, + "rating": 4, + "target": 66, + "budget": 45319, + "phone": "(412) 1336481", + "address": "6912 Farwell Street", + "imgId": 6, + "gender": "M", + "selected": false +}, { + "teamId": 2, + "id": "609fd74e-e6c3-41ae-a227-d3d9caba0582", + "fullName": "Codee Maybery", + "jobTitle": "Clinical Specialist", + "country": "US", + "isOnline": true, + "rating": 2, + "target": 26, + "budget": 43462, + "phone": "(682) 7969803", + "address": "4 Tennessee Plaza", + "imgId": 3, + "gender": "F", + "selected": false +}, { + "teamId": 3, + "id": "f535ef7f-c79d-4936-af40-d062d2b2d5c0", + "fullName": "Denys Beynke", + "jobTitle": "Occupational Therapist", + "country": "BR", + "isOnline": true, + "rating": 4, + "target": 60, + "budget": 32402, + "phone": "(110) 4341370", + "address": "99 Trailsway Park", + "imgId": 4, + "gender": "M", + "selected": false +}, { + "teamId": 2, + "id": "ae126e65-b6ab-4388-ba5c-f6f5d54fc435", + "fullName": "Guthry Limpricht", + "jobTitle": "Geologist II", + "country": "DE", + "isOnline": true, + "rating": 3, + "target": 65, + "budget": 68462, + "phone": "(100) 8946768", + "address": "3117 Commercial Crossing", + "imgId": 2, + "gender": "M", + "selected": false +}, { + "teamId": 3, + "id": "9b1efdfc-4cce-4350-9516-028884fb1725", + "fullName": "Cammie Knoble", + "jobTitle": "Community Outreach Specialist", + "country": "GB", + "isOnline": false, + "rating": 2, + "target": 1, + "budget": 70198, + "phone": "(352) 1663192", + "address": "55 Longview Place", + "imgId": 4, + "gender": "F", + "selected": false +}, { + "teamId": 3, + "id": "a44c41e2-3adc-4d52-acb3-06f90e0214c9", + "fullName": "Kiri Espinal", + "jobTitle": "Accounting Assistant I", + "country": "FR", + "isOnline": false, + "rating": 3, + "target": 47, + "budget": 3712, + "phone": "(946) 6686147", + "address": "90480 Chinook Drive", + "imgId": 4, + "gender": "F", + "selected": false +}, { + "teamId": 3, + "id": "9d6d3063-7be8-49fe-be31-64d0d5949f02", + "fullName": "Joy Tiddy", + "jobTitle": "Engineer III", + "country": "FR", + "isOnline": true, + "rating": 5, + "target": 80, + "budget": 61355, + "phone": "(849) 1097790", + "address": "76 Summerview Hill", + "imgId": 9, + "gender": "F", + "selected": false +}, { + "teamId": 1, + "id": "44def3bb-7c65-45d3-aef6-bf8b49f934b3", + "fullName": "Arlene Karlsson", + "jobTitle": "Civil Engineer", + "country": "BR", + "isOnline": true, + "rating": 4, + "target": 98, + "budget": 14267, + "phone": "(699) 4713080", + "address": "90 Dorton Point", + "imgId": 5, + "gender": "F", + "selected": false +}, { + "teamId": 2, + "id": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "fullName": "Melony Millwater", + "jobTitle": "Sales Representative", + "country": "US", + "isOnline": true, + "rating": 2, + "target": 27, + "budget": 67126, + "phone": "(352) 5197697", + "address": "65242 Derek Place", + "imgId": 1, + "gender": "F", + "selected": false +}, { + "teamId": 2, + "id": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "fullName": "Mab Ballham", + "jobTitle": "Sales Representative", + "country": "FR", + "isOnline": false, + "rating": 1, + "target": 34, + "budget": 65648, + "phone": "(699) 9285470", + "address": "2579 Messerschmidt Crossing", + "imgId": 8, + "gender": "F", + "selected": false +}, { + "teamId": 2, + "id": "03f0f5a0-8b7c-486e-ae4b-c9e5858bbde8", + "fullName": "Nixie MacAskie", + "jobTitle": "Structural Analysis Engineer", + "country": "BR", + "isOnline": true, + "rating": 2, + "target": 13, + "budget": -5312, + "phone": "(434) 6153212", + "address": "59672 Village Court", + "imgId": 4, + "gender": "F", + "selected": false +}, { + "teamId": 1, + "id": "6b63462d-b181-4055-813d-983002ea57b8", + "fullName": "Gianni Crafts", + "jobTitle": "Tax Accountant", + "country": "FR", + "isOnline": false, + "rating": 3, + "target": 54, + "budget": 85744, + "phone": "(428) 3135618", + "address": "53766 Buhler Parkway", + "imgId": 8, + "gender": "M", + "selected": false +}, { + "teamId": 1, + "id": "dcafac96-c436-4232-8d0e-eda10d029e1d", + "fullName": "Moyra Summerlie", + "jobTitle": "Business Systems Analyst", + "country": "FR", + "isOnline": true, + "rating": 5, + "target": 3, + "budget": 19109, + "phone": "(960) 7792763", + "address": "127 Spohn Crossing", + "imgId": 6, + "gender": "F", + "selected": false +}, { + "teamId": 3, + "id": "a765924f-8ffb-4186-8991-6000a6ce2652", + "fullName": "Hagan Trevers", + "jobTitle": "Sales Representative", + "country": "FR", + "isOnline": false, + "rating": 2, + "target": 93, + "budget": 28290, + "phone": "(749) 8913157", + "address": "516 Clove Road", + "imgId": 7, + "gender": "M", + "selected": false +}, { + "teamId": 3, + "id": "2c3423dd-81d0-4e41-987e-1c39956c9ba8", + "fullName": "Sela Westmacott", + "jobTitle": "Account Executive", + "country": "BR", + "isOnline": false, + "rating": 3, + "target": 29, + "budget": 58239, + "phone": "(130) 9778509", + "address": "81 Maple Point", + "imgId": 2, + "gender": "F", + "selected": false +}, { + "teamId": 2, + "id": "e8bce62e-3bf4-4232-801c-bbcc8dab2e74", + "fullName": "Lilia Wiz", + "jobTitle": "VP Product Management", + "country": "FR", + "isOnline": false, + "rating": 1, + "target": 65, + "budget": 1438, + "phone": "(418) 5940094", + "address": "905 Hauk Point", + "imgId": 1, + "gender": "F", + "selected": false +}, { + "teamId": 1, + "id": "5b9b9235-e0f2-4102-b5f1-d512774e7191", + "fullName": "Orlan MacAlpin", + "jobTitle": "Statistician I", + "country": "US", + "isOnline": false, + "rating": 1, + "target": 1, + "budget": 9094, + "phone": "(512) 7106617", + "address": "6055 Truax Way", + "imgId": 2, + "gender": "M", + "selected": false +}, { + "teamId": 2, + "id": "1124d1b2-6ac3-4f2f-ba35-1da116844b0e", + "fullName": "Ty Nutton", + "jobTitle": "Speech Pathologist", + "country": "FR", + "isOnline": false, + "rating": 5, + "target": 88, + "budget": 76684, + "phone": "(250) 2530424", + "address": "37247 Merry Plaza", + "imgId": 1, + "gender": "M", + "selected": false +}, { + "teamId": 1, + "id": "01e7f525-ab3f-48b7-941f-c6ad601ea69f", + "fullName": "Mirelle Jandl", + "jobTitle": "Civil Engineer", + "country": "DE", + "isOnline": true, + "rating": 3, + "target": 19, + "budget": 94486, + "phone": "(871) 7917453", + "address": "31 Anderson Hill", + "imgId": 10, + "gender": "F", + "selected": false +}, { + "teamId": 4, + "id": "078b38d3-79a5-4df1-bd97-f83e300224a4", + "fullName": "Diann Bertram", + "jobTitle": "Structural Engineer", + "country": "BR", + "isOnline": true, + "rating": 2, + "target": 38, + "budget": 2769, + "phone": "(716) 9445650", + "address": "958 Swallow Drive", + "imgId": 4, + "gender": "F", + "selected": false +}, { + "teamId": 1, + "id": "7ca6af51-11bc-44f3-b92f-7af02923d040", + "fullName": "Cindra Slobom", + "jobTitle": "Web Designer III", + "country": "BR", + "isOnline": true, + "rating": 5, + "target": 48, + "budget": 81624, + "phone": "(409) 9223432", + "address": "82525 Northridge Junction", + "imgId": 1, + "gender": "F", + "selected": false +}, { + "teamId": 2, + "id": "86a585e1-b76d-43b5-982d-e74b5b4b616b", + "fullName": "Tymon Mattheissen", + "jobTitle": "Dental Hygienist", + "country": "FR", + "isOnline": false, + "rating": 2, + "target": 51, + "budget": 42972, + "phone": "(724) 3234885", + "address": "64363 Anzinger Plaza", + "imgId": 3, + "gender": "M", + "selected": false +}, { + "teamId": 4, + "id": "37e366fb-9371-4df5-980c-e9678ec9cde2", + "fullName": "Fancie Heighton", + "jobTitle": "Paralegal", + "country": "FR", + "isOnline": true, + "rating": 5, + "target": 52, + "budget": 67403, + "phone": "(738) 9982239", + "address": "4353 Hermina Junction", + "imgId": 1, + "gender": "F", + "selected": false +}, { + "teamId": 4, + "id": "b7df7c2a-4d40-4c03-bfb6-ab6d6930340c", + "fullName": "Kit Utteridge", + "jobTitle": "Office Assistant I", + "country": "FR", + "isOnline": true, + "rating": 4, + "target": 93, + "budget": 36268, + "phone": "(710) 2371400", + "address": "46806 Moland Center", + "imgId": 7, + "gender": "F", + "selected": false +}, { + "teamId": 3, + "id": "7d740468-fad9-4687-895b-cee07aa3bc3d", + "fullName": "Lea Willey", + "jobTitle": "VP Quality Control", + "country": "US", + "isOnline": false, + "rating": 3, + "target": 19, + "budget": 54614, + "phone": "(304) 3327700", + "address": "1 Moland Crossing", + "imgId": 6, + "gender": "F", + "selected": false +}, { + "teamId": 1, + "id": "88df162f-24fa-495d-a65c-b948607193b8", + "fullName": "Arri Halton", + "jobTitle": "Staff Accountant II", + "country": "GB", + "isOnline": true, + "rating": 5, + "target": 73, + "budget": 32500, + "phone": "(743) 8449571", + "address": "3 Starling Trail", + "imgId": 3, + "gender": "M", + "selected": false +}, { + "teamId": 2, + "id": "cb93d087-2f15-43cd-9bc3-89716e39a724", + "fullName": "Malva Pierpoint", + "jobTitle": "Operator", + "country": "US", + "isOnline": true, + "rating": 4, + "target": 98, + "budget": 20312, + "phone": "(423) 8195288", + "address": "57584 Algoma Plaza", + "imgId": 1, + "gender": "F", + "selected": false +}, { + "teamId": 2, + "id": "b76e54a1-1c46-49aa-9464-7dd9aa738b65", + "fullName": "Dalston Sabben", + "jobTitle": "Social Worker", + "country": "BR", + "isOnline": true, + "rating": 4, + "target": 85, + "budget": 99048, + "phone": "(388) 2523908", + "address": "53578 Clove Lane", + "imgId": 4, + "gender": "M", + "selected": false +}, { + "teamId": 3, + "id": "608f098b-16f8-4460-bb35-9599a8a74280", + "fullName": "Delinda Margrie", + "jobTitle": "Financial Advisor", + "country": "US", + "isOnline": false, + "rating": 1, + "target": 1, + "budget": 8398, + "phone": "(702) 6480692", + "address": "9 Dapin Plaza", + "imgId": 9, + "gender": "F", + "selected": false +}, { + "teamId": 3, + "id": "23b426f8-76d5-4808-84cb-c42bde8362fd", + "fullName": "Meggi Westman", + "jobTitle": "Librarian", + "country": "US", + "isOnline": true, + "rating": 3, + "target": 64, + "budget": 63413, + "phone": "(682) 3495155", + "address": "82 Duke Terrace", + "imgId": 7, + "gender": "F", + "selected": false +}, { + "teamId": 4, + "id": "7ecfb74e-64d9-43ee-a028-d2e3841acba9", + "fullName": "Bret Barnsdall", + "jobTitle": "Registered Nurse", + "country": "BR", + "isOnline": true, + "rating": 3, + "target": 52, + "budget": 55153, + "phone": "(222) 2089814", + "address": "4 Corry Park", + "imgId": 8, + "gender": "M", + "selected": false +}, { + "teamId": 4, + "id": "cf505561-d9e1-4d2a-93d5-4745d50595c2", + "fullName": "Matthus Shyres", + "jobTitle": "Marketing Manager", + "country": "FR", + "isOnline": false, + "rating": 3, + "target": 68, + "budget": 33697, + "phone": "(539) 9486139", + "address": "460 Norway Maple Junction", + "imgId": 1, + "gender": "M", + "selected": false +}]; \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/resources/images.js b/examples/react-coffee-warehouse/src/resources/images.js new file mode 100644 index 00000000..482dc01e --- /dev/null +++ b/examples/react-coffee-warehouse/src/resources/images.js @@ -0,0 +1,53 @@ +export const images = { + "10F": "url('data:image/jpeg;base64,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')", + + "10M": "url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAAEASABIAAD//gAfTEVBRCBUZWNobm9sb2dpZXMgSW5jLiBWMS4wMQD/2wCEAAUFBQgFCAwHBwwMCQkJDA0MDAwMDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0BBQgICgcKDAcHDA0MCgwNDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDf/EAaIAAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKCwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEAACAQMDAgQDBQUEBAAAAX0BAgMABBEFEiExQQYTUWEHInEUMoGRoQgjQrHBFVLR8CQzYnKCCQoWFxgZGiUmJygpKjQ1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4eLj5OXm5+jp6vHy8/T19vf4+foRAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/AABEIAG4AZAMBEQACEQEDEQH/2gAMAwEAAhEDEQA/APsbGKAFxQAUAHSgBrssYLOQqjkknAH1JoApQ6naXDbIZ4nYdlkUn8gaV0BPJdwwDdJIiDplmAGfxNPYCZXDAMCCDyCPSgBfpQBIBigBaACgBDQAygBcUAKFxQBja/rtr4btGvbxsIvAA5Z2PRVHqfyABJ4FS2oq7A+YPF/xJufEQNs6CCzzkRqSGf03tkEjPoFH865ZSctNkXY83dkRjvzAMDbtLtn0PyE8foO5qB2LC6xfWmInllMIOEZ2JxnuAen4dsckYpiPVPDvjTULNUhkm8yAFT95S+0H5lAb5uR0Bx+VWpOOnQlrse4eE9dh1nzTb8RrtOwknYxLAqM8gEANjoM+9dCaexJ2wqxhQAUAIaAGCgCQcUAFAHx/8RvFE2v6lIASLS0do4UzgfKcPIe2XI4PUJtAwc1wzlzO3RFpdTzAqLvfKFxsGeDjp9R/9f3oQyTSriOM+ZNvYZ7EgAD+uPXP9ah+RaR6ZbSWlxD5UzLJFIm+NlGGAH3kP94rw3BHf6k22BoxL7w5bYEtpMHXOT1LA+4wv67SPfrRewctzr/CGpS+HrpZYW3QsFWRWyBzxnPYgHvwe/QY0jLlfkZyVj6jt51mjWRCCrqGBHcEZH6V2kFgGgAoAKAIxQBJQAyQEqQOCQcflQB8A3ZYboycuHbP13YyfxrzbGiNKHTWlg2ou1M8tjO4+3+cUpS5UdFOHMzufC3guFkP2lAQ3QHk4/kP89a43Ub0R6UaSjudRd+A41jC2g2bTlcdj/gaalJA4R7WM/TPh7NEzNM21TjHqf8ADH/6q153YzVKKehn6tpNx4flWWIb7eRgki9cZ7/Qnn2PrmnGXQxqU7LmR7H8NruWWykt5WLLbyER56hGLfKP9lSCB+PbgelTeh5j3aPR84rYRIDQAUARigCSgDz/AOIHi2TwvbRpbJ5txdMyr/sIq5eTHG4rxtGQM8npg8tar7JK277nZQo+2bu7RW9t9dj4ggdoL8wXByrfNE+CFdR8wIz65OR1B9etc8XzK6+fkKpT9lLk+59z162XzUiRRhPlx79+n61yVHfRHoUafKuZne6VqVqMRrPEZAQCm5dw9u3NYKLOy62O9guQiZPBPfjH6/0zWtrGbjd6Dmucjgj8/wD9dDBROQ8SurWrnIBUZ+mOf8+tQtGvUUo+615HeeAVB0iGXYEaTcxI/j+Y4b8uPwr3ofCj557s7StBCg4oAfQBHQA8GgDxT4soZZIAgbdHbzuCpwRloxx7kDAx2zXnYlXcfK/6HsYJ25vl+p88X/h+2uJvIkYySRxgFlOMN1OO5xnGe55xXDGThex0zpxqvU6bTJH03YLkGWGMbFcDnsAj/wC0V+62Pm5HDY3K99Vv2KS5bRe3R/o/07kl9rml3Mn2ZrCSKTBfeqIrbVySwUEOQMEnjoM1tFStzK1l5kTdOL5He72dv6f4HovhPWLNx5SPvAHAJz27Z6fSlfuXZr4XodRqeqQW0YKlQxBwp4GaegaxuecXl3q+tZ0+O0UG5DRxSK4xuI4LD+EDqzHsDSUE5JRfXYxnUajK6to7M+i9F00aPYwWKnP2eJIyfUqoDN/wI5P417SVlY8I1KYBQAZIoAKAON1z4ieHfDT+TqV/bwyg4MQbzJB/vRxB3X6sooFsfPPxO+NGi6hNBb6ErX86kq0x3RwBH/gAdQ7sDg5wijkZYn5earBTV3pY6qNZ0naKvfpscHaTnd5n8R/rXkNaWPYT15j2LRUhmhCv04Jx1yMEH6g8j6Vnaxva50p0SO4XIMRBB5YbWGRg4yM8jIIGM9K1V0rJkPR6rY46w0CRNVaSIpbxxfLG0aDL8EfOr5BA9gPY81d0tLC5ZNtvRdO5zt54fvtQdbm5dsGVxIpzgorlQI9pzHlRnJBIb0XAqlJR1tdGUoykrKXK0zu/B2m32iRx3yO96/2kxRWzbdzRkYkKu2AGRWJG7C5XllXIrooRX8TrdpL5bnFiaj0pXukrt9T6Fr0jzQoAKAEoA+P/AIn/AB1/tGNtL8MO8cTZE15gozr/AHIM4dAf4pCFfsoA+YohvsfKMpLsXPUnr698/rQBDbyCCZJD/AwP5c1nNXTSNIaSTPbtJnEuFPQ4xXjtWPdTPStG1JrVtjZ2jkdelTY647ndS6/crbtJCCVQfdHLEd8L7DnHU+lNXRr7t/1K3hHW7TV5JWWX95ExDKwKMP8AgJAOD1zimlbcUmvs+htrdwYdd33Sc55Hrn1qfIXJfU7/AMF2xFkLhwMyMxjOMERkjp/vsC3uNvtXq0ItQTfy9D57ENe0fL8/U7Kuo5AoAKACgD8oMUjMpMOMfX+dAFBzsO70INJroXF8rTPQfD2pFNqk8xkL+HY/iP615lSPKz16M+ZLyPoDQXjv07KcKu7HTGTXHezPRtpZCI+q6bPIo23UOeMAh15PysOeMYwyg5GcgY52VmtNGL2b3jquydmv8/60Mxhbm7+1NaTLOeGKA4I68kbDj/eWm9FbQFTktbNeqt+I7xDqn2TT5dSYmLCbVXoWJ4RT0P3iAe+M+lKMeaSijKpUcKbe3+Z47pPxF8Q6SVNpqF0gQYVDKzxgDsI5C0eB2G3A7V7O2iPm7vc9o8K/tHXtqVh1+BbuPODPBiOUD1Mf+rc+w8r6mmFz6e8MeMtJ8Xw+fpNwk2B88f3ZY8/342ww9M4Kn+FjTKOo6UDCgD8n8Ht1pGZVUhh8vTp78evvTApTpgGkM0bSdoo0uY+i4jkHvzj6kgE8c9zXLON7p+qPRi4wjGcN9pLXfWz7a+R694I8WLBMI5T8kmFyex9/rXnyhynp06iej2PoAW9vdqJlYqxA+Ze+B7dfxqUdu2xDcpFZxNPLISkSliWOFAUZye3HXoaH2RnJ2Tb2PlDxh4tm8TTlAfLtEYmNBxkjPzt7nJ+gPrmvTpUlTV/tf1ofO1qzquy0itl+pxtvJ1HpXSchaBoEaOm6pc6TOtzZyvBNGcq8bFGB9mUg/wCNAbH2Z8HPi3deLrhtF1YIbmOHfFOo2tLs27xIudvmYbeCgUEK2VzyWUn0Poigo/KEdaRmVNg3F1OA3b+R9qAIpVyOKBlFWeH5Tkorb8dumD+PT/Oahrr8jWL6dE7mxBE5UvCSFJBGOo9uPT9etczsnZnbFNLTY7nSPGmqaHC0hk3xpwA4zk9gORWPIm7I6vaypxu3cg1fxzqmv2jR3DCKJiAyx5G7POGJ/hwOR34zxweiFKMXff1OWpVlODu7LTRef/AOCcV1nmkMWUb0oAv9KQgNAHqvwTmePxhp/l/xPMpHqptZQ35Dn6imCP0QoND8mbOTfGM9aDMdjaSPxH9aQDSvFAEBj3dOCM4/z6HvSZa0N3Qbs2UjW7xiRXUN1A2HtuJ4x2wTkcc8VzTjzap+S8zrpzcPda0td67FbVDLIqqymJd7fK3HfJb6c47+xNOCUXa9/T8hzblG9rWel/zKe0RghTkcZPOCQDzj2zgHAOOtbpddvLscsn9lff3/AKuQPVGZAnLZpgXQaQhRQGxr+GtYk0HU7bUoc77SdJgB/EFYZX6OuVI7gkUwP1OByM+tBofkfp7fIKCC84547c0CG+9IABKYYcEHI/Dml5DWmqNqK3P2dTbSus5OZThcfxDry2CCPTHPBrCz5m7Ll6L7jqXK0oybv1e/f5mFdSXBkWCdvM2fdPHCjjaPQd8evOM81pFJO6Vu5NR2SV7rp6CngYrQ5ivKcCmMij4oAtDpSERSy4OwfifSmBNYXLWs6XC4zE6uM9CUYMAfbI5/KgD9O/CPjPT/ABjp6ajZSLtJ2SKcqY5VVS6ENg8bgQccqQaCz8trFtqCgk1CaQhh+U49s/4/4/nQAUAaVveoksQVTHkBGMeAWPHzHIIJ69RXM1KF2nfrZ7LyR6KUJKF420tdaO/dlfU4fJvZATuwFwcAHnnnHH6D6VdKfPHmtY5qsFSlyp+ZUNbGBVfk/SmAiUAWM7RmkBQX5uT0Pb/GqFsW0XPyjj1/+tSA6DTvEF9pEZgs5pIYyxYqjYBYgAn6kAD8KAP/2Q==')", + + "1F": "url('data:image/jpeg;base64,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')", + + "1M": "url('data:image/jpeg;base64,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')", + + "2F": "url('data:image/jpeg;base64,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')", + + "2M": "url('data:image/jpeg;base64,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')", + + "3F": "url('data:image/jpeg;base64,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')", + + "3M": "url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAAEA8ADwAAD//gAfTEVBRCBUZWNobm9sb2dpZXMgSW5jLiBWMS4wMQD/2wCEAAUFBQgFCAwHBwwMCQkJDA0MDAwMDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0BBQgICgcKDAcHDA0MCgwNDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDf/EAaIAAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKCwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEAACAQMDAgQDBQUEBAAAAX0BAgMABBEFEiExQQYTUWEHInEUMoGRoQgjQrHBFVLR8CQzYnKCCQoWFxgZGiUmJygpKjQ1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4eLj5OXm5+jp6vHy8/T19vf4+foRAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/AABEIAG4AZAMBEQACEQEDEQH/2gAMAwEAAhEDEQA/APsugAoAKACgAoAQkKMngD9KAOQm8faBbzC2e+g8wuseA4YBm6AsMqBzyc4HcjBqOZdzTkl2Opgu4bkZhdJB6owbocHoT0PB96q/YizRPTEFABQAUAFABQAUAFABQBj6/rlr4bsZtSvWCQ26FzkgFiBwi56sxwqjuSKlvlV2Uld2R8HeM/i9q/jO6lGnNLbWpBiWGJ3GY88ebhtm49WIxwdpyAK5ZStrLTyOyMOkFc8nudO1K1jFxIjeW/RgeeBn6jp0/wAKSqQbsnqW6U4rma0Oh0jXfEHhh11C1eeAHA8xSwBBwcHqCDgZBGDgA9KFKLdovUHTmleSdvQ+3fhL8TB48tnW6KLeQ4LKoCblJPzKu5jgcAnu2eAMCumMr6Pc45R5dVsex1oZBQAUAFABQAUAFABQB8hftQau6/YtMVsKQ8zIN4zn5VJPCN0cBQSVxk4DisJ7pHTT0i/U8W8B2q/Y1LAZLE+/WvIxEveZ7eFiuVHt8Gjw3UPlyoroy4IYAjB69a5EnutD17LZrQsXeiwvB5O0BdpXGO2OlS7xd0DSas1ofP3h+/fwl4vha3yEhvEG1e6swLJwD94EqPlIGQQMivepu8Yye58pViozlBbH6XqdwBHQjNdp54tABQAUAFABQAUAFAHyl+0zoqTwWl3GHEv73ceCm1PL46ZDHdxtI+70J5HLUlyOK73/AAsd1GDlCT/la09b/wCR4rb20ljbQC3eaLESErBCJWLNgknd3yeg9+teVpKTTSevV2PYinGKcW1p0Vz2Hw5rJkQ2s4LzQDLtgLkeuASM/Q4qG+V2PRg+Za3v6W/AxrjxLPc3pt7aaHC4/cyxujEEkfLJ905IxycZoaTjzSTS7mDlLm5YtempxVl4QPiDxtFaoNkSzQyTs2CACFkZf988qg55xn5cmu6i7RjFvd2R5FeDcpyivhXM/L+rn6AQQpbxrFEAqRqFVR0AAwAPoK9Q8YkoAKACgAoAKACgAoA85+KfhqbxPocltaoJJ4mEqKSBnaCGAJ4ztJwDjOMVhVjzR03TudNGag2ns1b8j580xY7SI+eAvljGDyQQMY+vFfPvRu59bStyj/DbC7kmuVChTxjjP4+h9j0p20NotXZ11ra2xyQgDdSOOvr6fjS0asOSS1Nj4ZeH2l1i91aWMrGXHlEqRuaNfK3ZIwcfPjGegNelh4Xab2irr1Z4GJqckJxjZOckn3st/wAUj6Ar1TwQoAKACgAoAKACgAoACMjFAHxt4rsG0y/u7FjtYuXibqCATg+/B5HqCK+fqR5Js+poT5opejI/D9tCYjJK5WXHzIsQJLD0PmLwe2eaVlY9eNN2TUYu/Xmat6qzOltDIBmQAOxwqj0PC5z3wRkcgHPJ61z2u7IwqS5E7/1+R9MaTZ/YLSK37xoAf97q3/jxNfTQjyRUeyPiqkueUpd2aFWZhQAUAFABQAUAFABQBHNMtvG0shwiKWY+gAyf0o2GlfRHxL408SR6xqEl1BkwtIXhYjBCtglWAzxnnqcGvDnJSk/XQ96CdOMbdEiXTtZt41U5G/8AlWPJbbY9ONfTVam7Y6oPPW5dT5UJDt2yFO4jn1xUK0Gku6/Mzleabemj/I+rtM1CPVbWK9hyI541kUMMMAwBwR6jODX0id1c+Sa5XbsXqYgoAKACgAoAKACgCGe4S2XfIQoH+eBQBwmpeKIb7dZxIwUnDMePXjAzwSB1P4VL3saJW1Pl680MaVdS2Jw6KxaJhyDExLJj6D5T/tKccYrwK8HTm103Xoz6Og1UgvuOhsdOgCAsi9OuK4nJnoKKXQ2NH05Nduzp0AzGgH2hh0VW/hz/AH2APHZck9s9eGoutO8vhW/+Rx4muqEGo/E9j6Js549MiWHGIowFUAfdA4H4V9Na2x8q9dTcimSZdyEEH0qBElABQAUAFABQBj3mrxQbo4iHlXt2B98fyH6UvQpLuc5e3DyRkzHLBdze391QO2T/ACrVLlQeSOQXTnk3AfLlWyf9pgf1GRUqN3cbdlY5yPwsI08pgHjiGEBGHj5J+RhglTn7rZH0IzUVqMays9+j6o2o1pUHeO3VdH/Xc5PUtH1BrsWFspUYBaQj5URjjLY7+gGSevTJHhvCSU/Z7re/S3+fke59bi4c60e1ut/8vM9Eh8OTeGVEujM37j5nRjn7QxwGaX1JA+X+5xtAHX6OnShSjyRXz8z5upUlUlzP7jtFvk1LT/tKZTzI2JB6oy5DA+6sCPwqrWJuOt7uSzRZUO35ASOxOMnP51m0UdXZ6pHcABvkY9M9D9D/AEqLWA1KQgoAKAOX17UWjItYThiNz44O3pgfzPtilvoWtNTm7AbHV+vmO/8A3yinn/vrn8a0ihNk8IN5ln4QtuPvj7o+gHP1q2LYuFQXXHAOf64/lQIq3G4lVjAMjsEGenPXPsBkn2FAExso7BSR8zk8uepPTp2A6AdulUtNyfJFtY9kaoernJP8/wBKdwsZ91EkNpOkQ2qVkbHu2ST+JNIexHcnbFKeyIrf+Of4igCVICETccEIBj8Bkn8amw7m/pF+xbyJDn+4T147Z+nSoatsB0VQA12CAseABk+wFAHmF5cfaJvtP96Vh9F2YA/LBoXfzNHpoPGU3xpyyL5S/wC9L8x/75Ubj7H3rdaGZqRxiGMKeAuBigCeUhXjA4BYf+gtQAkMebhW/uHP4lWX+tAiO/f5QPV/5ZP88UxFx+HA6bRj8T/n9aBlCdMxyR/30fH5dP1oAq3aea3lj7rPErfRSxIP1xj3FVYkuM3mEkfdXv64/wA/nSGVjKYSsi8FSCPwqWtCkegowcBh0IyPxrADA8T3Zs7CQrwZMRj/AIF1/wDHc1L2LjucTCo/dgjKTRK2P9sLg49G4/GtktF6CfUk0GQSGSQncPNYAn2CoPxO0A1SJLvmmWR0P8Dkf4UeQFuR/miz1L4/JGP9KYiyCY32gZbaWPbqQB/I0bAUrwkyRr03OB/49uP6J+tMRbmmWLdI/Cg8mnYBZULSRsoJX5gfTDDPP5UWApXY2zAkcSLjjg7l5H5jirJHSuEjCLwW+UAdvX8hUFFacYGBQGx2+lyeZaxN/sAflx/SudlGF4xhM9jsHXdn8lala+hcdGchYObnTxj78IPHqOv/AOr0rSO1uwSWouggNZMwODJLMwI7ESE/zFWtiNiTTZjcTTTEYBIHsWAIJ/lSW49jSs3+03WByluDk/7bcAfguSf94U+pJbs5DNPOT0QpH+IBY/8AoYpiIpSJL2NR0jGfxP8A9b+dAEmrJtt3Xp0/mKsnYt20m5B7AfyoAivwWiZgMsg3D8Af/rU0BhwSAnI6DjP+H9agpIZezHAA4yaBneaD/wAeMX0b/wBCaudjG62geEA92I/NGpx3GjzrRP3SlexYqfwqloUxzAadZThOkU8jLj0fD4/8frTZEENpIbHTVk6s43H6nn+tTshm7o8f2a0D9Xl+Zj7t/wDWprQTE02TCuT1lmc/lhefyoTtoK34E0HzXjt/d2j9BVdRF3VxmLHqQP61aJIrJs8DgAUAN1GTyraVvRT+vFIDnrY7SEHcbjUGhHcNumx2UfzpsR6VoYxZRf7p/ma52M//2Q==')", + + "4F": "url('data:image/jpeg;base64,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')", + + "4M": "url('data:image/jpeg;base64,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')", + + "5F": "url('data:image/jpeg;base64,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')", + + "5M": "url('data:image/jpeg;base64,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')", + + "6F": "url('data:image/jpeg;base64,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')", + + "6M": "url('data:image/jpeg;base64,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')", + + "7F": "url('data:image/jpeg;base64,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')", + + "7M": "url('data:image/jpeg;base64,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')", + + "8F": "url('data:image/jpeg;base64,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')", + + "8M": "url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAAEBXgFeAAD//gAfTEVBRCBUZWNobm9sb2dpZXMgSW5jLiBWMS4wMQD/2wCEAAUFBQgFCAwHBwwMCQkJDA0MDAwMDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0BBQgICgcKDAcHDA0MCgwNDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDQ0NDf/EAaIAAAEFAQEBAQEBAAAAAAAAAAABAgMEBQYHCAkKCwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEAACAQMDAgQDBQUEBAAAAX0BAgMABBEFEiExQQYTUWEHInEUMoGRoQgjQrHBFVLR8CQzYnKCCQoWFxgZGiUmJygpKjQ1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4eLj5OXm5+jp6vHy8/T19vf4+foRAAIBAgQEAwQHBQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/AABEIAG4AZAMBEQACEQEDEQH/2gAMAwEAAhEDEQA/APsugAoAKACgAoAKACgAoAKACgAoAKACgAoAKAILq5jsonnlO1IlLMfQAZpN21Gld2R4PqnxjfzGS0SO2jU8PNlmZRnJAUhR09W+prklVf2Ud0aC+0/0OZ/4Wpf6gwWO6EZPTYijr1z7j0znPGOtYurNbnQqEOhc074o6nZSBJ289c871A4/DkZHOM/hTVWUfMToReysez+F/Gtl4mzHF+6nQZMbEcj+8h43Ad+AR3GOa64VFPyZwTpOnruu52VbGAUAFABQAUAFABQAUAeJfFPXftcf9iWjkNI22Ur/AHsKQn4K2446ED0IrirTt7q+Z6OHpX99/I8il+GBEAXc0m47mYg5GR0z1/z9a4nKSd0etGnG1mS6Z8MrewbMrHn7p64/A8cUOTe5oqcI6RQ2/wDBdxA7Mrq6nnPQ/oP60aj9mnschZ3eoaJdiSNijxHcCpIxjuOx9enr7itE+qOOUbNxex9bfD/xiPFdnmXAuYcB8dHB6OB2z0I7H8h30582j3R5FWn7N3js/wAD0CtzmCgAoAKACgAoAbI4jUueigk/gM0D30PBdGtI77UPtUnzupmlcHnDzOSv5Jx7dK8jeV2e/D3Y2WnRHpIjXGMDmt7CuZOq3FtpkDT3RWONeeRn8h/hUtJbmkW2/dPG9S8c2d4Xis0llAyCyIcD88Vi0dEZerPM9YvQ4SVeQxwSeCD1wc9PSiK6GdXbmR03wo1ya11q3hQ4WSTy2B4yrlhg+4zke5rpj7sk0ebUXNBp9Fc+067zygoAKACgAoAKAIrhPMidP7ysPzBFJjWjufNmj3UttqN5Bbj5yqbN3QMWCEn/AHMkkfhXkNWeh9DDWI25H9m3aSXuoSPMzArGGAHBzjb6evAFDvuk7d0dUVFPlbSb2TaV/RGp8R52n06GROVkkUP7DpVSd7MVOPK5R7HHX9rfQQwx6ZFElu0ZZj8xcN/Cpx8pLdWIyo6DNK0bXbfN2sVzVFPljGPJ3b/JHLap4dmltW+0KI3lGSAcgN2I9OalOzuOUVJNdzjtFupNLuIbpG2PbzKX56bMHJ7nJH6dxW22q+R5qg5e795+hFjcreW8Vwhys0aSA9Mh1DA47cGvSTukzxWuVuPZtFmmSFABQAUAFABQB4XqEAtfFUltGqqjwGXIGDl2U4HsCGP4151RWlp1Pbw8rw9DQHg+z3rMRulUsQ5ALjccsN3XB9PTjpUq6jy3dux1XXP7RxXN0fb0GeJLGOfTJEf5Vj5B9MVDXum8Je96o5Xwlqsd5G1q5BktwB9VPQ/0+oqU+hrKPVFDxVJtXaKh7mlrI8da0E120aqCZMcepOPzI6irvpY5Yq07n3boVs1np1rbv96K3hRs+qxqD+or1Yq0UvJHzVVqVScls5Sa9Ls1asxCgAoAKACgAoA4rxPp8a3EGogAOpMDH1V+U/Jxx/vVy1ltLtp956GFnZuHz+7crh+K57nqnKa9oiahFKssrokwVSC4VFxkkgHjnPzeuBU2NYTv7qW19lqefeF9EtdBkdoZhNI3ycuCSB0Awe3YVm31NNY6NMZ4rkAGOhqC29DB8OaSuo6nZMhAb7RGHH95AysR/wB8hsfl3raC1S8ziqScYycd7H2TntXqnzYtABQAUAFABQAUAVby0jvYjDJ90kH6FSCD+BFTJKSsy4SdN8y6fqcVdIbd2jPVSR/n6150lyu3Y9unLmSfRnF6tZo6PeXTNcFVISLlY0HX7qn5ie5b8AKjmS9T0qc+T3YK3d9WcppiWt0ftdnBHEUOCQgU+hPTPTvWcm9i3K+/U5DxdqIDhmI4Bojc5pNJHn2na/cxXCyWbMsyMDEV6hgcgjPHB5549eK6VF3Sjvc5XJcsuba2voej+DvHF34f1GGa+uJLsXBK3buzNvLHkrnoI+AgGBgcAbjXsqnpbqfNuevkfYkciyqHQhlYAqR0IIyCPYiuc0H0AFABQAUAFABQB5x4q16yguY7RDuuWO1ipG1eCQrf7RPAA6Z57VNSg5U3V2t+KOihWUaio33/AAf/AATnk1CJQVPGOoPWvKWm572pxfifXobZC0RCYB4Hf8qr4tEjS/KryZ8461qNxqtx5ceSzE4HoOpJJ4AA5JPAHJNdMKbbUYq7PNq1bJyk7JF6ytBp0exTukfh3HTH9xM4IX1PBb0A4PtQoeyV38X5eS/zPBqYh1Xyx0j27+b/AMia0JcordUkP/166IxvJHNJ2TPsb4a+KIL/AE6OxmkC3NsPLAY4LoPuFc9cAhSOvA9a4asHGTaWlzqhJOK11PUK5zUKACgAoAKAMzWEuntJFsSFnKnYT+oHoxH3SeAa0hyqS5/h6kTvyvk3PkbxBPPZiQklZkbdk/eV1Oec99w5zzXtVLODS2a/A86ldTT6p/idxp1xbeKNPiv0JQyIN204IYcOp91YEc+lfGSXI2ux93BqcVJbNHG634VeYEwTZz2Ycj9cfpQp26It0k+5w8Hg2axkkupW3BUYn8s/0r0MHU/fRT2d196f6nmY6hbDzknqrP8AFX/AqeVvBx+FfVyjdHxUZWZX06JpZ2IBIB/U1hThr6G05WR6ro9jKEYj5QqFvT5sYHQ8kHrg4GMZya3lBJabnMqmqPUND8aXsI8tyLhIwAd/BzgZww5/763fhXnyoRlto/L/ACO5VpR03X9dT0PTvFlrej95mA/7X3f++hxXDKjKG2vodkasZeXqdMkiSDchDA9CDkVz7aG4+gAoAKAPEvit4bguYjeW7Ilzj54s8yjHDKB/EAOf7wGeo576LlKLhZtdH28jknywkpXSfb9TxP4VRX9u97pro+YpEnSEqQ+yXcC6g8ldygHA4Jz3OPLxFF35orX9Oh7+DrxScJNJdG9r9UewjRryTlYJOfVdo/NsCvOVOb0UX91j2nXpR3nH5O/5HM6u6WRks7jarsrIVJHBK84IODjIBx0Ne7hcC/cruVpKXNbdWT29WfMYzM43qYaEeaDjy82zu1vbsvkecvbBGEMe1iw4CBmOCcDqB1/rX0+myPkLtas3tE0RbZSXHQnIyOvfJGen8WD6DPpCXLsEpXOmSRn8wxjAVSqgf7R4A/Ck1ZWJW5YhEdlGLYH5sb5W9O5yfb/6wrDl6nTzdDHm1Z7x+CYrVOI0X78nuB6E9zx6ZxU8ppzW2NaPVDEMPMYT2RDwo7AnPLep9ahxv0KUraJ2PpqvBPbDOKAOO1vxZHp7eTABJIeNxPyg/wDs2Op6ADHJJxXbSw7n70tF26nFUrqHux1f4HkS6lJfXT3rsXVH2KT/ABH/AJaH2GMKuMYGQK9n2aUfZx006dO39dTyHUblzvXX/hzBlmlgvY9a0s5cgRSqeN0SyBiuezKVYe4JwK5KtJ2v1Ss7dfNHfh6sYtwekW7pvpfoz6DTUYmtxcggoE3kg5AGMmvMUW3ZHpt8qbeyPANWuo725ldgCXYvkgHAY5wAev19q+ipx5YpdlY+ZnLmk33bZSiURgMg+d+E4Ax2zxwMDJH+8fStTE2Db+RGtuv3iMsfbqfz71F+o7WGXVyLKECMfvJD8o+nANK12UtDNuAtrb5myxkbLgdXx0Qf7zcUPy6FRZgtI9iArENeXRycdIl/uJ2CxrwT/Eeg5FZ2ez3fTsbXW62XXv8A8OLHpwuQZGOMk4yRnA4ySepPX9O1PlFz20R9n18ufSHl/izxIYpXgjbEUIO/H8TAAkE+nKr+frXq0KOik1q9vJHlV61m4R2W/meQ6hqck7Dbncy8f8CPy/ixy59lUetevGKjov6/r/M8tu+rN2G3W3gWEdIhyfVtpLH/AL6pX1v3/wAyfLsczYx7ont+myRmBHBw2GGPxz144rbbUybNmzv7izgmg3kRTKNwI75zlR0GQCG7HjvmuJ0VzqcfPTzO9V2qbpS8rPy7HPXTiZUMHy78DJIy0fJZsDoAMkZ6n6iuzY4/Lsa2mr5pN0wwo+WMew4qXpogNLJc5HVqnYDCuJhJdPIOVtwsaD1dv85/GmkN6aIpanMftcMA+7EpZ/c4wP8Ax4lvolLf8/8AIpaJ/d/mYUEomllu5OhO0H0QdFHu33m9BgdqS6v+rGj0Sj/VyjI97fsZYAVjHyqB0wKzd3tojRcsdHufZHibVH0y2Hl/elbaD6DGT+PavBowVSWuyVz2a1T2cdN27Hzdrt40nyHP76Qhj/sqSxH4hcV9HFWSSPnW9WyCyf7VcCRhgIScf7h2D9VJ/Gr2TIemhvS3JETnkZ/rUpaoV7IxhJ5TiUfxDaRWj7Eosavdy6tH85EZlXZlBwoBI4BOTzzycY+UcAVy0qUaCcYtvVvXzOupVdVqUklZWstNjDJH+rjG1crCo9FwCfzG0D6GunayOfu/mdUSI0WJeAoqPMRXE/lgsM/KCRVeQtjm1n2CI85kuVJo2L6+iMO7uXudQnjBK52Rg9wNrsxHvtBC+55qL6tLy/G5qlaKfq/yGzgELEvywxgEqOpzyBn9WPUn65oemi2BPdvcrPebTgbgBwADgAegAqG7GiR//9k=')", + + "9F": "url('data:image/jpeg;base64,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')", + + "9M": "url('data:image/jpeg;base64,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')", + + "BR": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAAAtCAIAAACRYfoNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkJGNTM2NzBBMEMzNTExRTY5Q0NDQkU3NkQ1MUQ1OTFCIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkJGNTM2NzBCMEMzNTExRTY5Q0NDQkU3NkQ1MUQ1OTFCIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QkY1MzY3MDgwQzM1MTFFNjlDQ0NCRTc2RDUxRDU5MUIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QkY1MzY3MDkwQzM1MTFFNjlDQ0NCRTc2RDUxRDU5MUIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4SeXTsAAAKC0lEQVR42uxZ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", + + "DE": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAAAmCAIAAAD7pgrOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjZFMUI5MDQ1MEM3MjExRTY4MTcyRDlCOEZDMDU3Rjc3IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjZFMUI5MDQ2MEM3MjExRTY4MTcyRDlCOEZDMDU3Rjc3Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NkUxQjkwNDMwQzcyMTFFNjgxNzJEOUI4RkMwNTdGNzciIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NkUxQjkwNDQwQzcyMTFFNjgxNzJEOUI4RkMwNTdGNzciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6gw/inAAAAVklEQVR42uzWUQ2AMAxF0Y5MxCThDI1TMAXwCXjg74VzHZw0TVslSZL039qeDljhgH6FA7YCAAAAAABIvsR3OmAc4c/cM8MnUKclBgAAAAAAAPjaK8AAbScGyes+6bEAAAAASUVORK5CYII5OTg=", + + "ES": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAAArCAIAAABHOBkQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkRGRTFGQzcyMEQxRTExRTY4ODAyRUM0Q0I3OUUwQUMzIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkRGRTFGQzczMEQxRTExRTY4ODAyRUM0Q0I3OUUwQUMzIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6REZFMUZDNzAwRDFFMTFFNjg4MDJFQzRDQjc5RTBBQzMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6REZFMUZDNzEwRDFFMTFFNjg4MDJFQzRDQjc5RTBBQzMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5CGIEmAAAD1UlEQVR42uyYy28bRRzHfzOzD7/Wie3EdtIkdkwSkTRt0iRSlJKKJqhCnJBAiAM3JLhx4QQ3uCP+A269IIGQECFItEhBrVFJBQ1NaVqTuCHOy0lsK2t7nzPDxs0BboYgY4sdzUr7mFnNZ3+v76yQ9vdBKzcMLd5cABfABXABXIAzNYFqqLUBwjNaSwMgvtziLgTGWfBrnbViEKOTqZxBXsVAaq9B/5UF/v7SOce6JaiGvF8Rf9oOzQ/kFYF5RMvpzrPmBkBQNaStY6+qiUS3pLLu14Dl9PskFG4zvQJPRhyLsCYGwHBoeDJfIfEhOgoIeMOrTVd+vNVujVF6iKovku450YMN4E0YA46Li+C4e7ytIoWMrIEqPqM6bnFcKE0w1TIfW6S7s+yRTZBqIxuXRm/VtXpG0c1vBUzghWsWeGHpLlnelAUdhQ71ShsIfnZlmA8PQ7mAbtwQB1J09BIFu5lciAL/nVoEgWGg1et+lseeLGKbHM+/3HdpjCq7WpewVV732Ytrquk3YLS5YoCDgGBwcp5yG8P3W4v+LY9u9uo9m3Lb+UlPcgZ+Xs+pHeJoLKosnp97rVO8ByzTXDGAZAjHXpXJS1YVEQ8tDsv58YAaAIEgdlDyFagSVhAxWBUFg2/7lPGT4tBEFhBhY0nK3vsECE0Xg+YRqDy0pyu9PLu3komNjJjtomLTfMaf/05SfR9qfDt8jXSkGhEG9VmAwHGOkok3yOzrz1xVcZTF8uX+uyyT7PlI969++bU9mSj45M4hs+sCD7zy3rE8YZVYY6Q6+eDNOkYxCPXD3sP24jcPUjMbBwSJx/Y5c/uOPb31bF9sdWWwuKD/tiTt3/ZiNfMF67/4ZGg6h1jzuJAMa5/jQt6feCvaPXRz5VeK44BlcnUnnUxvTkWzzK6IVWA7fOgdabd3Kvtpti+Cuib4mZTivwlgQOoKpeFZRlVmAndyKkOUknhXKSEXZL93JxLpqFQ5WGBx+cLlgeByJJh2rprGAgyUGGi5jy2L4hSAjRwd6hzURhUpIWm52AZYDAsRZLPK0dq7/YHHUhCaqZARuL/bf/2Xy05JjirGyMXN2yVsMMWMTZl4xH50x6dlRKINzukL67MLj0bC3oH3lc/afZUG6Lp6C1lA1GZ795164AEtOUbb4vqBltwVO3aK2cT0uVjxSVfPvq+Dx9dLz/cdeYQydkK4IZKuPi30NN+SU1Fx8l2FU9c63ccINYehtZOnd2xoDIDgZJh/XjnIX235Z3NKjVKjD56LtvamvvCDt7UBiJe3NID7b9QFcAFcABfg/w3whwADALA9jy2I9PhSAAAAAElFTkSuQmCCMTg5Mw==", + + "FR": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAAArCAIAAABHOBkQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkJENDg5REJDMEM3MDExRTZBM0QzODREQzFFNDczOURFIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkJENDg5REJEMEM3MDExRTZBM0QzODREQzFFNDczOURFIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QkQ0ODlEQkEwQzcwMTFFNkEzRDM4NERDMUU0NzM5REUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QkQ0ODlEQkIwQzcwMTFFNkEzRDM4NERDMUU0NzM5REUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5eKs0eAAAAZUlEQVR42uzPMQ2AQBAAwXu610EwQxCAAnrE0GAAETR4IqGABg/XfTIrYJMp0W+R7vmOfZynIT14z+te1lJr+tBF4wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADTVL8AAJaAJpU7NMCAAAAAASUVORK5CYIIxMDEz", + + "GB": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAAAgCAYAAACinX6EAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjFERTU2NTJEMEQyRDExRTY5MUVCQTMxOUMzRTQ4OUQ4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjFERTU2NTJFMEQyRDExRTY5MUVCQTMxOUMzRTQ4OUQ4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MURFNTY1MkIwRDJEMTFFNjkxRUJBMzE5QzNFNDg5RDgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MURFNTY1MkMwRDJEMTFFNjkxRUJBMzE5QzNFNDg5RDgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4LW+oDAAAIsElEQVR42sxZ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", + + "US": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAAAiCAIAAABgN0jYAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkFBOEQ0MUQxMEQyRDExRTY4NzY1OUZEN0M0RTRGNDEzIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkFBOEQ0MUQyMEQyRDExRTY4NzY1OUZEN0M0RTRGNDEzIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QUE4RDQxQ0YwRDJEMTFFNjg3NjU5RkQ3QzRFNEY0MTMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QUE4RDQxRDAwRDJEMTFFNjg3NjU5RkQ3QzRFNEY0MTMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6Xh7i9AAAGGElEQVR42uxX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", +}; \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/resources/locales.js b/examples/react-coffee-warehouse/src/resources/locales.js new file mode 100644 index 00000000..9dfd19bd --- /dev/null +++ b/examples/react-coffee-warehouse/src/resources/locales.js @@ -0,0 +1,14 @@ +export const locales = [ + { + locale: 'English', + localeId: 'en-US' + }, + { + locale: 'French', + localeId: 'fr' + }, + { + locale: 'Spanish', + localeId: 'es' + } +]; diff --git a/examples/react-coffee-warehouse/src/resources/orders.js b/examples/react-coffee-warehouse/src/resources/orders.js new file mode 100644 index 00000000..cb55f0f9 --- /dev/null +++ b/examples/react-coffee-warehouse/src/resources/orders.js @@ -0,0 +1,17451 @@ +export const orders = [{ + "customerCompanyName": "Richter Supermarkt", + "customerContactName": "Michael Holz", + "orderTotal": 2490.5, + "orderDate": 1531342800000, + "requiredDate": 1533762000000, + "shippedDate": 1531602000000, + "requiredDateStart": 1533821400000, + "requiredDateEnd": 1533826800000, + "orderID": 10255, + "customerID": "RICSU", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 3, + "freight": 148.33, + "shipName": "Richter Supermarkt", + "shipAddress": "Starenweg 5", + "shipCity": "Genève", + "shipRegion": "", + "shipPostalCode": "1204", + "shipCountry": "Switzerland" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 1873.8, + "orderDate": 1532293200000, + "requiredDate": 1534712400000, + "shippedDate": 1532984400000, + "requiredDateStart": 1534766400000, + "requiredDateEnd": 1534771800000, + "orderID": 10263, + "customerID": "ERNSH", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 3, + "freight": 146.06, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 5275.715, + "orderDate": 1538946000000, + "requiredDate": 1541368800000, + "shippedDate": 1539118800000, + "requiredDateStart": 1541415600000, + "requiredDateEnd": 1541421000000, + "orderID": 10324, + "customerID": "SAVEA", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 1, + "freight": 214.27, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Bon app'", + "customerContactName": "Laurence Lebihan", + "orderTotal": 88.5, + "orderDate": 1539637200000, + "requiredDate": 1543269600000, + "shippedDate": 1540069200000, + "requiredDateStart": 1543312800000, + "requiredDateEnd": 1543316400000, + "orderID": 10331, + "customerID": "BONAP", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 1, + "freight": 10.19, + "shipName": "Bon app-", + "shipAddress": "12, rue des Bouchers", + "shipCity": "Marseille", + "shipRegion": "", + "shipPostalCode": "13008", + "shipCountry": "France" +}, { + "customerCompanyName": "Familia Arquibaldo", + "customerContactName": "Aria Cruz", + "orderTotal": 166, + "orderDate": 1545084000000, + "requiredDate": 1546293600000, + "shippedDate": 1545688800000, + "requiredDateStart": 1546347600000, + "requiredDateEnd": 1546353000000, + "orderID": 10386, + "customerID": "FAMIA", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 3, + "freight": 13.99, + "shipName": "Familia Arquibaldo", + "shipAddress": "Rua Orós, 92", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05442-030", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Bottom-Dollar Markets", + "customerContactName": "Elizabeth Lincoln", + "orderTotal": 966.8, + "orderDate": 1547071200000, + "requiredDate": 1549490400000, + "shippedDate": 1548021600000, + "requiredDateStart": 1549530000000, + "requiredDateEnd": 1549533600000, + "orderID": 10411, + "customerID": "BOTTM", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 3, + "freight": 23.65, + "shipName": "Bottom-Dollar Markets", + "shipAddress": "23 Tsawassen Blvd.", + "shipCity": "Tsawassen", + "shipRegion": "BC", + "shipPostalCode": "T2F 8M4", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Suprêmes délices", + "customerContactName": "Pascale Cartrain", + "orderTotal": 1505.18, + "orderDate": 1552514400000, + "requiredDate": 1554930000000, + "shippedDate": 1554325200000, + "requiredDateStart": 1554989400000, + "requiredDateEnd": 1554991200000, + "orderID": 10475, + "customerID": "SUPRD", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 1, + "freight": 68.52, + "shipName": "Suprêmes délices", + "shipAddress": "Boulevard Tirou, 255", + "shipCity": "Charleroi", + "shipRegion": "", + "shipPostalCode": "B-6000", + "shipCountry": "Belgium" +}, { + "customerCompanyName": "Blauer See Delikatessen", + "customerContactName": "Hanna Moos", + "orderTotal": 149, + "orderDate": 1554757200000, + "requiredDate": 1557176400000, + "shippedDate": 1555362000000, + "requiredDateStart": 1557228600000, + "requiredDateEnd": 1557232200000, + "orderID": 10501, + "customerID": "BLAUS", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 3, + "freight": 8.85, + "shipName": "Blauer See Delikatessen", + "shipAddress": "Forsterstr. 57", + "shipCity": "Mannheim", + "shipRegion": "", + "shipPostalCode": "68306", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Königlich Essen", + "customerContactName": "Philip Cramer", + "orderTotal": 415.8, + "orderDate": 1555275600000, + "requiredDate": 1557694800000, + "shippedDate": 1556744400000, + "requiredDateStart": 1557748800000, + "requiredDateEnd": 1557754200000, + "orderID": 10506, + "customerID": "KOENE", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 2, + "freight": 21.19, + "shipName": "Königlich Essen", + "shipAddress": "Maubelstr. 90", + "shipCity": "Brandenburg", + "shipRegion": "", + "shipPostalCode": "14776", + "shipCountry": "Germany" +}, { + "customerCompanyName": "B's Beverages", + "customerContactName": "Victoria Ashworth", + "orderTotal": 139.8, + "orderDate": 1557867600000, + "requiredDate": 1560286800000, + "shippedDate": 1557954000000, + "requiredDateStart": 1560337200000, + "requiredDateEnd": 1560342600000, + "orderID": 10538, + "customerID": "BSBEV", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 3, + "freight": 4.87, + "shipName": "B-s Beverages", + "shipAddress": "Fauntleroy Circus", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "EC2 5NT", + "shipCountry": "UK" +}, { + "customerCompanyName": "Lehmanns Marktstand", + "customerContactName": "Renate Messner", + "orderTotal": 1152.5, + "orderDate": 1559509200000, + "requiredDate": 1560718800000, + "shippedDate": 1559768400000, + "requiredDateStart": 1560771000000, + "requiredDateEnd": 1560772800000, + "orderID": 10557, + "customerID": "LEHMS", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 2, + "freight": 96.72, + "shipName": "Lehmanns Marktstand", + "shipAddress": "Magazinweg 7", + "shipCity": "Frankfurt a.M.", + "shipRegion": "", + "shipPostalCode": "60528", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Blondesddsl père et fils", + "customerContactName": "Frédérique Citeaux", + "orderTotal": 1761, + "orderDate": 1560286800000, + "requiredDate": 1562706000000, + "shippedDate": 1560805200000, + "requiredDateStart": 1562758200000, + "requiredDateEnd": 1562761800000, + "orderID": 10566, + "customerID": "BLONP", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 1, + "freight": 88.4, + "shipName": "Blondel père et fils", + "shipAddress": "24, place Kléber", + "shipCity": "Strasbourg", + "shipRegion": "", + "shipPostalCode": "67000", + "shipCountry": "France" +}, { + "customerCompanyName": "Trail's Head Gourmet Provisioners", + "customerContactName": "Helvetius Nagy", + "orderTotal": 569, + "orderDate": 1561237200000, + "requiredDate": 1564866000000, + "shippedDate": 1561842000000, + "requiredDateStart": 1564907400000, + "requiredDateEnd": 1564911000000, + "orderID": 10577, + "customerID": "TRAIH", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 2, + "freight": 25.41, + "shipName": "Trail-s Head Gourmet Provisioners", + "shipAddress": "722 DaVinci Blvd.", + "shipCity": "Kirkland", + "shipRegion": "WA", + "shipPostalCode": "98034", + "shipCountry": "USA" +}, { + "customerCompanyName": "Reggiani Caseifici", + "customerContactName": "Maurizio Moroni", + "orderTotal": 23.8, + "orderDate": 1562014800000, + "requiredDate": 1564434000000, + "shippedDate": 1562619600000, + "requiredDateStart": 1564473600000, + "requiredDateEnd": 1564477200000, + "orderID": 10586, + "customerID": "REGGC", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 1, + "freight": 0.48, + "shipName": "Reggiani Caseifici", + "shipAddress": "Strada Provinciale 124", + "shipCity": "Reggio Emilia", + "shipRegion": "", + "shipPostalCode": "42100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Hungry Owl All-Night Grocers", + "customerContactName": "Patricia McKenna", + "orderTotal": 1446, + "orderDate": 1566853200000, + "requiredDate": 1570482000000, + "shippedDate": 1567458000000, + "requiredDateStart": 1570534200000, + "requiredDateEnd": 1570537800000, + "orderID": 10646, + "customerID": "HUNGO", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 3, + "freight": 142.33, + "shipName": "Hungry Owl All-Night Grocers", + "shipAddress": "8 Johnstown Road", + "shipCity": "Cork", + "shipRegion": "Co. Cork", + "shipPostalCode": "", + "shipCountry": "Ireland" +}, { + "customerCompanyName": "Berglunds snabbköp", + "customerContactName": "Christina Berglund", + "orderTotal": 3815.25, + "orderDate": 1568667600000, + "requiredDate": 1569877200000, + "shippedDate": 1569445200000, + "requiredDateStart": 1569925800000, + "requiredDateEnd": 1569927600000, + "orderID": 10672, + "customerID": "BERGS", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 2, + "freight": 95.75, + "shipName": "Berglunds snabbköp", + "shipAddress": "Berguvsvägen  8", + "shipCity": "Luleå", + "shipRegion": "", + "shipPostalCode": "S-958 22", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Hungry Owl All-Night Grocers", + "customerContactName": "Patricia McKenna", + "orderTotal": 4960.9, + "orderDate": 1569790800000, + "requiredDate": 1572213600000, + "shippedDate": 1572386400000, + "requiredDateStart": 1572271200000, + "requiredDateEnd": 1572273000000, + "orderID": 10687, + "customerID": "HUNGO", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 2, + "freight": 296.43, + "shipName": "Hungry Owl All-Night Grocers", + "shipAddress": "8 Johnstown Road", + "shipCity": "Cork", + "shipRegion": "Co. Cork", + "shipPostalCode": "", + "shipCountry": "Ireland" +}, { + "customerCompanyName": "HILARION-Abastos", + "customerContactName": "Carlos Hernández", + "orderTotal": 378, + "orderDate": 1571086800000, + "requiredDate": 1573509600000, + "shippedDate": 1574028000000, + "requiredDateStart": 1573569000000, + "requiredDateEnd": 1573574400000, + "orderID": 10705, + "customerID": "HILAA", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 2, + "freight": 3.52, + "shipName": "HILARION-Abastos", + "shipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "shipCity": "San Cristóbal", + "shipRegion": "Táchira", + "shipPostalCode": "5022", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Hungry Owl All-Night Grocers", + "customerContactName": "Patricia McKenna", + "orderTotal": 997, + "orderDate": 1573423200000, + "requiredDate": 1575842400000, + "shippedDate": 1574287200000, + "requiredDateStart": 1575892800000, + "requiredDateEnd": 1575894600000, + "orderID": 10736, + "customerID": "HUNGO", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 2, + "freight": 44.1, + "shipName": "Hungry Owl All-Night Grocers", + "shipAddress": "8 Johnstown Road", + "shipCity": "Cork", + "shipRegion": "Co. Cork", + "shipPostalCode": "", + "shipCountry": "Ireland" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 4529.8, + "orderDate": 1574028000000, + "requiredDate": 1576447200000, + "shippedDate": 1574805600000, + "requiredDateStart": 1576488600000, + "requiredDateEnd": 1576492200000, + "orderID": 10745, + "customerID": "QUICK", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 1, + "freight": 3.52, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Wartian Herkku", + "customerContactName": "Pirkko Koskitalo", + "orderTotal": 1590.5625, + "orderDate": 1574287200000, + "requiredDate": 1576706400000, + "shippedDate": 1574546400000, + "requiredDateStart": 1576765800000, + "requiredDateEnd": 1576771200000, + "orderID": 10750, + "customerID": "WARTH", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 1, + "freight": 79.3, + "shipName": "Wartian Herkku", + "shipAddress": "Torikatu 38", + "shipCity": "Oulu", + "shipRegion": "", + "shipPostalCode": "90110", + "shipCountry": "Finland" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 344, + "orderDate": 1575928800000, + "requiredDate": 1578348000000, + "shippedDate": 1577916000000, + "requiredDateStart": 1578402000000, + "requiredDateEnd": 1578407400000, + "orderID": 10771, + "customerID": "ERNSH", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 2, + "freight": 11.19, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Cactus Comidas para llevar", + "customerContactName": "Patricio Simpson", + "orderTotal": 12.5, + "orderDate": 1576533600000, + "requiredDate": 1578952800000, + "shippedDate": 1576965600000, + "requiredDateStart": 1579010400000, + "requiredDateEnd": 1579015800000, + "orderID": 10782, + "customerID": "CACTU", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 3, + "freight": 1.1, + "shipName": "Cactus Comidas para llevar", + "shipAddress": "Cerrito 333", + "shipCity": "Buenos Aires", + "shipRegion": "", + "shipPostalCode": "1010", + "shipCountry": "Argentina" +}, { + "customerCompanyName": "Königlich Essen", + "customerContactName": "Philip Cramer", + "orderTotal": 1553.5, + "orderDate": 1577311200000, + "requiredDate": 1580940000000, + "shippedDate": 1578175200000, + "requiredDateStart": 1580983200000, + "requiredDateEnd": 1580985000000, + "orderID": 10799, + "customerID": "KOENE", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 3, + "freight": 30.76, + "shipName": "Königlich Essen", + "shipAddress": "Maubelstr. 90", + "shipCity": "Brandenburg", + "shipRegion": "", + "shipPostalCode": "14776", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Rancho grande", + "customerContactName": "Sergio Gutiérrez", + "orderTotal": 932, + "orderDate": 1578866400000, + "requiredDate": 1580076000000, + "shippedDate": 1580767200000, + "requiredDateStart": 1580133600000, + "requiredDateEnd": 1580139000000, + "orderID": 10828, + "customerID": "RANCH", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 1, + "freight": 90.85, + "shipName": "Rancho grande", + "shipAddress": "Av. del Libertador 900", + "shipCity": "Buenos Aires", + "shipRegion": "", + "shipPostalCode": "1010", + "shipCountry": "Argentina" +}, { + "customerCompanyName": "Island Trading", + "customerContactName": "Helen Bennett", + "orderTotal": 1764, + "orderDate": 1578866400000, + "requiredDate": 1581285600000, + "shippedDate": 1579730400000, + "requiredDateStart": 1581332400000, + "requiredDateEnd": 1581334200000, + "orderID": 10829, + "customerID": "ISLAT", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 1, + "freight": 154.72, + "shipName": "Island Trading", + "shipAddress": "Garden House Crowther Way", + "shipCity": "Cowes", + "shipRegion": "Isle of Wight", + "shipPostalCode": "PO31 7PJ", + "shipCountry": "UK" +}, { + "customerCompanyName": "Berglunds snabbköp", + "customerContactName": "Christina Berglund", + "orderTotal": 1064.5, + "orderDate": 1579125600000, + "requiredDate": 1581544800000, + "shippedDate": 1579730400000, + "requiredDateStart": 1581595200000, + "requiredDateEnd": 1581600600000, + "orderID": 10837, + "customerID": "BERGS", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 3, + "freight": 13.32, + "shipName": "Berglunds snabbköp", + "shipAddress": "Berguvsvägen  8", + "shipCity": "Luleå", + "shipRegion": "", + "shipPostalCode": "S-958 22", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Königlich Essen", + "customerContactName": "Philip Cramer", + "orderTotal": 967.819, + "orderDate": 1579730400000, + "requiredDate": 1582149600000, + "shippedDate": 1580335200000, + "requiredDateStart": 1582201800000, + "requiredDateEnd": 1582207200000, + "orderID": 10849, + "customerID": "KOENE", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 2, + "freight": 0.56, + "shipName": "Königlich Essen", + "shipAddress": "Maubelstr. 90", + "shipCity": "Brandenburg", + "shipRegion": "", + "shipPostalCode": "14776", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Blauer See Delikatessen", + "customerContactName": "Hanna Moos", + "orderTotal": 625, + "orderDate": 1580076000000, + "requiredDate": 1582495200000, + "shippedDate": 1580680800000, + "requiredDateStart": 1582551000000, + "requiredDateEnd": 1582554600000, + "orderID": 10853, + "customerID": "BLAUS", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 2, + "freight": 53.83, + "shipName": "Blauer See Delikatessen", + "shipAddress": "Forsterstr. 57", + "shipCity": "Mannheim", + "shipRegion": "", + "shipPostalCode": "68306", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Bon app'", + "customerContactName": "Laurence Lebihan", + "orderTotal": 1979.23, + "orderDate": 1580853600000, + "requiredDate": 1583359200000, + "shippedDate": 1581285600000, + "requiredDateStart": 1583402400000, + "requiredDateEnd": 1583404200000, + "orderID": 10871, + "customerID": "BONAP", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 2, + "freight": 112.27, + "shipName": "Bon app-", + "shipAddress": "12, rue des Bouchers", + "shipCity": "Marseille", + "shipRegion": "", + "shipPostalCode": "13008", + "shipCountry": "France" +}, { + "customerCompanyName": "Rattlesnake Canyon Grocery", + "customerContactName": "Paula Wilson", + "orderTotal": 11380, + "orderDate": 1581804000000, + "requiredDate": 1584309600000, + "shippedDate": 1582408800000, + "requiredDateStart": 1584361800000, + "requiredDateEnd": 1584367200000, + "orderID": 10889, + "customerID": "RATTC", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 3, + "freight": 280.61, + "shipName": "Rattlesnake Canyon Grocery", + "shipAddress": "2817 Milton Dr.", + "shipCity": "Albuquerque", + "shipRegion": "NM", + "shipPostalCode": "87110", + "shipCountry": "USA" +}, { + "customerCompanyName": "Königlich Essen", + "customerContactName": "Philip Cramer", + "orderTotal": 5502.11, + "orderDate": 1581976800000, + "requiredDate": 1584482400000, + "shippedDate": 1582149600000, + "requiredDateStart": 1584540000000, + "requiredDateEnd": 1584541800000, + "orderID": 10893, + "customerID": "KOENE", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 2, + "freight": 77.78, + "shipName": "Königlich Essen", + "shipAddress": "Maubelstr. 90", + "shipCity": "Brandenburg", + "shipRegion": "", + "shipPostalCode": "14776", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Wellington Importadora", + "customerContactName": "Paula Parente", + "orderTotal": 342, + "orderDate": 1582495200000, + "requiredDate": 1585000800000, + "shippedDate": 1583445600000, + "requiredDateStart": 1585053000000, + "requiredDateEnd": 1585058400000, + "orderID": 10905, + "customerID": "WELLI", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 2, + "freight": 13.72, + "shipName": "Wellington Importadora", + "shipAddress": "Rua do Mercado, 12", + "shipCity": "Resende", + "shipRegion": "SP", + "shipPostalCode": "08737-363", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Reggiani Caseifici", + "customerContactName": "Maurizio Moroni", + "orderTotal": 560, + "orderDate": 1583877600000, + "requiredDate": 1586293200000, + "shippedDate": 1584482400000, + "requiredDateStart": 1586332800000, + "requiredDateEnd": 1586334600000, + "orderID": 10942, + "customerID": "REGGC", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 3, + "freight": 17.95, + "shipName": "Reggiani Caseifici", + "shipAddress": "Strada Provinciale 124", + "shipCity": "Reggio Emilia", + "shipRegion": "", + "shipPostalCode": "42100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Richter Supermarkt", + "customerContactName": "Michael Holz", + "orderTotal": 458.755, + "orderDate": 1584309600000, + "requiredDate": 1587934800000, + "shippedDate": 1586206800000, + "requiredDateStart": 1587978000000, + "requiredDateEnd": 1587979800000, + "orderID": 10951, + "customerID": "RICSU", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 2, + "freight": 30.85, + "shipName": "Richter Supermarkt", + "shipAddress": "Starenweg 5", + "shipCity": "Genève", + "shipRegion": "", + "shipPostalCode": "1204", + "shipCountry": "Switzerland" +}, { + "customerCompanyName": "Around the Horn", + "customerContactName": "Thomas Hardy", + "orderTotal": 4441.25, + "orderDate": 1584309600000, + "requiredDate": 1585515600000, + "shippedDate": 1585087200000, + "requiredDateStart": 1585560600000, + "requiredDateEnd": 1585562400000, + "orderID": 10953, + "customerID": "AROUT", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 2, + "freight": 23.72, + "shipName": "Around the Horn", + "shipAddress": "Brook Farm Stratford St. Mary", + "shipCity": "Colchester", + "shipRegion": "Essex", + "shipPostalCode": "CO7 6JX", + "shipCountry": "UK" +}, { + "customerCompanyName": "Furia Bacalhau e Frutos do Mar", + "customerContactName": "Lino Rodriguez", + "orderTotal": 57.8, + "orderDate": 1584568800000, + "requiredDate": 1586984400000, + "shippedDate": 1585173600000, + "requiredDateStart": 1587043800000, + "requiredDateEnd": 1587045600000, + "orderID": 10963, + "customerID": "FURIB", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 3, + "freight": 2.7, + "shipName": "Furia Bacalhau e Frutos do Mar", + "shipAddress": "Jardim das rosas n. 32", + "shipCity": "Lisboa", + "shipRegion": "", + "shipPostalCode": "1675", + "shipCountry": "Portugal" +}, { + "customerCompanyName": "Bólido Comidas preparadas", + "customerContactName": "Martín Sommer", + "orderTotal": 224, + "orderDate": 1585000800000, + "requiredDate": 1586206800000, + "shippedDate": 1587675600000, + "requiredDateStart": 1586246400000, + "requiredDateEnd": 1586248200000, + "orderID": 10970, + "customerID": "BOLID", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 1, + "freight": 16.16, + "shipName": "Bólido Comidas preparadas", + "shipAddress": "C/ Araquil, 67", + "shipCity": "Madrid", + "shipRegion": "", + "shipPostalCode": "28023", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Maison Dewey", + "customerContactName": "Catherine Dewey", + "orderTotal": 1303.195, + "orderDate": 1585173600000, + "requiredDate": 1587589200000, + "shippedDate": 1587589200000, + "requiredDateStart": 1587639600000, + "requiredDateEnd": 1587645000000, + "orderID": 10978, + "customerID": "MAISD", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 2, + "freight": 32.82, + "shipName": "Maison Dewey", + "shipAddress": "Rue Joseph-Bens 532", + "shipCity": "Bruxelles", + "shipRegion": "", + "shipPostalCode": "B-1180", + "shipCountry": "Belgium" +}, { + "customerCompanyName": "Around the Horn", + "customerContactName": "Thomas Hardy", + "orderTotal": 491.5, + "orderDate": 1586466000000, + "requiredDate": 1588885200000, + "shippedDate": 1586725200000, + "requiredDateStart": 1588924800000, + "requiredDateEnd": 1588926600000, + "orderID": 11016, + "customerID": "AROUT", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 2, + "freight": 33.8, + "shipName": "Around the Horn", + "shipAddress": "Brook Farm Stratford St. Mary", + "shipCity": "Colchester", + "shipRegion": "Essex", + "shipPostalCode": "CO7 6JX", + "shipCountry": "UK" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 6750, + "orderDate": 1586725200000, + "requiredDate": 1589144400000, + "shippedDate": 1587330000000, + "requiredDateStart": 1589196600000, + "requiredDateEnd": 1589198400000, + "orderID": 11017, + "customerID": "ERNSH", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 2, + "freight": 754.26, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Hanari Carnes", + "customerContactName": "Mario Pontes", + "orderTotal": 1402, + "orderDate": 1586811600000, + "requiredDate": 1589230800000, + "shippedDate": 1588539600000, + "requiredDateStart": 1589283000000, + "requiredDateEnd": 1589286600000, + "orderID": 11022, + "customerID": "HANAR", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 2, + "freight": 6.27, + "shipName": "Hanari Carnes", + "shipAddress": "Rua do Paço, 67", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "05454-876", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Blauer See Delikatessen", + "customerContactName": "Hanna Moos", + "orderTotal": 858, + "orderDate": 1588107600000, + "requiredDate": 1590526800000, + "shippedDate": 1532379600000, + "requiredDateStart": 1590586200000, + "requiredDateEnd": 1590588000000, + "orderID": 11058, + "customerID": "BLAUS", + "employeeID": "a765924f-8ffb-4186-8991-6000a6ce2652", + "teamID": 4, + "shipVia": 3, + "freight": 31.14, + "shipName": "Blauer See Delikatessen", + "shipAddress": "Forsterstr. 57", + "shipCity": "Mannheim", + "shipRegion": "", + "shipPostalCode": "68306", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Rattlesnake Canyon Grocery", + "customerContactName": "Paula Wilson", + "orderTotal": 584, + "orderDate": 1532206800000, + "requiredDate": 1534626000000, + "shippedDate": 1532466000000, + "requiredDateStart": 1534672800000, + "requiredDateEnd": 1534676400000, + "orderID": 10262, + "customerID": "RATTC", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 48.29, + "shipName": "Rattlesnake Canyon Grocery", + "shipAddress": "2817 Milton Dr.", + "shipCity": "Albuquerque", + "shipRegion": "NM", + "shipPostalCode": "87110", + "shipCountry": "USA" +}, { + "customerCompanyName": "GROSELLA-Restaurante", + "customerContactName": "Manuel Pereira", + "orderTotal": 1101.2, + "orderDate": 1532898000000, + "requiredDate": 1535317200000, + "shippedDate": 1533157200000, + "requiredDateStart": 1535369400000, + "requiredDateEnd": 1535371200000, + "orderID": 10268, + "customerID": "GROSR", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 66.29, + "shipName": "GROSELLA-Restaurante", + "shipAddress": "5ª Ave. Los Palos Grandes", + "shipCity": "Caracas", + "shipRegion": "DF", + "shipPostalCode": "1081", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Tortuga Restaurante", + "customerContactName": "Miguel Angel Paolino", + "orderTotal": 420, + "orderDate": 1533675600000, + "requiredDate": 1534885200000, + "shippedDate": 1534194000000, + "requiredDateStart": 1534928400000, + "requiredDateEnd": 1534930200000, + "orderID": 10276, + "customerID": "TORTU", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 13.84, + "shipName": "Tortuga Restaurante", + "shipAddress": "Avda. Azteca 123", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5033", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Berglunds snabbköp", + "customerContactName": "Christina Berglund", + "orderTotal": 1488.8, + "orderDate": 1534021200000, + "requiredDate": 1536440400000, + "shippedDate": 1534366800000, + "requiredDateStart": 1536494400000, + "requiredDateEnd": 1536498000000, + "orderID": 10278, + "customerID": "BERGS", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 92.69, + "shipName": "Berglunds snabbköp", + "shipAddress": "Berguvsvägen  8", + "shipCity": "Luleå", + "shipRegion": "", + "shipPostalCode": "S-958 22", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Lehmanns Marktstand", + "customerContactName": "Renate Messner", + "orderTotal": 351, + "orderDate": 1534107600000, + "requiredDate": 1536526800000, + "shippedDate": 1534366800000, + "requiredDateStart": 1536568200000, + "requiredDateEnd": 1536571800000, + "orderID": 10279, + "customerID": "LEHMS", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 25.83, + "shipName": "Lehmanns Marktstand", + "shipAddress": "Magazinweg 7", + "shipCity": "Frankfurt a.M.", + "shipRegion": "", + "shipPostalCode": "60528", + "shipCountry": "Germany" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 3016, + "orderDate": 1534798800000, + "requiredDate": 1537218000000, + "shippedDate": 1535576400000, + "requiredDateStart": 1537261200000, + "requiredDateEnd": 1537264800000, + "orderID": 10286, + "customerID": "QUICK", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 229.24, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Ricardo Adocicados", + "customerContactName": "Janete Limeira", + "orderTotal": 819, + "orderDate": 1534885200000, + "requiredDate": 1537304400000, + "shippedDate": 1535403600000, + "requiredDateStart": 1537351200000, + "requiredDateEnd": 1537356600000, + "orderID": 10287, + "customerID": "RICAR", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 12.76, + "shipName": "Ricardo Adocicados", + "shipAddress": "Av. Copacabana, 267", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-890", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Comércio Mineiro", + "customerContactName": "Pedro Afonso", + "orderTotal": 2169, + "orderDate": 1535317200000, + "requiredDate": 1537736400000, + "shippedDate": 1535922000000, + "requiredDateStart": 1537776000000, + "requiredDateEnd": 1537781400000, + "orderID": 10290, + "customerID": "COMMI", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 79.7, + "shipName": "Comércio Mineiro", + "shipAddress": "Av. dos Lusíadas, 23", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05432-043", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Die Wandernde Kuh", + "customerContactName": "Rita Müller", + "orderTotal": 755, + "orderDate": 1536440400000, + "requiredDate": 1538859600000, + "shippedDate": 1537131600000, + "requiredDateStart": 1538919000000, + "requiredDateEnd": 1538922600000, + "orderID": 10301, + "customerID": "WANDK", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 45.08, + "shipName": "Die Wandernde Kuh", + "shipAddress": "Adenauerallee 900", + "shipCity": "Stuttgart", + "shipRegion": "", + "shipPostalCode": "70563", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Old World Delicatessen", + "customerContactName": "Rene Phillips", + "orderTotal": 3741.3, + "orderDate": 1536786000000, + "requiredDate": 1539205200000, + "shippedDate": 1539032400000, + "requiredDateStart": 1539248400000, + "requiredDateEnd": 1539250200000, + "orderID": 10305, + "customerID": "OLDWO", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 257.62, + "shipName": "Old World Delicatessen", + "shipAddress": "2743 Bering St.", + "shipCity": "Anchorage", + "shipRegion": "AK", + "shipPostalCode": "99508", + "shipCountry": "USA" +}, { + "customerCompanyName": "The Big Cheese", + "customerContactName": "Liz Nixon", + "orderTotal": 336, + "orderDate": 1537390800000, + "requiredDate": 1539810000000, + "shippedDate": 1537995600000, + "requiredDateStart": 1539865800000, + "requiredDateEnd": 1539869400000, + "orderID": 10310, + "customerID": "THEBI", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 17.52, + "shipName": "The Big Cheese", + "shipAddress": "89 Jefferson Way Suite 2", + "shipCity": "Portland", + "shipRegion": "OR", + "shipPostalCode": "97201", + "shipCountry": "USA" +}, { + "customerCompanyName": "Island Trading", + "customerContactName": "Helen Bennett", + "orderTotal": 240.4, + "orderDate": 1538341200000, + "requiredDate": 1540764000000, + "shippedDate": 1538600400000, + "requiredDateStart": 1540810800000, + "requiredDateEnd": 1540816200000, + "orderID": 10318, + "customerID": "ISLAT", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 4.73, + "shipName": "Island Trading", + "shipAddress": "Garden House Crowther Way", + "shipCity": "Cowes", + "shipRegion": "Isle of Wight", + "shipPostalCode": "PO31 7PJ", + "shipCountry": "UK" +}, { + "customerCompanyName": "Victuailles en stock", + "customerContactName": "Mary Saveley", + "orderTotal": 144.8, + "orderDate": 1540069200000, + "requiredDate": 1542492000000, + "shippedDate": 1540674000000, + "requiredDateStart": 1542549600000, + "requiredDateEnd": 1542555000000, + "orderID": 10334, + "customerID": "VICTE", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 8.56, + "shipName": "Victuailles en stock", + "shipAddress": "2, rue du Commerce", + "shipCity": "Lyon", + "shipRegion": "", + "shipPostalCode": "69004", + "shipCountry": "France" +}, { + "customerCompanyName": "Pericles Comidas clásicas", + "customerContactName": "Guillermo Fernández", + "orderTotal": 568.8, + "orderDate": 1542146400000, + "requiredDate": 1544565600000, + "shippedDate": 1542664800000, + "requiredDateStart": 1544621400000, + "requiredDateEnd": 1544625000000, + "orderID": 10354, + "customerID": "PERIC", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 53.8, + "shipName": "Pericles Comidas clásicas", + "shipAddress": "Calle Dr. Jorge Cash 321", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5033", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Galería del gastrónomo", + "customerContactName": "Eduardo Saavedra", + "orderTotal": 136, + "orderDate": 1543356000000, + "requiredDate": 1546984800000, + "shippedDate": 1546120800000, + "requiredDateStart": 1547033400000, + "requiredDateEnd": 1547037000000, + "orderID": 10366, + "customerID": "GALED", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 10.14, + "shipName": "Galería del gastronómo", + "shipAddress": "Rambla de Cataluña, 23", + "shipCity": "Barcelona", + "shipRegion": "", + "shipPostalCode": "8022", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Split Rail Beer & Ale", + "customerContactName": "Art Braunschweiger", + "orderTotal": 2390.4, + "orderDate": 1543701600000, + "requiredDate": 1546120800000, + "shippedDate": 1544306400000, + "requiredDateStart": 1546180200000, + "requiredDateEnd": 1546182000000, + "orderID": 10369, + "customerID": "SPLIR", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 195.68, + "shipName": "Split Rail Beer & Ale", + "shipAddress": "P.O. Box 555", + "shipCity": "Lander", + "shipRegion": "WY", + "shipPostalCode": "82520", + "shipCountry": "USA" +}, { + "customerCompanyName": "Hungry Owl All-Night Grocers", + "customerContactName": "Patricia McKenna", + "orderTotal": 1313.82, + "orderDate": 1544565600000, + "requiredDate": 1546984800000, + "shippedDate": 1547589600000, + "requiredDateStart": 1547044200000, + "requiredDateEnd": 1547046000000, + "orderID": 10380, + "customerID": "HUNGO", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 35.03, + "shipName": "Hungry Owl All-Night Grocers", + "shipAddress": "8 Johnstown Road", + "shipCity": "Cork", + "shipRegion": "Co. Cork", + "shipPostalCode": "", + "shipCountry": "Ireland" +}, { + "customerCompanyName": "Around the Horn", + "customerContactName": "Thomas Hardy", + "orderTotal": 899, + "orderDate": 1544911200000, + "requiredDate": 1547330400000, + "shippedDate": 1545084000000, + "requiredDateStart": 1547389800000, + "requiredDateEnd": 1547395200000, + "orderID": 10383, + "customerID": "AROUT", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 34.24, + "shipName": "Around the Horn", + "shipAddress": "Brook Farm Stratford St. Mary", + "shipCity": "Colchester", + "shipRegion": "Essex", + "shipPostalCode": "CO7 6JX", + "shipCountry": "UK" +}, { + "customerCompanyName": "Vaffeljernet", + "customerContactName": "Palle Ibsen", + "orderTotal": 1765.6, + "orderDate": 1546207200000, + "requiredDate": 1547416800000, + "shippedDate": 1546898400000, + "requiredDateStart": 1547458200000, + "requiredDateEnd": 1547463600000, + "orderID": 10399, + "customerID": "VAFFE", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 27.36, + "shipName": "Vaffeljernet", + "shipAddress": "Smagsloget 45", + "shipCity": "Århus", + "shipRegion": "", + "shipPostalCode": "8200", + "shipCountry": "Denmark" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 2713.5, + "orderDate": 1546380000000, + "requiredDate": 1550008800000, + "shippedDate": 1547071200000, + "requiredDateStart": 1550059200000, + "requiredDateEnd": 1550064600000, + "orderID": 10402, + "customerID": "ERNSH", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 67.88, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Folies gourmandes", + "customerContactName": "Martine Rancé", + "orderTotal": 1622.4, + "orderDate": 1546898400000, + "requiredDate": 1549317600000, + "shippedDate": 1547416800000, + "requiredDateStart": 1549369800000, + "requiredDateEnd": 1549373400000, + "orderID": 10408, + "customerID": "FOLIG", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 11.26, + "shipName": "Folies gourmandes", + "shipAddress": "184, chaussée de Tournai", + "shipCity": "Lille", + "shipRegion": "", + "shipPostalCode": "59000", + "shipCountry": "France" +}, { + "customerCompanyName": "Wartian Herkku", + "customerContactName": "Pirkko Koskitalo", + "orderTotal": 334.8, + "orderDate": 1547330400000, + "requiredDate": 1549749600000, + "shippedDate": 1547503200000, + "requiredDateStart": 1549789200000, + "requiredDateEnd": 1549791000000, + "orderID": 10412, + "customerID": "WARTH", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 3.77, + "shipName": "Wartian Herkku", + "shipAddress": "Torikatu 38", + "shipCity": "Oulu", + "shipRegion": "", + "shipPostalCode": "90110", + "shipCountry": "Finland" +}, { + "customerCompanyName": "Wartian Herkku", + "customerContactName": "Pirkko Koskitalo", + "orderTotal": 720, + "orderDate": 1547589600000, + "requiredDate": 1550008800000, + "shippedDate": 1548540000000, + "requiredDateStart": 1550064600000, + "requiredDateEnd": 1550068200000, + "orderID": 10416, + "customerID": "WARTH", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 22.72, + "shipName": "Wartian Herkku", + "shipAddress": "Torikatu 38", + "shipCity": "Oulu", + "shipRegion": "", + "shipPostalCode": "90110", + "shipCountry": "Finland" +}, { + "customerCompanyName": "Que Delícia", + "customerContactName": "Bernardo Batista", + "orderTotal": 1194.27, + "orderDate": 1548021600000, + "requiredDate": 1551650400000, + "shippedDate": 1548540000000, + "requiredDateStart": 1551709800000, + "requiredDateEnd": 1551713400000, + "orderID": 10421, + "customerID": "QUEDE", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 99.23, + "shipName": "Que Delícia", + "shipAddress": "Rua da Panificadora, 12", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-673", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Consolidated Holdings", + "customerContactName": "Elizabeth Brown", + "orderTotal": 631.6, + "orderDate": 1549231200000, + "requiredDate": 1552860000000, + "shippedDate": 1549490400000, + "requiredDateStart": 1552899600000, + "requiredDateEnd": 1552905000000, + "orderID": 10435, + "customerID": "CONSH", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 9.21, + "shipName": "Consolidated Holdings", + "shipAddress": "Berkeley Gardens 12  Brewery", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "WX1 6LT", + "shipCountry": "UK" +}, { + "customerCompanyName": "Wartian Herkku", + "customerContactName": "Pirkko Koskitalo", + "orderTotal": 393, + "orderDate": 1549317600000, + "requiredDate": 1551736800000, + "shippedDate": 1549922400000, + "requiredDateStart": 1551781800000, + "requiredDateEnd": 1551787200000, + "orderID": 10437, + "customerID": "WARTH", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 19.97, + "shipName": "Wartian Herkku", + "shipAddress": "Torikatu 38", + "shipCity": "Oulu", + "shipRegion": "", + "shipPostalCode": "90110", + "shipCountry": "Finland" +}, { + "customerCompanyName": "Reggiani Caseifici", + "customerContactName": "Maurizio Moroni", + "orderTotal": 517.44, + "orderDate": 1549922400000, + "requiredDate": 1552341600000, + "shippedDate": 1550095200000, + "requiredDateStart": 1552397400000, + "requiredDateEnd": 1552402800000, + "orderID": 10443, + "customerID": "REGGC", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 13.95, + "shipName": "Reggiani Caseifici", + "shipAddress": "Strada Provinciale 124", + "shipCity": "Reggio Emilia", + "shipRegion": "", + "shipPostalCode": "42100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Victuailles en stock", + "customerContactName": "Mary Saveley", + "orderTotal": 425.12, + "orderDate": 1550527200000, + "requiredDate": 1552946400000, + "shippedDate": 1552255200000, + "requiredDateStart": 1552991400000, + "requiredDateEnd": 1552996800000, + "orderID": 10450, + "customerID": "VICTE", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 7.23, + "shipName": "Victuailles en stock", + "shipAddress": "2, rue du Commerce", + "shipCity": "Lyon", + "shipRegion": "", + "shipPostalCode": "69004", + "shipCountry": "France" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 2018.5, + "orderDate": 1550613600000, + "requiredDate": 1553032800000, + "shippedDate": 1551132000000, + "requiredDateStart": 1553092200000, + "requiredDateEnd": 1553094000000, + "orderID": 10452, + "customerID": "SAVEA", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 140.26, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Wartian Herkku", + "customerContactName": "Pirkko Koskitalo", + "orderTotal": 2684, + "orderDate": 1550959200000, + "requiredDate": 1554584400000, + "shippedDate": 1551564000000, + "requiredDateStart": 1554636600000, + "requiredDateEnd": 1554642000000, + "orderID": 10455, + "customerID": "WARTH", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 180.45, + "shipName": "Wartian Herkku", + "shipAddress": "Torikatu 38", + "shipCity": "Oulu", + "shipRegion": "", + "shipPostalCode": "90110", + "shipCountry": "Finland" +}, { + "customerCompanyName": "Königlich Essen", + "customerContactName": "Philip Cramer", + "orderTotal": 557.6, + "orderDate": 1551045600000, + "requiredDate": 1554670800000, + "shippedDate": 1551304800000, + "requiredDateStart": 1554730200000, + "requiredDateEnd": 1554735600000, + "orderID": 10456, + "customerID": "KOENE", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 8.12, + "shipName": "Königlich Essen", + "shipAddress": "Maubelstr. 90", + "shipCity": "Brandenburg", + "shipRegion": "", + "shipPostalCode": "14776", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Folk och fä HB", + "customerContactName": "Maria Larsson", + "orderTotal": 176.1, + "orderDate": 1551304800000, + "requiredDate": 1553724000000, + "shippedDate": 1551564000000, + "requiredDateStart": 1553781600000, + "requiredDateEnd": 1553785200000, + "orderID": 10460, + "customerID": "FOLKO", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 16.27, + "shipName": "Folk och fä HB", + "shipAddress": "Åkergatan 24", + "shipCity": "Bräcke", + "shipRegion": "", + "shipPostalCode": "S-844 67", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Magazzini Alimentari Riuniti", + "customerContactName": "Giovanni Rovelli", + "orderTotal": 235.2, + "orderDate": 1551823200000, + "requiredDate": 1554238800000, + "shippedDate": 1552255200000, + "requiredDateStart": 1554291000000, + "requiredDateEnd": 1554292800000, + "orderID": 10467, + "customerID": "MAGAA", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 4.93, + "shipName": "Magazzini Alimentari Riuniti", + "shipAddress": "Via Ludovico il Moro 22", + "shipCity": "Bergamo", + "shipRegion": "", + "shipPostalCode": "24100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Seven Seas Imports", + "customerContactName": "Hari Kumar", + "orderTotal": 1036.8, + "orderDate": 1552341600000, + "requiredDate": 1554757200000, + "shippedDate": 1552946400000, + "requiredDateStart": 1554796800000, + "requiredDateEnd": 1554798600000, + "orderID": 10472, + "customerID": "SEVES", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 4.2, + "shipName": "Seven Seas Imports", + "shipAddress": "90 Wadhurst Rd.", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "OX15 4NB", + "shipCountry": "UK" +}, { + "customerCompanyName": "HILARION-Abastos", + "customerContactName": "Carlos Hernández", + "orderTotal": 180.48, + "orderDate": 1552773600000, + "requiredDate": 1555189200000, + "shippedDate": 1553378400000, + "requiredDateStart": 1555232400000, + "requiredDateEnd": 1555234200000, + "orderID": 10476, + "customerID": "HILAA", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 4.41, + "shipName": "HILARION-Abastos", + "shipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "shipCity": "San Cristóbal", + "shipRegion": "Táchira", + "shipPostalCode": "5022", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Ricardo Adocicados", + "customerContactName": "Janete Limeira", + "orderTotal": 1472, + "orderDate": 1553032800000, + "requiredDate": 1555448400000, + "shippedDate": 1553464800000, + "requiredDateStart": 1555493400000, + "requiredDateEnd": 1555498800000, + "orderID": 10481, + "customerID": "RICAR", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 64.33, + "shipName": "Ricardo Adocicados", + "shipAddress": "Av. Copacabana, 267", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-890", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Frankenversand", + "customerContactName": "Peter Franken", + "orderTotal": 1512, + "orderDate": 1553637600000, + "requiredDate": 1556053200000, + "shippedDate": 1554152400000, + "requiredDateStart": 1556109000000, + "requiredDateEnd": 1556114400000, + "orderID": 10488, + "customerID": "FRANK", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 4.93, + "shipName": "Frankenversand", + "shipAddress": "Berliner Platz 43", + "shipCity": "München", + "shipRegion": "", + "shipPostalCode": "80805", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Furia Bacalhau e Frutos do Mar", + "customerContactName": "Lino Rodriguez", + "orderTotal": 259.505, + "orderDate": 1553983200000, + "requiredDate": 1556398800000, + "shippedDate": 1554670800000, + "requiredDateStart": 1556442000000, + "requiredDateEnd": 1556445600000, + "orderID": 10491, + "customerID": "FURIB", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 16.96, + "shipName": "Furia Bacalhau e Frutos do Mar", + "shipAddress": "Jardim das rosas n. 32", + "shipCity": "Lisboa", + "shipRegion": "", + "shipPostalCode": "1675", + "shipCountry": "Portugal" +}, { + "customerCompanyName": "HILARION-Abastos", + "customerContactName": "Carlos Hernández", + "orderTotal": 575, + "orderDate": 1554584400000, + "requiredDate": 1557003600000, + "shippedDate": 1554930000000, + "requiredDateStart": 1557059400000, + "requiredDateEnd": 1557063000000, + "orderID": 10498, + "customerID": "HILAA", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 29.75, + "shipName": "HILARION-Abastos", + "shipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "shipCity": "San Cristóbal", + "shipRegion": "Táchira", + "shipPostalCode": "5022", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Cactus Comidas para llevar", + "customerContactName": "Patricio Simpson", + "orderTotal": 225.5, + "orderDate": 1556485200000, + "requiredDate": 1558904400000, + "shippedDate": 1556744400000, + "requiredDateStart": 1558963800000, + "requiredDateEnd": 1558965600000, + "orderID": 10521, + "customerID": "CACTU", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 17.22, + "shipName": "Cactus Comidas para llevar", + "shipAddress": "Cerrito 333", + "shipCity": "Buenos Aires", + "shipRegion": "", + "shipPostalCode": "1010", + "shipCountry": "Argentina" +}, { + "customerCompanyName": "Folk och fä HB", + "customerContactName": "Maria Larsson", + "orderTotal": 2222.2, + "orderDate": 1557608400000, + "requiredDate": 1560027600000, + "shippedDate": 1558472400000, + "requiredDateStart": 1560067200000, + "requiredDateEnd": 1560072600000, + "orderID": 10533, + "customerID": "FOLKO", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 188.04, + "shipName": "Folk och fä HB", + "shipAddress": "Åkergatan 24", + "shipCity": "Bräcke", + "shipRegion": "", + "shipPostalCode": "S-844 67", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Lehmanns Marktstand", + "customerContactName": "Renate Messner", + "orderTotal": 465.7, + "orderDate": 1557608400000, + "requiredDate": 1560027600000, + "shippedDate": 1557781200000, + "requiredDateStart": 1560076200000, + "requiredDateEnd": 1560078000000, + "orderID": 10534, + "customerID": "LEHMS", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 27.94, + "shipName": "Lehmanns Marktstand", + "shipAddress": "Magazinweg 7", + "shipCity": "Frankfurt a.M.", + "shipRegion": "", + "shipPostalCode": "60528", + "shipCountry": "Germany" +}, { + "customerCompanyName": "LILA-Supermercado", + "customerContactName": "Carlos González", + "orderTotal": 1504.5, + "orderDate": 1558386000000, + "requiredDate": 1560805200000, + "shippedDate": 1558558800000, + "requiredDateStart": 1560850200000, + "requiredDateEnd": 1560855600000, + "orderID": 10543, + "customerID": "LILAS", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 48.17, + "shipName": "LILA-Supermercado", + "shipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "shipCity": "Barquisimeto", + "shipRegion": "Lara", + "shipPostalCode": "3508", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Lazy K Kountry Store", + "customerContactName": "John Steel", + "orderTotal": 210, + "orderDate": 1558472400000, + "requiredDate": 1560891600000, + "shippedDate": 1561496400000, + "requiredDateStart": 1560931200000, + "requiredDateEnd": 1560936600000, + "orderID": 10545, + "customerID": "LAZYK", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 11.92, + "shipName": "Lazy K Kountry Store", + "shipAddress": "12 Orchestra Terrace", + "shipCity": "Walla Walla", + "shipRegion": "WA", + "shipPostalCode": "99362", + "shipCountry": "USA" +}, { + "customerCompanyName": "Frankenversand", + "customerContactName": "Peter Franken", + "orderTotal": 1072.425, + "orderDate": 1559768400000, + "requiredDate": 1562187600000, + "shippedDate": 1560027600000, + "requiredDateStart": 1562238000000, + "requiredDateEnd": 1562239800000, + "orderID": 10560, + "customerID": "FRANK", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 36.65, + "shipName": "Frankenversand", + "shipAddress": "Berliner Platz 43", + "shipCity": "München", + "shipRegion": "", + "shipPostalCode": "80805", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Mère Paillarde", + "customerContactName": "Jean Fresnière", + "orderTotal": 639.9, + "orderDate": 1560200400000, + "requiredDate": 1562619600000, + "shippedDate": 1560805200000, + "requiredDateStart": 1562670000000, + "requiredDateEnd": 1562673600000, + "orderID": 10565, + "customerID": "MEREP", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 7.15, + "shipName": "Mère Paillarde", + "shipAddress": "43 rue St. Laurent", + "shipCity": "Montréal", + "shipRegion": "Québec", + "shipPostalCode": "H1J 1C3", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 550.5875, + "orderDate": 1560718800000, + "requiredDate": 1564347600000, + "shippedDate": 1562187600000, + "requiredDateStart": 1564396200000, + "requiredDateEnd": 1564399800000, + "orderID": 10571, + "customerID": "ERNSH", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 26.06, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Great Lakes Food Market", + "customerContactName": "Howard Snyder", + "orderTotal": 72, + "orderDate": 1562187600000, + "requiredDate": 1564606800000, + "shippedDate": 1563051600000, + "requiredDateStart": 1564648200000, + "requiredDateEnd": 1564650000000, + "orderID": 10589, + "customerID": "GREAL", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 4.42, + "shipName": "Great Lakes Food Market", + "shipAddress": "2732 Baker Blvd.", + "shipCity": "Eugene", + "shipRegion": "OR", + "shipPostalCode": "97403", + "shipCountry": "USA" +}, { + "customerCompanyName": "White Clover Markets", + "customerContactName": "Karl Jablonski", + "orderTotal": 1180.88, + "orderDate": 1562792400000, + "requiredDate": 1565211600000, + "shippedDate": 1565557200000, + "requiredDateStart": 1565265600000, + "requiredDateEnd": 1565269200000, + "orderID": 10596, + "customerID": "WHITC", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 16.34, + "shipName": "White Clover Markets", + "shipAddress": "1029 - 12th Ave. S.", + "shipCity": "Seattle", + "shipRegion": "WA", + "shipPostalCode": "98124", + "shipCountry": "USA" +}, { + "customerCompanyName": "Vaffeljernet", + "customerContactName": "Palle Ibsen", + "orderTotal": 48.75, + "orderDate": 1563310800000, + "requiredDate": 1565730000000, + "shippedDate": 1563742800000, + "requiredDateStart": 1565780400000, + "requiredDateEnd": 1565785800000, + "orderID": 10602, + "customerID": "VAFFE", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 2.92, + "shipName": "Vaffeljernet", + "shipAddress": "Smagsloget 45", + "shipCity": "Århus", + "shipRegion": "", + "shipPostalCode": "8200", + "shipCountry": "Denmark" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 1483, + "orderDate": 1563397200000, + "requiredDate": 1565816400000, + "shippedDate": 1565211600000, + "requiredDateStart": 1565861400000, + "requiredDateEnd": 1565866800000, + "orderID": 10603, + "customerID": "SAVEA", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 48.77, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "La maison d'Asie", + "customerContactName": "Annette Roulet", + "orderTotal": 299.25, + "orderDate": 1564002000000, + "requiredDate": 1566421200000, + "shippedDate": 1565038800000, + "requiredDateStart": 1566473400000, + "requiredDateEnd": 1566477000000, + "orderID": 10610, + "customerID": "LAMAI", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 26.78, + "shipName": "La maison d-Asie", + "shipAddress": "1 rue Alsace-Lorraine", + "shipCity": "Toulouse", + "shipRegion": "", + "shipPostalCode": "31000", + "shipCountry": "France" +}, { + "customerCompanyName": "Blauer See Delikatessen", + "customerContactName": "Hanna Moos", + "orderTotal": 464, + "orderDate": 1564347600000, + "requiredDate": 1566766800000, + "shippedDate": 1564606800000, + "requiredDateStart": 1566810000000, + "requiredDateEnd": 1566815400000, + "orderID": 10614, + "customerID": "BLAUS", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 1.93, + "shipName": "Blauer See Delikatessen", + "shipAddress": "Forsterstr. 57", + "shipCity": "Mannheim", + "shipRegion": "", + "shipPostalCode": "68306", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Frankenversand", + "customerContactName": "Peter Franken", + "orderTotal": 1336.95, + "orderDate": 1565125200000, + "requiredDate": 1567544400000, + "shippedDate": 1565557200000, + "requiredDateStart": 1567596600000, + "requiredDateEnd": 1567600200000, + "orderID": 10623, + "customerID": "FRANK", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 97.18, + "shipName": "Frankenversand", + "shipAddress": "Berliner Platz 43", + "shipCity": "München", + "shipRegion": "", + "shipPostalCode": "80805", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 1185.75, + "orderDate": 1565470800000, + "requiredDate": 1569099600000, + "shippedDate": 1566334800000, + "requiredDateStart": 1569141000000, + "requiredDateEnd": 1569144600000, + "orderID": 10627, + "customerID": "SAVEA", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 107.46, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "La maison d'Asie", + "customerContactName": "Annette Roulet", + "orderTotal": 55.8, + "orderDate": 1565730000000, + "requiredDate": 1568149200000, + "shippedDate": 1565816400000, + "requiredDateStart": 1568208600000, + "requiredDateEnd": 1568212200000, + "orderID": 10631, + "customerID": "LAMAI", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 0.87, + "shipName": "La maison d-Asie", + "shipAddress": "1 rue Alsace-Lorraine", + "shipCity": "Toulouse", + "shipRegion": "", + "shipPostalCode": "31000", + "shipCountry": "France" +}, { + "customerCompanyName": "Die Wandernde Kuh", + "customerContactName": "Rita Müller", + "orderTotal": 589, + "orderDate": 1565730000000, + "requiredDate": 1568149200000, + "shippedDate": 1566162000000, + "requiredDateStart": 1568205000000, + "requiredDateEnd": 1568206800000, + "orderID": 10632, + "customerID": "WANDK", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 41.38, + "shipName": "Die Wandernde Kuh", + "shipAddress": "Adenauerallee 900", + "shipCity": "Stuttgart", + "shipRegion": "", + "shipPostalCode": "70563", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Magazzini Alimentari Riuniti", + "customerContactName": "Giovanni Rovelli", + "orderTotal": 1326.225, + "orderDate": 1566075600000, + "requiredDate": 1568494800000, + "shippedDate": 1566334800000, + "requiredDateStart": 1568536200000, + "requiredDateEnd": 1568541600000, + "orderID": 10635, + "customerID": "MAGAA", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 47.46, + "shipName": "Magazzini Alimentari Riuniti", + "shipAddress": "Via Ludovico il Moro 22", + "shipCity": "Bergamo", + "shipRegion": "", + "shipPostalCode": "24100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Die Wandernde Kuh", + "customerContactName": "Rita Müller", + "orderTotal": 397.8, + "orderDate": 1567285200000, + "requiredDate": 1569704400000, + "shippedDate": 1568149200000, + "requiredDateStart": 1569758400000, + "requiredDateEnd": 1569762000000, + "orderID": 10651, + "customerID": "WANDK", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 20.6, + "shipName": "Die Wandernde Kuh", + "shipAddress": "Adenauerallee 900", + "shipCity": "Stuttgart", + "shipRegion": "", + "shipPostalCode": "70563", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Hungry Coyote Import Store", + "customerContactName": "Yoshi Latimer", + "orderTotal": 1701, + "orderDate": 1567890000000, + "requiredDate": 1570309200000, + "shippedDate": 1571086800000, + "requiredDateStart": 1570348800000, + "requiredDateEnd": 1570350600000, + "orderID": 10660, + "customerID": "HUNGC", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 111.29, + "shipName": "Hungry Coyote Import Store", + "shipAddress": "City Center Plaza 516 Main St.", + "shipCity": "Elgin", + "shipRegion": "OR", + "shipPostalCode": "97827", + "shipCountry": "USA" +}, { + "customerCompanyName": "Blondesddsl père et fils", + "customerContactName": "Frédérique Citeaux", + "orderTotal": 660, + "orderDate": 1569186000000, + "requiredDate": 1571605200000, + "shippedDate": 1569790800000, + "requiredDateStart": 1571648400000, + "requiredDateEnd": 1571650200000, + "orderID": 10679, + "customerID": "BLONP", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 27.94, + "shipName": "Blondel père et fils", + "shipAddress": "24, place Kléber", + "shipCity": "Strasbourg", + "shipRegion": "", + "shipPostalCode": "67000", + "shipCountry": "France" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 4825, + "orderDate": 1570309200000, + "requiredDate": 1572732000000, + "shippedDate": 1570568400000, + "requiredDateStart": 1572786000000, + "requiredDateEnd": 1572787800000, + "orderID": 10694, + "customerID": "QUICK", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 398.36, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "White Clover Markets", + "customerContactName": "Karl Jablonski", + "orderTotal": 996, + "orderDate": 1570482000000, + "requiredDate": 1574114400000, + "shippedDate": 1571000400000, + "requiredDateStart": 1574166600000, + "requiredDateEnd": 1574172000000, + "orderID": 10696, + "customerID": "WHITC", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 102.55, + "shipName": "White Clover Markets", + "shipAddress": "1029 - 12th Ave. S.", + "shipCity": "Seattle", + "shipRegion": "WA", + "shipPostalCode": "98124", + "shipCountry": "USA" +}, { + "customerCompanyName": "Old World Delicatessen", + "customerContactName": "Rene Phillips", + "orderTotal": 1893, + "orderDate": 1571173200000, + "requiredDate": 1573596000000, + "shippedDate": 1571605200000, + "requiredDateStart": 1573653600000, + "requiredDateEnd": 1573659000000, + "orderID": 10706, + "customerID": "OLDWO", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 135.63, + "shipName": "Old World Delicatessen", + "shipAddress": "2743 Bering St.", + "shipCity": "Anchorage", + "shipRegion": "AK", + "shipPostalCode": "99508", + "shipCountry": "USA" +}, { + "customerCompanyName": "Let's Stop N Shop", + "customerContactName": "Jaime Yorres", + "orderTotal": 844.2525, + "orderDate": 1572123600000, + "requiredDate": 1574546400000, + "shippedDate": 1572904800000, + "requiredDateStart": 1574598600000, + "requiredDateEnd": 1574602200000, + "orderID": 10719, + "customerID": "LETSS", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 51.44, + "shipName": "Let-s Stop N Shop", + "shipAddress": "87 Polk St. Suite 5", + "shipCity": "San Francisco", + "shipRegion": "CA", + "shipPostalCode": "94117", + "shipCountry": "USA" +}, { + "customerCompanyName": "Que Delícia", + "customerContactName": "Bernardo Batista", + "orderTotal": 550, + "orderDate": 1572213600000, + "requiredDate": 1573423200000, + "shippedDate": 1572904800000, + "requiredDateStart": 1573473600000, + "requiredDateEnd": 1573477200000, + "orderID": 10720, + "customerID": "QUEDE", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 9.53, + "shipName": "Que Delícia", + "shipAddress": "Rua da Panificadora, 12", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-673", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 1570, + "orderDate": 1572300000000, + "requiredDate": 1575928800000, + "shippedDate": 1572818400000, + "requiredDateStart": 1575979200000, + "requiredDateEnd": 1575981000000, + "orderID": 10722, + "customerID": "SAVEA", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 74.58, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Mère Paillarde", + "customerContactName": "Jean Fresnière", + "orderTotal": 638.5, + "orderDate": 1572386400000, + "requiredDate": 1576015200000, + "shippedDate": 1572904800000, + "requiredDateStart": 1576072800000, + "requiredDateEnd": 1576078200000, + "orderID": 10724, + "customerID": "MEREP", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 57.75, + "shipName": "Mère Paillarde", + "shipAddress": "43 rue St. Laurent", + "shipCity": "Montréal", + "shipRegion": "Québec", + "shipPostalCode": "H1J 1C3", + "shipCountry": "Canada" +}, { + "customerCompanyName": "LINO-Delicateses", + "customerContactName": "Felipe Izquierdo", + "orderTotal": 1850, + "orderDate": 1572818400000, + "requiredDate": 1576447200000, + "shippedDate": 1573682400000, + "requiredDateStart": 1576490400000, + "requiredDateEnd": 1576495800000, + "orderID": 10729, + "customerID": "LINOD", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 141.06, + "shipName": "LINO-Delicateses", + "shipAddress": "Ave. 5 de Mayo Porlamar", + "shipCity": "I. de Margarita", + "shipRegion": "Nueva Esparta", + "shipPostalCode": "4980", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Split Rail Beer & Ale", + "customerContactName": "Art Braunschweiger", + "orderTotal": 1990, + "orderDate": 1574805600000, + "requiredDate": 1577224800000, + "shippedDate": 1575237600000, + "requiredDateStart": 1577275200000, + "requiredDateEnd": 1577277000000, + "orderID": 10756, + "customerID": "SPLIR", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 73.21, + "shipName": "Split Rail Beer & Ale", + "shipAddress": "P.O. Box 555", + "shipCity": "Lander", + "shipRegion": "WY", + "shipPostalCode": "82520", + "shipCountry": "USA" +}, { + "customerCompanyName": "Hanari Carnes", + "customerContactName": "Mario Pontes", + "orderTotal": 236.25, + "orderDate": 1575842400000, + "requiredDate": 1578261600000, + "shippedDate": 1576533600000, + "requiredDateStart": 1578303000000, + "requiredDateEnd": 1578304800000, + "orderID": 10770, + "customerID": "HANAR", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 5.32, + "shipName": "Hanari Carnes", + "shipAddress": "Rua do Paço, 67", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "05454-876", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Queen Cozinha", + "customerContactName": "Lúcia Carvalho", + "orderTotal": 1531.08, + "orderDate": 1576706400000, + "requiredDate": 1579125600000, + "shippedDate": 1577052000000, + "requiredDateStart": 1579177800000, + "requiredDateEnd": 1579183200000, + "orderID": 10786, + "customerID": "QUEEN", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 110.87, + "shipName": "Queen Cozinha", + "shipAddress": "Alameda dos Canàrios, 891", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05487-020", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 2158, + "orderDate": 1577138400000, + "requiredDate": 1579557600000, + "shippedDate": 1579471200000, + "requiredDateStart": 1579609800000, + "requiredDateEnd": 1579613400000, + "orderID": 10795, + "customerID": "ERNSH", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 126.66, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "LINO-Delicateses", + "customerContactName": "Felipe Izquierdo", + "orderTotal": 852, + "orderDate": 1577916000000, + "requiredDate": 1580335200000, + "shippedDate": 1578434400000, + "requiredDateStart": 1580376600000, + "requiredDateEnd": 1580380200000, + "orderID": 10811, + "customerID": "LINOD", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 31.22, + "shipName": "LINO-Delicateses", + "shipAddress": "Ave. 5 de Mayo Porlamar", + "shipCity": "I. de Margarita", + "shipRegion": "Nueva Esparta", + "shipPostalCode": "4980", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Folk och fä HB", + "customerContactName": "Maria Larsson", + "orderTotal": 250.8, + "orderDate": 1578520800000, + "requiredDate": 1580940000000, + "shippedDate": 1580335200000, + "requiredDateStart": 1580994000000, + "requiredDateEnd": 1580995800000, + "orderID": 10824, + "customerID": "FOLKO", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 1.23, + "shipName": "Folk och fä HB", + "shipAddress": "Åkergatan 24", + "shipCity": "Bräcke", + "shipRegion": "", + "shipPostalCode": "S-844 67", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Piccolo und mehr", + "customerContactName": "Georg Pipps", + "orderTotal": 735, + "orderDate": 1579557600000, + "requiredDate": 1581976800000, + "shippedDate": 1579989600000, + "requiredDateStart": 1582018200000, + "requiredDateEnd": 1582021800000, + "orderID": 10844, + "customerID": "PICCO", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 25.22, + "shipName": "Piccolo und mehr", + "shipAddress": "Geislweg 14", + "shipCity": "Salzburg", + "shipRegion": "", + "shipPostalCode": "5020", + "shipCountry": "Austria" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 3812.7, + "orderDate": 1579557600000, + "requiredDate": 1580767200000, + "shippedDate": 1580335200000, + "requiredDateStart": 1580826600000, + "requiredDateEnd": 1580832000000, + "orderID": 10845, + "customerID": "QUICK", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 212.98, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Rattlesnake Canyon Grocery", + "customerContactName": "Paula Wilson", + "orderTotal": 2984, + "orderDate": 1579989600000, + "requiredDate": 1581199200000, + "shippedDate": 1580335200000, + "requiredDateStart": 1581258600000, + "requiredDateEnd": 1581264000000, + "orderID": 10852, + "customerID": "RATTC", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 174.05, + "shipName": "Rattlesnake Canyon Grocery", + "shipAddress": "2817 Milton Dr.", + "shipCity": "Albuquerque", + "shipRegion": "NM", + "shipPostalCode": "87110", + "shipCountry": "USA" +}, { + "customerCompanyName": "Berglunds snabbköp", + "customerContactName": "Christina Berglund", + "orderTotal": 2048.2125, + "orderDate": 1580162400000, + "requiredDate": 1582581600000, + "shippedDate": 1580940000000, + "requiredDateStart": 1582632000000, + "requiredDateEnd": 1582637400000, + "orderID": 10857, + "customerID": "BERGS", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 188.85, + "shipName": "Berglunds snabbköp", + "shipAddress": "Berguvsvägen  8", + "shipCity": "Luleå", + "shipRegion": "", + "shipPostalCode": "S-958 22", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Lehmanns Marktstand", + "customerContactName": "Renate Messner", + "orderTotal": 581, + "orderDate": 1580335200000, + "requiredDate": 1584050400000, + "shippedDate": 1580594400000, + "requiredDateStart": 1584100800000, + "requiredDateEnd": 1584102600000, + "orderID": 10862, + "customerID": "LEHMS", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 53.23, + "shipName": "Lehmanns Marktstand", + "shipAddress": "Magazinweg 7", + "shipCity": "Frankfurt a.M.", + "shipRegion": "", + "shipPostalCode": "60528", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Lonesome Pine Restaurant", + "customerContactName": "Fran Wilson", + "orderTotal": 36, + "orderDate": 1581458400000, + "requiredDate": 1583964000000, + "shippedDate": 1582149600000, + "requiredDateStart": 1584012600000, + "requiredDateEnd": 1584018000000, + "orderID": 10883, + "customerID": "LONEP", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 0.53, + "shipName": "Lonesome Pine Restaurant", + "shipAddress": "89 Chiaroscuro Rd.", + "shipCity": "Portland", + "shipRegion": "OR", + "shipPostalCode": "97219", + "shipCountry": "USA" +}, { + "customerCompanyName": "Galería del gastrónomo", + "customerContactName": "Eduardo Saavedra", + "orderTotal": 70, + "orderDate": 1581544800000, + "requiredDate": 1584050400000, + "shippedDate": 1581804000000, + "requiredDateStart": 1584095400000, + "requiredDateEnd": 1584097200000, + "orderID": 10887, + "customerID": "GALED", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 1.25, + "shipName": "Galería del gastronómo", + "shipAddress": "Rambla de Cataluña, 23", + "shipCity": "Barcelona", + "shipRegion": "", + "shipPostalCode": "8022", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Bon app'", + "customerContactName": "Laurence Lebihan", + "orderTotal": 1788.63, + "orderDate": 1583445600000, + "requiredDate": 1585861200000, + "shippedDate": 1585000800000, + "requiredDateStart": 1585911600000, + "requiredDateEnd": 1585917000000, + "orderID": 10932, + "customerID": "BONAP", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 134.64, + "shipName": "Bon app-", + "shipAddress": "12, rue des Bouchers", + "shipCity": "Marseille", + "shipRegion": "", + "shipPostalCode": "13008", + "shipCountry": "France" +}, { + "customerCompanyName": "Bon app'", + "customerContactName": "Laurence Lebihan", + "orderTotal": 360, + "orderDate": 1583877600000, + "requiredDate": 1586293200000, + "shippedDate": 1584914400000, + "requiredDateStart": 1586334600000, + "requiredDateEnd": 1586336400000, + "orderID": 10940, + "customerID": "BONAP", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 19.77, + "shipName": "Bon app-", + "shipAddress": "12, rue des Bouchers", + "shipCity": "Marseille", + "shipRegion": "", + "shipPostalCode": "13008", + "shipCountry": "France" +}, { + "customerCompanyName": "Folk och fä HB", + "customerContactName": "Maria Larsson", + "orderTotal": 74.4, + "orderDate": 1584396000000, + "requiredDate": 1586811600000, + "shippedDate": 1584655200000, + "requiredDateStart": 1586871000000, + "requiredDateEnd": 1586872800000, + "orderID": 10955, + "customerID": "FOLKO", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 3.26, + "shipName": "Folk och fä HB", + "shipAddress": "Åkergatan 24", + "shipCity": "Bräcke", + "shipRegion": "", + "shipPostalCode": "S-844 67", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "HILARION-Abastos", + "customerContactName": "Carlos Hernández", + "orderTotal": 1762.7, + "orderDate": 1584482400000, + "requiredDate": 1586898000000, + "shippedDate": 1585260000000, + "requiredDateStart": 1586944800000, + "requiredDateEnd": 1586948400000, + "orderID": 10957, + "customerID": "HILAA", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 105.36, + "shipName": "HILARION-Abastos", + "shipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "shipCity": "San Cristóbal", + "shipRegion": "Táchira", + "shipPostalCode": "5022", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Queen Cozinha", + "customerContactName": "Lúcia Carvalho", + "orderTotal": 1119.9, + "orderDate": 1584568800000, + "requiredDate": 1586984400000, + "shippedDate": 1585515600000, + "requiredDateStart": 1587031200000, + "requiredDateEnd": 1587033000000, + "orderID": 10961, + "customerID": "QUEEN", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 104.47, + "shipName": "Queen Cozinha", + "shipAddress": "Alameda dos Canàrios, 891", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05487-020", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 3584, + "orderDate": 1584568800000, + "requiredDate": 1586984400000, + "shippedDate": 1584914400000, + "requiredDateStart": 1587038400000, + "requiredDateEnd": 1587043800000, + "orderID": 10962, + "customerID": "QUICK", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 275.79, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Folk och fä HB", + "customerContactName": "Maria Larsson", + "orderTotal": 2233, + "orderDate": 1585173600000, + "requiredDate": 1587589200000, + "shippedDate": 1586466000000, + "requiredDateStart": 1587634200000, + "requiredDateEnd": 1587636000000, + "orderID": 10977, + "customerID": "FOLKO", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 208.5, + "shipName": "Folk och fä HB", + "shipAddress": "Åkergatan 24", + "shipCity": "Bräcke", + "shipRegion": "", + "shipPostalCode": "S-844 67", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 4813.5, + "orderDate": 1585173600000, + "requiredDate": 1587589200000, + "shippedDate": 1585602000000, + "requiredDateStart": 1587639600000, + "requiredDateEnd": 1587643200000, + "orderID": 10979, + "customerID": "ERNSH", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 353.07, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Océano Atlántico Ltda.", + "customerContactName": "Yvonne Moncada", + "orderTotal": 2220, + "orderDate": 1585515600000, + "requiredDate": 1587934800000, + "shippedDate": 1587416400000, + "requiredDateStart": 1587979800000, + "requiredDateEnd": 1587983400000, + "orderID": 10986, + "customerID": "OCEAN", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 217.86, + "shipName": "Océano Atlántico Ltda.", + "shipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "shipCity": "Buenos Aires", + "shipRegion": "", + "shipPostalCode": "1010", + "shipCountry": "Argentina" +}, { + "customerCompanyName": "Eastern Connection", + "customerContactName": "Ann Devon", + "orderTotal": 2772, + "orderDate": 1585602000000, + "requiredDate": 1588021200000, + "shippedDate": 1586120400000, + "requiredDateStart": 1588060800000, + "requiredDateEnd": 1588064400000, + "orderID": 10987, + "customerID": "EASTC", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 185.48, + "shipName": "Eastern Connection", + "shipAddress": "35 King George", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "WX3 6FW", + "shipCountry": "UK" +}, { + "customerCompanyName": "LILA-Supermercado", + "customerContactName": "Carlos González", + "orderTotal": 1885, + "orderDate": 1585861200000, + "requiredDate": 1589490000000, + "shippedDate": 1586725200000, + "requiredDateStart": 1589542200000, + "requiredDateEnd": 1589547600000, + "orderID": 10997, + "customerID": "LILAS", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 73.91, + "shipName": "LILA-Supermercado", + "shipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "shipCity": "Barquisimeto", + "shipRegion": "Lara", + "shipPostalCode": "3508", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Wolski Zajazd", + "customerContactName": "Zbyszek Piestrzeniewicz", + "orderTotal": 686, + "orderDate": 1585861200000, + "requiredDate": 1587070800000, + "shippedDate": 1587070800000, + "requiredDateStart": 1587121200000, + "requiredDateEnd": 1587123000000, + "orderID": 10998, + "customerID": "WOLZA", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 20.31, + "shipName": "Wolski Zajazd", + "shipAddress": "ul. Filtrowa 68", + "shipCity": "Warszawa", + "shipRegion": "", + "shipPostalCode": "01-012", + "shipCountry": "Poland" +}, { + "customerCompanyName": "Princesa Isabel Vinhos", + "customerContactName": "Isabel de Castro", + "orderTotal": 2633.9, + "orderDate": 1586293200000, + "requiredDate": 1588712400000, + "shippedDate": 1586725200000, + "requiredDateStart": 1588759200000, + "requiredDateEnd": 1588764600000, + "orderID": 11007, + "customerID": "PRINI", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 202.24, + "shipName": "Princesa Isabel Vinhos", + "shipAddress": "Estrada da saúde n. 58", + "shipCity": "Lisboa", + "shipRegion": "", + "shipPostalCode": "1756", + "shipCountry": "Portugal" +}, { + "customerCompanyName": "Old World Delicatessen", + "customerContactName": "Rene Phillips", + "orderTotal": 539.4, + "orderDate": 1587330000000, + "requiredDate": 1590958800000, + "shippedDate": 1587934800000, + "requiredDateStart": 1591016400000, + "requiredDateEnd": 1591021800000, + "orderID": 11034, + "customerID": "OLDWO", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 40.32, + "shipName": "Old World Delicatessen", + "shipAddress": "2743 Bering St.", + "shipCity": "Anchorage", + "shipRegion": "AK", + "shipPostalCode": "99508", + "shipCountry": "USA" +}, { + "customerCompanyName": "Drachenblut Delikatessen", + "customerContactName": "Sven Ottlieb", + "orderTotal": 1692, + "orderDate": 1587330000000, + "requiredDate": 1589749200000, + "shippedDate": 1587502800000, + "requiredDateStart": 1589794200000, + "requiredDateEnd": 1589797800000, + "orderID": 11036, + "customerID": "DRACD", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 3, + "freight": 149.47, + "shipName": "Drachenblut Delikatessen", + "shipAddress": "Walserweg 21", + "shipCity": "Aachen", + "shipRegion": "", + "shipPostalCode": "52066", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Die Wandernde Kuh", + "customerContactName": "Rita Müller", + "orderTotal": 1485.8, + "orderDate": 1587589200000, + "requiredDate": 1590008400000, + "shippedDate": 1587675600000, + "requiredDateStart": 1590066000000, + "requiredDateEnd": 1590067800000, + "orderID": 11046, + "customerID": "WANDK", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 71.64, + "shipName": "Die Wandernde Kuh", + "shipAddress": "Adenauerallee 900", + "shipCity": "Stuttgart", + "shipRegion": "", + "shipPostalCode": "70563", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Folk och fä HB", + "customerContactName": "Maria Larsson", + "orderTotal": 810, + "orderDate": 1587934800000, + "requiredDate": 1590354000000, + "shippedDate": 1588626000000, + "requiredDateStart": 1590404400000, + "requiredDateEnd": 1590409800000, + "orderID": 11050, + "customerID": "FOLKO", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 59.41, + "shipName": "Folk och fä HB", + "shipAddress": "Åkergatan 24", + "shipCity": "Bräcke", + "shipRegion": "", + "shipPostalCode": "S-844 67", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Cactus Comidas para llevar", + "customerContactName": "Patricio Simpson", + "orderTotal": 305, + "orderDate": 1588021200000, + "requiredDate": 1590440400000, + "shippedDate": 1535403600000, + "requiredDateStart": 1590498000000, + "requiredDateEnd": 1590499800000, + "orderID": 11054, + "customerID": "CACTU", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 0.33, + "shipName": "Cactus Comidas para llevar", + "shipAddress": "Cerrito 333", + "shipCity": "Buenos Aires", + "shipRegion": "", + "shipPostalCode": "1010", + "shipCountry": "Argentina" +}, { + "customerCompanyName": "Eastern Connection", + "customerContactName": "Ann Devon", + "orderTotal": 3740, + "orderDate": 1588021200000, + "requiredDate": 1589230800000, + "shippedDate": 1588280400000, + "requiredDateStart": 1589270400000, + "requiredDateEnd": 1589274000000, + "orderID": 11056, + "customerID": "EASTC", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 278.96, + "shipName": "Eastern Connection", + "shipAddress": "35 King George", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "WX3 6FW", + "shipCountry": "UK" +}, { + "customerCompanyName": "LILA-Supermercado", + "customerContactName": "Carlos González", + "orderTotal": 189.42, + "orderDate": 1588280400000, + "requiredDate": 1590699600000, + "shippedDate": 1535403600000, + "requiredDateStart": 1590755400000, + "requiredDateEnd": 1590757200000, + "orderID": 11065, + "customerID": "LILAS", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 1, + "freight": 12.91, + "shipName": "LILA-Supermercado", + "shipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "shipCity": "Barquisimeto", + "shipRegion": "Lara", + "shipPostalCode": "3508", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Queen Cozinha", + "customerContactName": "Lúcia Carvalho", + "orderTotal": 2027.08, + "orderDate": 1588539600000, + "requiredDate": 1590958800000, + "shippedDate": 1535403600000, + "requiredDateStart": 1591011000000, + "requiredDateEnd": 1591016400000, + "orderID": 11068, + "customerID": "QUEEN", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 81.75, + "shipName": "Queen Cozinha", + "shipAddress": "Alameda dos Canàrios, 891", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05487-020", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Richter Supermarkt", + "customerContactName": "Michael Holz", + "orderTotal": 498.1, + "orderDate": 1588712400000, + "requiredDate": 1591131600000, + "shippedDate": 1535403600000, + "requiredDateStart": 1591180200000, + "requiredDateEnd": 1591185600000, + "orderID": 11075, + "customerID": "RICSU", + "employeeID": "ab6704b8-20ed-4881-ab28-96e3d55f7792", + "teamID": 4, + "shipVia": 2, + "freight": 6.19, + "shipName": "Richter Supermarkt", + "shipAddress": "Starenweg 5", + "shipCity": "Genève", + "shipRegion": "", + "shipPostalCode": "1204", + "shipCountry": "Switzerland" +}, { + "customerCompanyName": "B's Beverages", + "customerContactName": "Victoria Ashworth", + "orderTotal": 479.4, + "orderDate": 1535230800000, + "requiredDate": 1537650000000, + "shippedDate": 1535403600000, + "requiredDateStart": 1537698600000, + "requiredDateEnd": 1537704000000, + "orderID": 10289, + "customerID": "BSBEV", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 22.77, + "shipName": "B-s Beverages", + "shipAddress": "Fauntleroy Circus", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "EC2 5NT", + "shipCountry": "UK" +}, { + "customerCompanyName": "Godos Cocina Típica", + "customerContactName": "José Pedro Freyre", + "orderTotal": 1117.8, + "orderDate": 1536613200000, + "requiredDate": 1539032400000, + "shippedDate": 1537218000000, + "requiredDateStart": 1539090000000, + "requiredDateEnd": 1539093600000, + "orderID": 10303, + "customerID": "GODOS", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 107.83, + "shipName": "Godos Cocina Típica", + "shipAddress": "C/ Romero, 33", + "shipCity": "Sevilla", + "shipRegion": "", + "shipPostalCode": "41101", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Ana Trujillo Emparedados y helados", + "customerContactName": "Ana Trujillo", + "orderTotal": 88.8, + "orderDate": 1537218000000, + "requiredDate": 1539637200000, + "shippedDate": 1537736400000, + "requiredDateStart": 1539696600000, + "requiredDateEnd": 1539702000000, + "orderID": 10308, + "customerID": "ANATR", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 1.61, + "shipName": "Ana Trujillo Emparedados y helados", + "shipAddress": "Avda. de la Constitución 2222", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5021", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Tortuga Restaurante", + "customerContactName": "Miguel Angel Paolino", + "orderTotal": 1191.2, + "orderDate": 1538427600000, + "requiredDate": 1540850400000, + "shippedDate": 1539205200000, + "requiredDateStart": 1540909800000, + "requiredDateEnd": 1540915200000, + "orderID": 10319, + "customerID": "TORTU", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 64.5, + "shipName": "Tortuga Restaurante", + "shipAddress": "Avda. Azteca 123", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5033", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Pericles Comidas clásicas", + "customerContactName": "Guillermo Fernández", + "orderTotal": 112, + "orderDate": 1538600400000, + "requiredDate": 1541023200000, + "shippedDate": 1540242000000, + "requiredDateStart": 1541080800000, + "requiredDateEnd": 1541086200000, + "orderID": 10322, + "customerID": "PERIC", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 0.4, + "shipName": "Pericles Comidas clásicas", + "shipAddress": "Calle Dr. Jorge Cash 321", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5033", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Hungry Owl All-Night Grocers", + "customerContactName": "Patricia McKenna", + "orderTotal": 2036.16, + "orderDate": 1540155600000, + "requiredDate": 1542578400000, + "shippedDate": 1540328400000, + "requiredDateStart": 1542619800000, + "requiredDateEnd": 1542623400000, + "orderID": 10335, + "customerID": "HUNGO", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 42.11, + "shipName": "Hungry Owl All-Night Grocers", + "shipAddress": "8 Johnstown Road", + "shipCity": "Cork", + "shipRegion": "Co. Cork", + "shipPostalCode": "", + "shipCountry": "Ireland" +}, { + "customerCompanyName": "Princesa Isabel Vinhos", + "customerContactName": "Isabel de Castro", + "orderTotal": 285.12, + "orderDate": 1540242000000, + "requiredDate": 1542664800000, + "shippedDate": 1540414800000, + "requiredDateStart": 1542720600000, + "requiredDateEnd": 1542722400000, + "orderID": 10336, + "customerID": "PRINI", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 15.51, + "shipName": "Princesa Isabel Vinhos", + "shipAddress": "Estrada da saúde n. 58", + "shipCity": "Lisboa", + "shipRegion": "", + "shipPostalCode": "1756", + "shipCountry": "Portugal" +}, { + "customerCompanyName": "Simons bistro", + "customerContactName": "Jytte Petersen", + "orderTotal": 352.6, + "orderDate": 1540764000000, + "requiredDate": 1543183200000, + "shippedDate": 1541368800000, + "requiredDateStart": 1543222800000, + "requiredDateEnd": 1543224600000, + "orderID": 10341, + "customerID": "SIMOB", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 26.78, + "shipName": "Simons bistro", + "shipAddress": "Vinbæltet 34", + "shipCity": "Kobenhavn", + "shipRegion": "", + "shipPostalCode": "1734", + "shipCountry": "Denmark" +}, { + "customerCompanyName": "Split Rail Beer & Ale", + "customerContactName": "Art Braunschweiger", + "orderTotal": 141.6, + "orderDate": 1541628000000, + "requiredDate": 1544047200000, + "shippedDate": 1542232800000, + "requiredDateStart": 1544104800000, + "requiredDateEnd": 1544106600000, + "orderID": 10349, + "customerID": "SPLIR", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 8.63, + "shipName": "Split Rail Beer & Ale", + "shipAddress": "P.O. Box 555", + "shipCity": "Lander", + "shipRegion": "WY", + "shipPostalCode": "82520", + "shipCountry": "USA" +}, { + "customerCompanyName": "Piccolo und mehr", + "customerContactName": "Georg Pipps", + "orderTotal": 8593.28, + "orderDate": 1542060000000, + "requiredDate": 1544479200000, + "shippedDate": 1543096800000, + "requiredDateStart": 1544520600000, + "requiredDateEnd": 1544524200000, + "orderID": 10353, + "customerID": "PICCO", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 360.63, + "shipName": "Piccolo und mehr", + "shipAddress": "Geislweg 14", + "shipCity": "Salzburg", + "shipRegion": "", + "shipPostalCode": "5020", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Vaffeljernet", + "customerContactName": "Palle Ibsen", + "orderTotal": 834.2, + "orderDate": 1543356000000, + "requiredDate": 1545775200000, + "shippedDate": 1543701600000, + "requiredDateStart": 1545834600000, + "requiredDateEnd": 1545838200000, + "orderID": 10367, + "customerID": "VAFFE", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 13.55, + "shipName": "Vaffeljernet", + "shipAddress": "Smagsloget 45", + "shipCity": "Århus", + "shipRegion": "", + "shipPostalCode": "8200", + "shipCountry": "Denmark" +}, { + "customerCompanyName": "Queen Cozinha", + "customerContactName": "Lúcia Carvalho", + "orderTotal": 1830.78, + "orderDate": 1546812000000, + "requiredDate": 1550440800000, + "shippedDate": 1547330400000, + "requiredDateStart": 1550498400000, + "requiredDateEnd": 1550500200000, + "orderID": 10406, + "customerID": "QUEEN", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 108.04, + "shipName": "Queen Cozinha", + "shipAddress": "Alameda dos Canàrios, 891", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05487-020", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Mère Paillarde", + "customerContactName": "Jean Fresnière", + "orderTotal": 9194.56, + "orderDate": 1548194400000, + "requiredDate": 1550613600000, + "shippedDate": 1548540000000, + "requiredDateStart": 1550665800000, + "requiredDateEnd": 1550667600000, + "orderID": 10424, + "customerID": "MEREP", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 370.61, + "shipName": "Mère Paillarde", + "shipAddress": "43 rue St. Laurent", + "shipCity": "Montréal", + "shipRegion": "Québec", + "shipPostalCode": "H1J 1C3", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Reggiani Caseifici", + "customerContactName": "Maurizio Moroni", + "orderTotal": 192, + "orderDate": 1548626400000, + "requiredDate": 1551045600000, + "shippedDate": 1549231200000, + "requiredDateStart": 1551097800000, + "requiredDateEnd": 1551103200000, + "orderID": 10428, + "customerID": "REGGC", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 11.09, + "shipName": "Reggiani Caseifici", + "shipAddress": "Strada Provinciale 124", + "shipCity": "Reggio Emilia", + "shipRegion": "", + "shipPostalCode": "42100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Suprêmes délices", + "customerContactName": "Pascale Cartrain", + "orderTotal": 3891, + "orderDate": 1551132000000, + "requiredDate": 1553551200000, + "shippedDate": 1551650400000, + "requiredDateStart": 1553607000000, + "requiredDateEnd": 1553612400000, + "orderID": 10458, + "customerID": "SUPRD", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 147.06, + "shipName": "Suprêmes délices", + "shipAddress": "Boulevard Tirou, 255", + "shipCity": "Charleroi", + "shipRegion": "", + "shipPostalCode": "B-6000", + "shipCountry": "Belgium" +}, { + "customerCompanyName": "White Clover Markets", + "customerContactName": "Karl Jablonski", + "orderTotal": 668.8, + "orderDate": 1553378400000, + "requiredDate": 1555794000000, + "shippedDate": 1556139600000, + "requiredDateStart": 1555839000000, + "requiredDateEnd": 1555840800000, + "orderID": 10483, + "customerID": "WHITC", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 15.28, + "shipName": "White Clover Markets", + "shipAddress": "1029 - 12th Ave. S.", + "shipCity": "Seattle", + "shipRegion": "WA", + "shipPostalCode": "98124", + "shipCountry": "USA" +}, { + "customerCompanyName": "HILARION-Abastos", + "customerContactName": "Carlos Hernández", + "orderTotal": 3163.2, + "orderDate": 1553983200000, + "requiredDate": 1556398800000, + "shippedDate": 1554238800000, + "requiredDateStart": 1556445600000, + "requiredDateEnd": 1556451000000, + "orderID": 10490, + "customerID": "HILAA", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 210.19, + "shipName": "HILARION-Abastos", + "shipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "shipCity": "San Cristóbal", + "shipRegion": "Táchira", + "shipPostalCode": "5022", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Tradição Hipermercados", + "customerContactName": "Anabela Domingues", + "orderTotal": 190, + "orderDate": 1554325200000, + "requiredDate": 1556744400000, + "shippedDate": 1554584400000, + "requiredDateStart": 1556796600000, + "requiredDateEnd": 1556800200000, + "orderID": 10496, + "customerID": "TRADH", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 46.77, + "shipName": "Tradiçao Hipermercados", + "shipAddress": "Av. Inês de Castro, 414", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05634-030", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Lehmanns Marktstand", + "customerContactName": "Renate Messner", + "orderTotal": 1380.6, + "orderDate": 1554325200000, + "requiredDate": 1556744400000, + "shippedDate": 1554584400000, + "requiredDateStart": 1556802000000, + "requiredDateEnd": 1556803800000, + "orderID": 10497, + "customerID": "LEHMS", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 36.21, + "shipName": "Lehmanns Marktstand", + "shipAddress": "Magazinweg 7", + "shipCity": "Frankfurt a.M.", + "shipRegion": "", + "shipPostalCode": "60528", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Antonio Moreno Taquería", + "customerContactName": "Antonio Moreno", + "orderTotal": 749.0625, + "orderDate": 1555275600000, + "requiredDate": 1557694800000, + "shippedDate": 1555880400000, + "requiredDateStart": 1557736200000, + "requiredDateEnd": 1557738000000, + "orderID": 10507, + "customerID": "ANTON", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 47.45, + "shipName": "Antonio Moreno Taquería", + "shipAddress": "Mataderos  2312", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5023", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Familia Arquibaldo", + "customerContactName": "Aria Cruz", + "orderTotal": 525.3, + "orderDate": 1555794000000, + "requiredDate": 1558213200000, + "shippedDate": 1556053200000, + "requiredDateStart": 1558265400000, + "requiredDateEnd": 1558267200000, + "orderID": 10512, + "customerID": "FAMIA", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 3.53, + "shipName": "Familia Arquibaldo", + "shipAddress": "Rua Orós, 92", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05442-030", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Die Wandernde Kuh", + "customerContactName": "Rita Müller", + "orderTotal": 1942, + "orderDate": 1555880400000, + "requiredDate": 1559509200000, + "shippedDate": 1556398800000, + "requiredDateStart": 1559563200000, + "requiredDateEnd": 1559566800000, + "orderID": 10513, + "customerID": "WANDK", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 105.65, + "shipName": "Die Wandernde Kuh", + "shipAddress": "Adenauerallee 900", + "shipCity": "Stuttgart", + "shipRegion": "", + "shipPostalCode": "70563", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Santé Gourmet", + "customerContactName": "Jonas Bergulfsen", + "orderTotal": 200, + "orderDate": 1556485200000, + "requiredDate": 1558904400000, + "shippedDate": 1556658000000, + "requiredDateStart": 1558958400000, + "requiredDateEnd": 1558962000000, + "orderID": 10520, + "customerID": "SANTG", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 13.37, + "shipName": "Santé Gourmet", + "shipAddress": "Erling Skakkes gate 78", + "shipCity": "Stavern", + "shipRegion": "", + "shipPostalCode": "4110", + "shipCountry": "Norway" +}, { + "customerCompanyName": "Seven Seas Imports", + "customerContactName": "Hari Kumar", + "orderTotal": 2444.31, + "orderDate": 1556658000000, + "requiredDate": 1559077200000, + "shippedDate": 1559163600000, + "requiredDateStart": 1559120400000, + "requiredDateEnd": 1559124000000, + "orderID": 10523, + "customerID": "SEVES", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 77.63, + "shipName": "Seven Seas Imports", + "shipAddress": "90 Wadhurst Rd.", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "OX15 4NB", + "shipCountry": "UK" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 1503, + "orderDate": 1557003600000, + "requiredDate": 1559422800000, + "shippedDate": 1557176400000, + "requiredDateStart": 1559462400000, + "requiredDateEnd": 1559466000000, + "orderID": 10527, + "customerID": "QUICK", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 41.9, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Océano Atlántico Ltda.", + "customerContactName": "Yvonne Moncada", + "orderTotal": 110, + "orderDate": 1557262800000, + "requiredDate": 1559682000000, + "shippedDate": 1558213200000, + "requiredDateStart": 1559725200000, + "requiredDateEnd": 1559730600000, + "orderID": 10531, + "customerID": "OCEAN", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 8.12, + "shipName": "Océano Atlántico Ltda.", + "shipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "shipCity": "Buenos Aires", + "shipRegion": "", + "shipPostalCode": "1010", + "shipCountry": "Argentina" +}, { + "customerCompanyName": "Eastern Connection", + "customerContactName": "Ann Devon", + "orderTotal": 796.35, + "orderDate": 1557349200000, + "requiredDate": 1559768400000, + "shippedDate": 1557608400000, + "requiredDateStart": 1559808000000, + "requiredDateEnd": 1559813400000, + "orderID": 10532, + "customerID": "EASTC", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 74.46, + "shipName": "Eastern Connection", + "shipAddress": "35 King George", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "WX3 6FW", + "shipCountry": "UK" +}, { + "customerCompanyName": "Godos Cocina Típica", + "customerContactName": "José Pedro Freyre", + "orderTotal": 683.3, + "orderDate": 1558990800000, + "requiredDate": 1561410000000, + "shippedDate": 1559768400000, + "requiredDateStart": 1561469400000, + "requiredDateEnd": 1561471200000, + "orderID": 10550, + "customerID": "GODOS", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 4.32, + "shipName": "Godos Cocina Típica", + "shipAddress": "C/ Romero, 33", + "shipCity": "Sevilla", + "shipRegion": "", + "shipPostalCode": "41101", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Antonio Moreno Taquería", + "customerContactName": "Antonio Moreno", + "orderTotal": 2082, + "orderDate": 1560891600000, + "requiredDate": 1563310800000, + "shippedDate": 1560978000000, + "requiredDateStart": 1563354000000, + "requiredDateEnd": 1563359400000, + "orderID": 10573, + "customerID": "ANTON", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 84.84, + "shipName": "Antonio Moreno Taquería", + "shipAddress": "Mataderos  2312", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5023", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Wellington Importadora", + "customerContactName": "Paula Parente", + "orderTotal": 142.5, + "orderDate": 1561928400000, + "requiredDate": 1564347600000, + "shippedDate": 1562706000000, + "requiredDateStart": 1564398000000, + "requiredDateEnd": 1564399800000, + "orderID": 10585, + "customerID": "WELLI", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 13.41, + "shipName": "Wellington Importadora", + "shipAddress": "Rua do Mercado, 12", + "shipCity": "Resende", + "shipRegion": "SP", + "shipPostalCode": "08737-363", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Lehmanns Marktstand", + "customerContactName": "Renate Messner", + "orderTotal": 1994.4, + "orderDate": 1562619600000, + "requiredDate": 1565038800000, + "shippedDate": 1565643600000, + "requiredDateStart": 1565091000000, + "requiredDateEnd": 1565092800000, + "orderID": 10593, + "customerID": "LEHMS", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 174.2, + "shipName": "Lehmanns Marktstand", + "shipAddress": "Magazinweg 7", + "shipCity": "Frankfurt a.M.", + "shipRegion": "", + "shipPostalCode": "60528", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Piccolo und mehr", + "customerContactName": "Georg Pipps", + "orderTotal": 718.08, + "orderDate": 1562792400000, + "requiredDate": 1565211600000, + "shippedDate": 1563397200000, + "requiredDateStart": 1565258400000, + "requiredDateEnd": 1565263800000, + "orderID": 10597, + "customerID": "PICCO", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 35.12, + "shipName": "Piccolo und mehr", + "shipAddress": "Geislweg 14", + "shipCity": "Salzburg", + "shipRegion": "", + "shipPostalCode": "5020", + "shipCountry": "Austria" +}, { + "customerCompanyName": "HILARION-Abastos", + "customerContactName": "Carlos Hernández", + "orderTotal": 2285, + "orderDate": 1563224400000, + "requiredDate": 1566853200000, + "shippedDate": 1563742800000, + "requiredDateStart": 1566912600000, + "requiredDateEnd": 1566914400000, + "orderID": 10601, + "customerID": "HILAA", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 58.3, + "shipName": "HILARION-Abastos", + "shipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "shipCity": "San Cristóbal", + "shipRegion": "Táchira", + "shipPostalCode": "5022", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Du monde entier", + "customerContactName": "Janine Labrune", + "orderTotal": 424, + "orderDate": 1563915600000, + "requiredDate": 1566334800000, + "shippedDate": 1564434000000, + "requiredDateStart": 1566392400000, + "requiredDateEnd": 1566396000000, + "orderID": 10609, + "customerID": "DUMON", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 1.85, + "shipName": "Du monde entier", + "shipAddress": "67, rue des Cinquante Otages", + "shipCity": "Nantes", + "shipRegion": "", + "shipPostalCode": "44000", + "shipCountry": "France" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 5510.5925, + "orderDate": 1565816400000, + "requiredDate": 1568235600000, + "shippedDate": 1566075600000, + "requiredDateStart": 1568286000000, + "requiredDateEnd": 1568287800000, + "orderID": 10633, + "customerID": "ERNSH", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 477.9, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Santé Gourmet", + "customerContactName": "Jonas Bergulfsen", + "orderTotal": 500, + "orderDate": 1566248400000, + "requiredDate": 1568667600000, + "shippedDate": 1566853200000, + "requiredDateStart": 1568727000000, + "requiredDateEnd": 1568732400000, + "orderID": 10639, + "customerID": "SANTG", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 38.64, + "shipName": "Santé Gourmet", + "shipAddress": "Erling Skakkes gate 78", + "shipCity": "Stavern", + "shipRegion": "", + "shipPostalCode": "4110", + "shipCountry": "Norway" +}, { + "customerCompanyName": "Simons bistro", + "customerContactName": "Jytte Petersen", + "orderTotal": 696, + "orderDate": 1566421200000, + "requiredDate": 1568840400000, + "shippedDate": 1567630800000, + "requiredDateStart": 1568896200000, + "requiredDateEnd": 1568898000000, + "orderID": 10642, + "customerID": "SIMOB", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 41.89, + "shipName": "Simons bistro", + "shipAddress": "Vinbæltet 34", + "shipCity": "Kobenhavn", + "shipRegion": "", + "shipPostalCode": "1734", + "shipCountry": "Denmark" +}, { + "customerCompanyName": "Queen Cozinha", + "customerContactName": "Lúcia Carvalho", + "orderTotal": 1227.02, + "orderDate": 1567630800000, + "requiredDate": 1570050000000, + "shippedDate": 1568062800000, + "requiredDateStart": 1570098600000, + "requiredDateEnd": 1570100400000, + "orderID": 10659, + "customerID": "QUEEN", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 105.81, + "shipName": "Queen Cozinha", + "shipAddress": "Alameda dos Canàrios, 891", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05487-020", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Hungry Owl All-Night Grocers", + "customerContactName": "Patricia McKenna", + "orderTotal": 562.6, + "orderDate": 1567976400000, + "requiredDate": 1570395600000, + "shippedDate": 1568494800000, + "requiredDateStart": 1570437000000, + "requiredDateEnd": 1570442400000, + "orderID": 10661, + "customerID": "HUNGO", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 17.55, + "shipName": "Hungry Owl All-Night Grocers", + "shipAddress": "8 Johnstown Road", + "shipCity": "Cork", + "shipRegion": "Co. Cork", + "shipPostalCode": "", + "shipCountry": "Ireland" +}, { + "customerCompanyName": "Richter Supermarkt", + "customerContactName": "Michael Holz", + "orderTotal": 4666.94, + "orderDate": 1568235600000, + "requiredDate": 1570654800000, + "shippedDate": 1569099600000, + "requiredDateStart": 1570696200000, + "requiredDateEnd": 1570701600000, + "orderID": 10666, + "customerID": "RICSU", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 232.42, + "shipName": "Richter Supermarkt", + "shipAddress": "Starenweg 5", + "shipCity": "Genève", + "shipRegion": "", + "shipPostalCode": "1204", + "shipCountry": "Switzerland" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 1536.8, + "orderDate": 1568235600000, + "requiredDate": 1570654800000, + "shippedDate": 1568840400000, + "requiredDateStart": 1570707000000, + "requiredDateEnd": 1570710600000, + "orderID": 10667, + "customerID": "ERNSH", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 78.09, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 5256.5, + "orderDate": 1569186000000, + "requiredDate": 1571605200000, + "shippedDate": 1571173200000, + "requiredDateStart": 1571657400000, + "requiredDateEnd": 1571659200000, + "orderID": 10678, + "customerID": "SAVEA", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 388.98, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Wilman Kala", + "customerContactName": "Matti Karttunen", + "orderTotal": 642, + "orderDate": 1570395600000, + "requiredDate": 1574028000000, + "shippedDate": 1571000400000, + "requiredDateStart": 1574067600000, + "requiredDateEnd": 1574069400000, + "orderID": 10695, + "customerID": "WILMK", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 16.72, + "shipName": "Wilman Kala", + "shipAddress": "Keskuskatu 45", + "shipCity": "Helsinki", + "shipRegion": "", + "shipPostalCode": "21240", + "shipCountry": "Finland" +}, { + "customerCompanyName": "Chop-suey Chinese", + "customerContactName": "Yang Wang", + "orderTotal": 1890.5, + "orderDate": 1572991200000, + "requiredDate": 1575410400000, + "shippedDate": 1573682400000, + "requiredDateStart": 1575469800000, + "requiredDateEnd": 1575473400000, + "orderID": 10731, + "customerID": "CHOPS", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 96.65, + "shipName": "Chop-suey Chinese", + "shipAddress": "Hauptstr. 31", + "shipCity": "Bern", + "shipRegion": "", + "shipPostalCode": "3012", + "shipCountry": "Switzerland" +}, { + "customerCompanyName": "The Cracker Box", + "customerContactName": "Liu Wong", + "orderTotal": 228, + "orderDate": 1576101600000, + "requiredDate": 1578520800000, + "shippedDate": 1577311200000, + "requiredDateStart": 1578580200000, + "requiredDateEnd": 1578585600000, + "orderID": 10775, + "customerID": "THECR", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 20.25, + "shipName": "The Cracker Box", + "shipAddress": "55 Grizzly Peak Rd.", + "shipCity": "Butte", + "shipRegion": "MT", + "shipPostalCode": "59801", + "shipCountry": "USA" +}, { + "customerCompanyName": "Gourmet Lanchonetes", + "customerContactName": "André Fonseca", + "orderTotal": 224, + "orderDate": 1576360800000, + "requiredDate": 1577570400000, + "shippedDate": 1579557600000, + "requiredDateStart": 1577611800000, + "requiredDateEnd": 1577617200000, + "orderID": 10777, + "customerID": "GOURL", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 3.01, + "shipName": "Gourmet Lanchonetes", + "shipAddress": "Av. Brasil, 442", + "shipCity": "Campinas", + "shipRegion": "SP", + "shipPostalCode": "04876-786", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Drachenblut Delikatessen", + "customerContactName": "Sven Ottlieb", + "orderTotal": 420, + "orderDate": 1577224800000, + "requiredDate": 1579644000000, + "shippedDate": 1578175200000, + "requiredDateStart": 1579690800000, + "requiredDateEnd": 1579692600000, + "orderID": 10797, + "customerID": "DRACD", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 33.35, + "shipName": "Drachenblut Delikatessen", + "shipAddress": "Walserweg 21", + "shipCity": "Aachen", + "shipRegion": "", + "shipPostalCode": "52066", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Wellington Importadora", + "customerContactName": "Paula Parente", + "orderTotal": 140, + "orderDate": 1577829600000, + "requiredDate": 1580248800000, + "shippedDate": 1578348000000, + "requiredDateStart": 1580292000000, + "requiredDateEnd": 1580293800000, + "orderID": 10809, + "customerID": "WELLI", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 4.87, + "shipName": "Wellington Importadora", + "shipAddress": "Rua do Mercado, 12", + "shipCity": "Resende", + "shipRegion": "SP", + "shipPostalCode": "08737-363", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Magazzini Alimentari Riuniti", + "customerContactName": "Giovanni Rovelli", + "orderTotal": 833, + "orderDate": 1578348000000, + "requiredDate": 1580767200000, + "shippedDate": 1578780000000, + "requiredDateStart": 1580823000000, + "requiredDateEnd": 1580828400000, + "orderID": 10818, + "customerID": "MAGAA", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 65.48, + "shipName": "Magazzini Alimentari Riuniti", + "shipAddress": "Via Ludovico il Moro 22", + "shipCity": "Bergamo", + "shipRegion": "", + "shipPostalCode": "24100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 4705.5, + "orderDate": 1579125600000, + "requiredDate": 1581544800000, + "shippedDate": 1579557600000, + "requiredDateStart": 1581600600000, + "requiredDateEnd": 1581602400000, + "orderID": 10836, + "customerID": "ERNSH", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 411.88, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Consolidated Holdings", + "customerContactName": "Elizabeth Brown", + "orderTotal": 931.5, + "orderDate": 1579730400000, + "requiredDate": 1582149600000, + "shippedDate": 1580248800000, + "requiredDateStart": 1582209000000, + "requiredDateEnd": 1582210800000, + "orderID": 10848, + "customerID": "CONSH", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 38.24, + "shipName": "Consolidated Holdings", + "shipAddress": "Berkeley Gardens 12  Brewery", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "WX1 6LT", + "shipCountry": "UK" +}, { + "customerCompanyName": "Queen Cozinha", + "customerContactName": "Lúcia Carvalho", + "orderTotal": 1920.6, + "orderDate": 1580767200000, + "requiredDate": 1583272800000, + "shippedDate": 1582408800000, + "requiredDateStart": 1583319600000, + "requiredDateEnd": 1583321400000, + "orderID": 10868, + "customerID": "QUEEN", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 191.27, + "shipName": "Queen Cozinha", + "shipAddress": "Alameda dos Canàrios, 891", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05487-020", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Bon app'", + "customerContactName": "Laurence Lebihan", + "orderTotal": 917, + "orderDate": 1581199200000, + "requiredDate": 1583704800000, + "shippedDate": 1581458400000, + "requiredDateStart": 1583749800000, + "requiredDateEnd": 1583755200000, + "orderID": 10876, + "customerID": "BONAP", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 60.42, + "shipName": "Bon app-", + "shipAddress": "12, rue des Bouchers", + "shipCity": "Marseille", + "shipRegion": "", + "shipPostalCode": "13008", + "shipCountry": "France" +}, { + "customerCompanyName": "Folk och fä HB", + "customerContactName": "Maria Larsson", + "orderTotal": 1500, + "orderDate": 1581285600000, + "requiredDate": 1585000800000, + "shippedDate": 1581976800000, + "requiredDateStart": 1585058400000, + "requiredDateEnd": 1585063800000, + "orderID": 10880, + "customerID": "FOLKO", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 88.01, + "shipName": "Folk och fä HB", + "shipAddress": "Åkergatan 24", + "shipCity": "Bräcke", + "shipRegion": "", + "shipPostalCode": "S-844 67", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Du monde entier", + "customerContactName": "Janine Labrune", + "orderTotal": 860.1, + "orderDate": 1581804000000, + "requiredDate": 1584309600000, + "shippedDate": 1581976800000, + "requiredDateStart": 1584354600000, + "requiredDateEnd": 1584360000000, + "orderID": 10890, + "customerID": "DUMON", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 32.76, + "shipName": "Du monde entier", + "shipAddress": "67, rue des Cinquante Otages", + "shipCity": "Nantes", + "shipRegion": "", + "shipPostalCode": "44000", + "shipCountry": "France" +}, { + "customerCompanyName": "Lehmanns Marktstand", + "customerContactName": "Renate Messner", + "orderTotal": 368.9325, + "orderDate": 1581890400000, + "requiredDate": 1584396000000, + "shippedDate": 1582063200000, + "requiredDateStart": 1584441000000, + "requiredDateEnd": 1584444600000, + "orderID": 10891, + "customerID": "LEHMS", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 20.37, + "shipName": "Lehmanns Marktstand", + "shipAddress": "Magazinweg 7", + "shipCity": "Frankfurt a.M.", + "shipRegion": "", + "shipPostalCode": "60528", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Maison Dewey", + "customerContactName": "Catherine Dewey", + "orderTotal": 750.5, + "orderDate": 1582063200000, + "requiredDate": 1584568800000, + "shippedDate": 1582754400000, + "requiredDateStart": 1584610200000, + "requiredDateEnd": 1584613800000, + "orderID": 10896, + "customerID": "MAISD", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 32.45, + "shipName": "Maison Dewey", + "shipAddress": "Rue Joseph-Bens 532", + "shipCity": "Bruxelles", + "shipRegion": "", + "shipPostalCode": "B-1180", + "shipCountry": "Belgium" +}, { + "customerCompanyName": "La maison d'Asie", + "customerContactName": "Annette Roulet", + "orderTotal": 748.8, + "orderDate": 1583186400000, + "requiredDate": 1586811600000, + "shippedDate": 1584050400000, + "requiredDateStart": 1586865600000, + "requiredDateEnd": 1586869200000, + "orderID": 10923, + "customerID": "LAMAI", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 68.26, + "shipName": "La maison d-Asie", + "shipAddress": "1 rue Alsace-Lorraine", + "shipCity": "Toulouse", + "shipRegion": "", + "shipPostalCode": "31000", + "shipCountry": "France" +}, { + "customerCompanyName": "Cactus Comidas para llevar", + "customerContactName": "Patricio Simpson", + "orderTotal": 644.8, + "orderDate": 1583791200000, + "requiredDate": 1585000800000, + "shippedDate": 1584050400000, + "requiredDateStart": 1585053000000, + "requiredDateEnd": 1585054800000, + "orderID": 10937, + "customerID": "CACTU", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 31.51, + "shipName": "Cactus Comidas para llevar", + "shipAddress": "Cerrito 333", + "shipCity": "Buenos Aires", + "shipRegion": "", + "shipPostalCode": "1010", + "shipCountry": "Argentina" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 4011.75, + "orderDate": 1583877600000, + "requiredDate": 1586293200000, + "shippedDate": 1584655200000, + "requiredDateStart": 1586347200000, + "requiredDateEnd": 1586352600000, + "orderID": 10941, + "customerID": "SAVEA", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 400.81, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Océano Atlántico Ltda.", + "customerContactName": "Yvonne Moncada", + "orderTotal": 781, + "orderDate": 1584482400000, + "requiredDate": 1586898000000, + "shippedDate": 1585260000000, + "requiredDateStart": 1586948400000, + "requiredDateEnd": 1586950200000, + "orderID": 10958, + "customerID": "OCEAN", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 49.56, + "shipName": "Océano Atlántico Ltda.", + "shipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "shipCity": "Buenos Aires", + "shipRegion": "", + "shipPostalCode": "1010", + "shipCountry": "Argentina" +}, { + "customerCompanyName": "Folk och fä HB", + "customerContactName": "Maria Larsson", + "orderTotal": 4895.4375, + "orderDate": 1585688400000, + "requiredDate": 1588107600000, + "shippedDate": 1586466000000, + "requiredDateStart": 1588152600000, + "requiredDateEnd": 1588154400000, + "orderID": 10993, + "customerID": "FOLKO", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 8.81, + "shipName": "Folk och fä HB", + "shipAddress": "Åkergatan 24", + "shipCity": "Bräcke", + "shipRegion": "", + "shipPostalCode": "S-844 67", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 4680.9, + "orderDate": 1586293200000, + "requiredDate": 1588712400000, + "shippedDate": 1586466000000, + "requiredDateStart": 1588759200000, + "requiredDateEnd": 1588762800000, + "orderID": 11008, + "customerID": "ERNSH", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 79.46, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 12615.05, + "orderDate": 1587070800000, + "requiredDate": 1589490000000, + "shippedDate": 1587934800000, + "requiredDateStart": 1589544000000, + "requiredDateEnd": 1589545800000, + "orderID": 11030, + "customerID": "SAVEA", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 830.75, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Richter Supermarkt", + "customerContactName": "Michael Holz", + "orderTotal": 3232.8, + "orderDate": 1587070800000, + "requiredDate": 1589490000000, + "shippedDate": 1587589200000, + "requiredDateStart": 1589549400000, + "requiredDateEnd": 1589553000000, + "orderID": 11033, + "customerID": "RICSU", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 84.74, + "shipName": "Richter Supermarkt", + "shipAddress": "Starenweg 5", + "shipCity": "Genève", + "shipRegion": "", + "shipPostalCode": "1204", + "shipCountry": "Switzerland" +}, { + "customerCompanyName": "Godos Cocina Típica", + "customerContactName": "José Pedro Freyre", + "orderTotal": 60, + "orderDate": 1587416400000, + "requiredDate": 1589835600000, + "shippedDate": 1587934800000, + "requiredDateStart": 1589882400000, + "requiredDateEnd": 1589886000000, + "orderID": 11037, + "customerID": "GODOS", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 1, + "freight": 3.2, + "shipName": "Godos Cocina Típica", + "shipAddress": "C/ Romero, 33", + "shipCity": "Sevilla", + "shipRegion": "", + "shipPostalCode": "41101", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Eastern Connection", + "customerContactName": "Ann Devon", + "orderTotal": 817.875, + "orderDate": 1587675600000, + "requiredDate": 1590094800000, + "shippedDate": 1588280400000, + "requiredDateStart": 1590141600000, + "requiredDateEnd": 1590145200000, + "orderID": 11047, + "customerID": "EASTC", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 46.62, + "shipName": "Eastern Connection", + "shipAddress": "35 King George", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "WX3 6FW", + "shipCountry": "UK" +}, { + "customerCompanyName": "Bottom-Dollar Markets", + "customerContactName": "Elizabeth Lincoln", + "orderTotal": 525, + "orderDate": 1587675600000, + "requiredDate": 1590094800000, + "shippedDate": 1588194000000, + "requiredDateStart": 1590143400000, + "requiredDateEnd": 1590145200000, + "orderID": 11048, + "customerID": "BOTTM", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 24.12, + "shipName": "Bottom-Dollar Markets", + "shipAddress": "23 Tsawassen Blvd.", + "shipCity": "Tsawassen", + "shipRegion": "BC", + "shipPostalCode": "T2F 8M4", + "shipCountry": "Canada" +}, { + "customerCompanyName": "La maison d'Asie", + "customerContactName": "Annette Roulet", + "orderTotal": 36, + "orderDate": 1587934800000, + "requiredDate": 1590354000000, + "shippedDate": 1588194000000, + "requiredDateStart": 1590413400000, + "requiredDateEnd": 1590418800000, + "orderID": 11051, + "customerID": "LAMAI", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 3, + "freight": 2.79, + "shipName": "La maison d-Asie", + "shipAddress": "1 rue Alsace-Lorraine", + "shipCity": "Toulouse", + "shipRegion": "", + "shipPostalCode": "31000", + "shipCountry": "France" +}, { + "customerCompanyName": "HILARION-Abastos", + "customerContactName": "Carlos Hernández", + "orderTotal": 1727.5, + "orderDate": 1588021200000, + "requiredDate": 1590440400000, + "shippedDate": 1588626000000, + "requiredDateStart": 1590492600000, + "requiredDateEnd": 1590494400000, + "orderID": 11055, + "customerID": "HILAA", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 120.92, + "shipName": "HILARION-Abastos", + "shipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "shipCity": "San Cristóbal", + "shipRegion": "Táchira", + "shipPostalCode": "5022", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "White Clover Markets", + "customerContactName": "Karl Jablonski", + "orderTotal": 928.75, + "orderDate": 1588280400000, + "requiredDate": 1590699600000, + "shippedDate": 1588539600000, + "requiredDateStart": 1590751800000, + "requiredDateEnd": 1590755400000, + "orderID": 11066, + "customerID": "WHITC", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 44.72, + "shipName": "White Clover Markets", + "shipAddress": "1029 - 12th Ave. S.", + "shipCity": "Seattle", + "shipRegion": "WA", + "shipPostalCode": "98124", + "shipCountry": "USA" +}, { + "customerCompanyName": "Simons bistro", + "customerContactName": "Jytte Petersen", + "orderTotal": 232.085, + "orderDate": 1588712400000, + "requiredDate": 1591131600000, + "shippedDate": 1588539600000, + "requiredDateStart": 1591189200000, + "requiredDateEnd": 1591192800000, + "orderID": 11074, + "customerID": "SIMOB", + "employeeID": "7b991e13-bef7-4f19-bd18-d5aa9d263cba", + "teamID": 3, + "shipVia": 2, + "freight": 18.44, + "shipName": "Simons bistro", + "shipAddress": "Vinbæltet 34", + "shipCity": "Kobenhavn", + "shipRegion": "", + "shipPostalCode": "1734", + "shipCountry": "Denmark" +}, { + "customerCompanyName": "Toms Spezialitäten", + "customerContactName": "Karin Josephs", + "orderTotal": 1863.4, + "orderDate": 1530738000000, + "requiredDate": 1534366800000, + "shippedDate": 1531170000000, + "requiredDateStart": 1534426200000, + "requiredDateEnd": 1534429800000, + "orderID": 10249, + "customerID": "TOMSP", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 11.61, + "shipName": "Toms Spezialitäten", + "shipAddress": "Luisenstr. 48", + "shipCity": "Münster", + "shipRegion": "", + "shipPostalCode": "44087", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Folk och fä HB", + "customerContactName": "Maria Larsson", + "orderTotal": 695.625, + "orderDate": 1532379600000, + "requiredDate": 1534798800000, + "shippedDate": 1534971600000, + "requiredDateStart": 1534851000000, + "requiredDateEnd": 1534852800000, + "orderID": 10264, + "customerID": "FOLKO", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 3, + "freight": 3.67, + "shipName": "Folk och fä HB", + "shipAddress": "Åkergatan 24", + "shipCity": "Bräcke", + "shipRegion": "", + "shipPostalCode": "S-844 67", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Split Rail Beer & Ale", + "customerContactName": "Art Braunschweiger", + "orderTotal": 48, + "orderDate": 1533070800000, + "requiredDate": 1535490000000, + "shippedDate": 1535576400000, + "requiredDateStart": 1535533200000, + "requiredDateEnd": 1535538600000, + "orderID": 10271, + "customerID": "SPLIR", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 4.54, + "shipName": "Split Rail Beer & Ale", + "shipAddress": "P.O. Box 555", + "shipCity": "Lander", + "shipRegion": "WY", + "shipPostalCode": "82520", + "shipCountry": "USA" +}, { + "customerCompanyName": "Rattlesnake Canyon Grocery", + "customerContactName": "Paula Wilson", + "orderTotal": 1456, + "orderDate": 1533157200000, + "requiredDate": 1535576400000, + "shippedDate": 1533502800000, + "requiredDateStart": 1535623200000, + "requiredDateEnd": 1535626800000, + "orderID": 10272, + "customerID": "RATTC", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 98.03, + "shipName": "Rattlesnake Canyon Grocery", + "shipAddress": "2817 Milton Dr.", + "shipCity": "Albuquerque", + "shipRegion": "NM", + "shipPostalCode": "87110", + "shipCountry": "USA" +}, { + "customerCompanyName": "Vins et alcools Chevalier", + "customerContactName": "Paul Henriot", + "orderTotal": 538.6, + "orderDate": 1533502800000, + "requiredDate": 1535922000000, + "shippedDate": 1534366800000, + "requiredDateStart": 1535977800000, + "requiredDateEnd": 1535981400000, + "orderID": 10274, + "customerID": "VINET", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 6.01, + "shipName": "Vins et alcools Chevalier", + "shipAddress": "59 rue de l-Abbaye", + "shipCity": "Reims", + "shipRegion": "", + "shipPostalCode": "51100", + "shipCountry": "France" +}, { + "customerCompanyName": "Que Delícia", + "customerContactName": "Bernardo Batista", + "orderTotal": 497.52, + "orderDate": 1535317200000, + "requiredDate": 1537736400000, + "shippedDate": 1536008400000, + "requiredDateStart": 1537779600000, + "requiredDateEnd": 1537785000000, + "orderID": 10291, + "customerID": "QUEDE", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 6.4, + "shipName": "Que Delícia", + "shipAddress": "Rua da Panificadora, 12", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-673", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "LILA-Supermercado", + "customerContactName": "Carlos González", + "orderTotal": 1050.6, + "orderDate": 1535922000000, + "requiredDate": 1538341200000, + "shippedDate": 1536613200000, + "requiredDateStart": 1538382600000, + "requiredDateEnd": 1538386200000, + "orderID": 10296, + "customerID": "LILAS", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 0.12, + "shipName": "LILA-Supermercado", + "shipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "shipCity": "Barquisimeto", + "shipRegion": "Lara", + "shipPostalCode": "3508", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Hungry Owl All-Night Grocers", + "customerContactName": "Patricia McKenna", + "orderTotal": 2645, + "orderDate": 1536094800000, + "requiredDate": 1538514000000, + "shippedDate": 1536613200000, + "requiredDateStart": 1538553600000, + "requiredDateEnd": 1538555400000, + "orderID": 10298, + "customerID": "HUNGO", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 168.22, + "shipName": "Hungry Owl All-Night Grocers", + "shipAddress": "8 Johnstown Road", + "shipCity": "Cork", + "shipRegion": "Co. Cork", + "shipPostalCode": "", + "shipCountry": "Ireland" +}, { + "customerCompanyName": "Lonesome Pine Restaurant", + "customerContactName": "Fran Wilson", + "orderTotal": 288, + "orderDate": 1538254800000, + "requiredDate": 1540674000000, + "shippedDate": 1539118800000, + "requiredDateStart": 1540726200000, + "requiredDateEnd": 1540729800000, + "orderID": 10317, + "customerID": "LONEP", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 12.69, + "shipName": "Lonesome Pine Restaurant", + "shipAddress": "89 Chiaroscuro Rd.", + "shipCity": "Portland", + "shipRegion": "OR", + "shipPostalCode": "97219", + "shipCountry": "USA" +}, { + "customerCompanyName": "La maison d'Asie", + "customerContactName": "Annette Roulet", + "orderTotal": 642.06, + "orderDate": 1541887200000, + "requiredDate": 1544306400000, + "shippedDate": 1543788000000, + "requiredDateStart": 1544349600000, + "requiredDateEnd": 1544353200000, + "orderID": 10350, + "customerID": "LAMAI", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 64.19, + "shipName": "La maison d-Asie", + "shipAddress": "1 rue Alsace-Lorraine", + "shipCity": "Toulouse", + "shipRegion": "", + "shipPostalCode": "31000", + "shipCountry": "France" +}, { + "customerCompanyName": "Around the Horn", + "customerContactName": "Thomas Hardy", + "orderTotal": 480, + "orderDate": 1542232800000, + "requiredDate": 1544652000000, + "shippedDate": 1542664800000, + "requiredDateStart": 1544711400000, + "requiredDateEnd": 1544716800000, + "orderID": 10355, + "customerID": "AROUT", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 41.95, + "shipName": "Around the Horn", + "shipAddress": "Brook Farm Stratford St. Mary", + "shipCity": "Colchester", + "shipRegion": "Essex", + "shipPostalCode": "CO7 6JX", + "shipCountry": "UK" +}, { + "customerCompanyName": "Die Wandernde Kuh", + "customerContactName": "Rita Müller", + "orderTotal": 1106.4, + "orderDate": 1542492000000, + "requiredDate": 1544911200000, + "shippedDate": 1543269600000, + "requiredDateStart": 1544970600000, + "requiredDateEnd": 1544972400000, + "orderID": 10356, + "customerID": "WANDK", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 36.71, + "shipName": "Die Wandernde Kuh", + "shipAddress": "Adenauerallee 900", + "shipCity": "Stuttgart", + "shipRegion": "", + "shipPostalCode": "70563", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Chop-suey Chinese", + "customerContactName": "Yang Wang", + "orderTotal": 1117.6, + "orderDate": 1543788000000, + "requiredDate": 1546207200000, + "shippedDate": 1545861600000, + "requiredDateStart": 1546263000000, + "requiredDateEnd": 1546268400000, + "orderID": 10370, + "customerID": "CHOPS", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 1.17, + "shipName": "Chop-suey Chinese", + "shipAddress": "Hauptstr. 31", + "shipCity": "Bern", + "shipRegion": "", + "shipPostalCode": "3012", + "shipCountry": "Switzerland" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 2090.88, + "orderDate": 1545516000000, + "requiredDate": 1547935200000, + "shippedDate": 1545775200000, + "requiredDateStart": 1547992800000, + "requiredDateEnd": 1547998200000, + "orderID": 10390, + "customerID": "ERNSH", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 126.38, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "HILARION-Abastos", + "customerContactName": "Carlos Hernández", + "orderTotal": 2122.92, + "orderDate": 1545775200000, + "requiredDate": 1548194400000, + "shippedDate": 1546466400000, + "requiredDateStart": 1548235800000, + "requiredDateEnd": 1548239400000, + "orderID": 10395, + "customerID": "HILAA", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 184.41, + "shipName": "HILARION-Abastos", + "shipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "shipCity": "San Cristóbal", + "shipRegion": "Táchira", + "shipPostalCode": "5022", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Gourmet Lanchonetes", + "customerContactName": "André Fonseca", + "orderTotal": 1020, + "orderDate": 1548194400000, + "requiredDate": 1549404000000, + "shippedDate": 1550959200000, + "requiredDateStart": 1549443600000, + "requiredDateEnd": 1549447200000, + "orderID": 10423, + "customerID": "GOURL", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 3, + "freight": 24.5, + "shipName": "Gourmet Lanchonetes", + "shipAddress": "Av. Brasil, 442", + "shipCity": "Campinas", + "shipRegion": "SP", + "shipPostalCode": "04876-786", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "La maison d'Asie", + "customerContactName": "Annette Roulet", + "orderTotal": 360, + "orderDate": 1548280800000, + "requiredDate": 1550700000000, + "shippedDate": 1550095200000, + "requiredDateStart": 1550745000000, + "requiredDateEnd": 1550748600000, + "orderID": 10425, + "customerID": "LAMAI", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 7.93, + "shipName": "La maison d-Asie", + "shipAddress": "1 rue Alsace-Lorraine", + "shipCity": "Toulouse", + "shipRegion": "", + "shipPostalCode": "31000", + "shipCountry": "France" +}, { + "customerCompanyName": "Mère Paillarde", + "customerContactName": "Jean Fresnière", + "orderTotal": 1078, + "orderDate": 1549490400000, + "requiredDate": 1551909600000, + "shippedDate": 1549749600000, + "requiredDateStart": 1551952800000, + "requiredDateEnd": 1551954600000, + "orderID": 10439, + "customerID": "MEREP", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 3, + "freight": 4.07, + "shipName": "Mère Paillarde", + "shipAddress": "43 rue St. Laurent", + "shipCity": "Montréal", + "shipRegion": "Québec", + "shipPostalCode": "H1J 1C3", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Toms Spezialitäten", + "customerContactName": "Karin Josephs", + "orderTotal": 246.24, + "orderDate": 1550095200000, + "requiredDate": 1552514400000, + "shippedDate": 1550527200000, + "requiredDateStart": 1552564800000, + "requiredDateEnd": 1552566600000, + "orderID": 10446, + "customerID": "TOMSP", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 14.68, + "shipName": "Toms Spezialitäten", + "shipAddress": "Luisenstr. 48", + "shipCity": "Münster", + "shipRegion": "", + "shipPostalCode": "44087", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Folies gourmandes", + "customerContactName": "Martine Rancé", + "orderTotal": 756, + "orderDate": 1553032800000, + "requiredDate": 1555448400000, + "shippedDate": 1553378400000, + "requiredDateStart": 1555498800000, + "requiredDateEnd": 1555504200000, + "orderID": 10480, + "customerID": "FOLIG", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 1.35, + "shipName": "Folies gourmandes", + "shipAddress": "184, chaussée de Tournai", + "shipCity": "Lille", + "shipRegion": "", + "shipPostalCode": "59000", + "shipCountry": "France" +}, { + "customerCompanyName": "Piccolo und mehr", + "customerContactName": "Georg Pipps", + "orderTotal": 439.2, + "orderDate": 1553724000000, + "requiredDate": 1556139600000, + "shippedDate": 1554757200000, + "requiredDateStart": 1556188200000, + "requiredDateEnd": 1556190000000, + "orderID": 10489, + "customerID": "PICCO", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 5.29, + "shipName": "Piccolo und mehr", + "shipAddress": "Geislweg 14", + "shipCity": "Salzburg", + "shipRegion": "", + "shipPostalCode": "5020", + "shipCountry": "Austria" +}, { + "customerCompanyName": "La maison d'Asie", + "customerContactName": "Annette Roulet", + "orderTotal": 523.26, + "orderDate": 1554757200000, + "requiredDate": 1557176400000, + "shippedDate": 1555448400000, + "requiredDateStart": 1557235800000, + "requiredDateEnd": 1557241200000, + "orderID": 10500, + "customerID": "LAMAI", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 42.68, + "shipName": "La maison d-Asie", + "shipAddress": "1 rue Alsace-Lorraine", + "shipCity": "Toulouse", + "shipRegion": "", + "shipPostalCode": "31000", + "shipCountry": "France" +}, { + "customerCompanyName": "Hungry Owl All-Night Grocers", + "customerContactName": "Patricia McKenna", + "orderTotal": 2048.5, + "orderDate": 1554930000000, + "requiredDate": 1557349200000, + "shippedDate": 1555362000000, + "requiredDateStart": 1557397800000, + "requiredDateEnd": 1557399600000, + "orderID": 10503, + "customerID": "HUNGO", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 16.74, + "shipName": "Hungry Owl All-Night Grocers", + "shipAddress": "8 Johnstown Road", + "shipCity": "Cork", + "shipRegion": "Co. Cork", + "shipPostalCode": "", + "shipCountry": "Ireland" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 4707.54, + "orderDate": 1555534800000, + "requiredDate": 1557954000000, + "shippedDate": 1556398800000, + "requiredDateStart": 1558006200000, + "requiredDateEnd": 1558009800000, + "orderID": 10510, + "customerID": "SAVEA", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 3, + "freight": 367.63, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Chop-suey Chinese", + "customerContactName": "Yang Wang", + "orderTotal": 2314.2, + "orderDate": 1556398800000, + "requiredDate": 1558818000000, + "shippedDate": 1556658000000, + "requiredDateStart": 1558868400000, + "requiredDateEnd": 1558873800000, + "orderID": 10519, + "customerID": "CHOPS", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 3, + "freight": 91.76, + "shipName": "Chop-suey Chinese", + "shipAddress": "Hauptstr. 31", + "shipCity": "Bern", + "shipRegion": "", + "shipPostalCode": "3012", + "shipCountry": "Switzerland" +}, { + "customerCompanyName": "Great Lakes Food Market", + "customerContactName": "Howard Snyder", + "orderTotal": 392.2, + "orderDate": 1557090000000, + "requiredDate": 1558299600000, + "shippedDate": 1557349200000, + "requiredDateStart": 1558350000000, + "requiredDateEnd": 1558355400000, + "orderID": 10528, + "customerID": "GREAL", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 3.35, + "shipName": "Great Lakes Food Market", + "shipAddress": "2732 Baker Blvd.", + "shipCity": "Eugene", + "shipRegion": "OR", + "shipPostalCode": "97403", + "shipCountry": "USA" +}, { + "customerCompanyName": "B's Beverages", + "customerContactName": "Victoria Ashworth", + "orderTotal": 355.5, + "orderDate": 1557954000000, + "requiredDate": 1560373200000, + "shippedDate": 1558558800000, + "requiredDateStart": 1560421800000, + "requiredDateEnd": 1560425400000, + "orderID": 10539, + "customerID": "BSBEV", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 3, + "freight": 12.36, + "shipName": "B-s Beverages", + "shipAddress": "Fauntleroy Circus", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "EC2 5NT", + "shipCountry": "UK" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 2944.4, + "orderDate": 1559422800000, + "requiredDate": 1561842000000, + "shippedDate": 1559595600000, + "requiredDateStart": 1561890600000, + "requiredDateEnd": 1561892400000, + "orderID": 10555, + "customerID": "SAVEA", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 3, + "freight": 252.49, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Blondesddsl père et fils", + "customerContactName": "Frédérique Citeaux", + "orderTotal": 520.41, + "orderDate": 1559682000000, + "requiredDate": 1562101200000, + "shippedDate": 1560373200000, + "requiredDateStart": 1562144400000, + "requiredDateEnd": 1562149800000, + "orderID": 10559, + "customerID": "BLONP", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 8.05, + "shipName": "Blondel père et fils", + "shipAddress": "24, place Kléber", + "shipCity": "Strasbourg", + "shipRegion": "", + "shipPostalCode": "67000", + "shipCountry": "France" +}, { + "customerCompanyName": "B's Beverages", + "customerContactName": "Victoria Ashworth", + "orderTotal": 493, + "orderDate": 1563138000000, + "requiredDate": 1566766800000, + "shippedDate": 1563656400000, + "requiredDateStart": 1566811800000, + "requiredDateEnd": 1566815400000, + "orderID": 10599, + "customerID": "BSBEV", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 3, + "freight": 29.98, + "shipName": "B-s Beverages", + "shipAddress": "Fauntleroy Circus", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "EC2 5NT", + "shipCountry": "UK" +}, { + "customerCompanyName": "Wolski Zajazd", + "customerContactName": "Zbyszek Piestrzeniewicz", + "orderTotal": 808, + "orderDate": 1564002000000, + "requiredDate": 1566421200000, + "shippedDate": 1564606800000, + "requiredDateStart": 1566477000000, + "requiredDateEnd": 1566478800000, + "orderID": 10611, + "customerID": "WOLZA", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 80.65, + "shipName": "Wolski Zajazd", + "shipAddress": "ul. Filtrowa 68", + "shipCity": "Warszawa", + "shipRegion": "", + "shipPostalCode": "01-012", + "shipCountry": "Poland" +}, { + "customerCompanyName": "Queen Cozinha", + "customerContactName": "Lúcia Carvalho", + "orderTotal": 2761.9375, + "orderDate": 1566162000000, + "requiredDate": 1568581200000, + "shippedDate": 1566766800000, + "requiredDateStart": 1568629800000, + "requiredDateEnd": 1568633400000, + "orderID": 10637, + "customerID": "QUEEN", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 201.29, + "shipName": "Queen Cozinha", + "shipAddress": "Alameda dos Canàrios, 891", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05487-020", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Alfreds Futterkiste", + "customerContactName": "Maria Anders", + "orderTotal": 814.5, + "orderDate": 1566680400000, + "requiredDate": 1569099600000, + "shippedDate": 1567371600000, + "requiredDateStart": 1569150000000, + "requiredDateEnd": 1569153600000, + "orderID": 10643, + "customerID": "ALFKI", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 29.46, + "shipName": "Alfreds Futterkiste", + "shipAddress": "Obere Str. 57", + "shipCity": "Berlin", + "shipRegion": "", + "shipPostalCode": "12209", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Great Lakes Food Market", + "customerContactName": "Howard Snyder", + "orderTotal": 604.215, + "orderDate": 1567544400000, + "requiredDate": 1569963600000, + "shippedDate": 1568062800000, + "requiredDateStart": 1570021200000, + "requiredDateEnd": 1570023000000, + "orderID": 10656, + "customerID": "GREAL", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 57.15, + "shipName": "Great Lakes Food Market", + "shipAddress": "2732 Baker Blvd.", + "shipCity": "Eugene", + "shipRegion": "OR", + "shipPostalCode": "97403", + "shipCountry": "USA" +}, { + "customerCompanyName": "Hungry Owl All-Night Grocers", + "customerContactName": "Patricia McKenna", + "orderTotal": 2864.5, + "orderDate": 1570914000000, + "requiredDate": 1572123600000, + "shippedDate": 1571086800000, + "requiredDateStart": 1572183000000, + "requiredDateEnd": 1572184800000, + "orderID": 10701, + "customerID": "HUNGO", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 3, + "freight": 220.31, + "shipName": "Hungry Owl All-Night Grocers", + "shipAddress": "8 Johnstown Road", + "shipCity": "Cork", + "shipRegion": "Co. Cork", + "shipPostalCode": "", + "shipCountry": "Ireland" +}, { + "customerCompanyName": "Folk och fä HB", + "customerContactName": "Maria Larsson", + "orderTotal": 2545, + "orderDate": 1571000400000, + "requiredDate": 1573423200000, + "shippedDate": 1571518800000, + "requiredDateStart": 1573466400000, + "requiredDateEnd": 1573470000000, + "orderID": 10703, + "customerID": "FOLKO", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 152.3, + "shipName": "Folk och fä HB", + "shipAddress": "Åkergatan 24", + "shipCity": "Bräcke", + "shipRegion": "", + "shipPostalCode": "S-844 67", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Queen Cozinha", + "customerContactName": "Lúcia Carvalho", + "orderTotal": 595.5, + "orderDate": 1571000400000, + "requiredDate": 1573423200000, + "shippedDate": 1573077600000, + "requiredDateStart": 1573471800000, + "requiredDateEnd": 1573477200000, + "orderID": 10704, + "customerID": "QUEEN", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 4.78, + "shipName": "Queen Cozinha", + "shipAddress": "Alameda dos Canàrios, 891", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05487-020", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "The Big Cheese", + "customerContactName": "Liz Nixon", + "orderTotal": 180.4, + "orderDate": 1571259600000, + "requiredDate": 1574892000000, + "shippedDate": 1572904800000, + "requiredDateStart": 1574944200000, + "requiredDateEnd": 1574946000000, + "orderID": 10708, + "customerID": "THEBI", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 2.96, + "shipName": "The Big Cheese", + "shipAddress": "89 Jefferson Way Suite 2", + "shipCity": "Portland", + "shipRegion": "OR", + "shipPostalCode": "97201", + "shipCountry": "USA" +}, { + "customerCompanyName": "Let's Stop N Shop", + "customerContactName": "Jaime Yorres", + "orderTotal": 536.4, + "orderDate": 1573336800000, + "requiredDate": 1575756000000, + "shippedDate": 1574287200000, + "requiredDateStart": 1575813600000, + "requiredDateEnd": 1575819000000, + "orderID": 10735, + "customerID": "LETSS", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 45.97, + "shipName": "Let-s Stop N Shop", + "shipAddress": "87 Polk St. Suite 5", + "shipCity": "San Francisco", + "shipRegion": "CA", + "shipPostalCode": "94117", + "shipCountry": "USA" +}, { + "customerCompanyName": "Vaffeljernet", + "customerContactName": "Palle Ibsen", + "orderTotal": 736, + "orderDate": 1573941600000, + "requiredDate": 1576360800000, + "shippedDate": 1574546400000, + "requiredDateStart": 1576413000000, + "requiredDateEnd": 1576418400000, + "orderID": 10744, + "customerID": "VAFFE", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 69.19, + "shipName": "Vaffeljernet", + "shipAddress": "Smagsloget 45", + "shipCity": "Århus", + "shipRegion": "", + "shipPostalCode": "8200", + "shipCountry": "Denmark" +}, { + "customerCompanyName": "Piccolo und mehr", + "customerContactName": "Georg Pipps", + "orderTotal": 1912.85, + "orderDate": 1574114400000, + "requiredDate": 1576533600000, + "shippedDate": 1574719200000, + "requiredDateStart": 1576576800000, + "requiredDateEnd": 1576580400000, + "orderID": 10747, + "customerID": "PICCO", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 117.33, + "shipName": "Piccolo und mehr", + "shipAddress": "Geislweg 14", + "shipCity": "Salzburg", + "shipRegion": "", + "shipPostalCode": "5020", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Magazzini Alimentari Riuniti", + "customerContactName": "Giovanni Rovelli", + "orderTotal": 55.2, + "orderDate": 1574632800000, + "requiredDate": 1577052000000, + "shippedDate": 1574805600000, + "requiredDateStart": 1577095200000, + "requiredDateEnd": 1577097000000, + "orderID": 10754, + "customerID": "MAGAA", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 3, + "freight": 2.38, + "shipName": "Magazzini Alimentari Riuniti", + "shipAddress": "Via Ludovico il Moro 22", + "shipCity": "Bergamo", + "shipRegion": "", + "shipPostalCode": "24100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 3082, + "orderDate": 1574805600000, + "requiredDate": 1577224800000, + "shippedDate": 1576360800000, + "requiredDateStart": 1577266200000, + "requiredDateEnd": 1577269800000, + "orderID": 10757, + "customerID": "SAVEA", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 8.19, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 2286, + "orderDate": 1575324000000, + "requiredDate": 1577743200000, + "shippedDate": 1575756000000, + "requiredDateStart": 1577797200000, + "requiredDateEnd": 1577799000000, + "orderID": 10764, + "customerID": "ERNSH", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 3, + "freight": 145.45, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Gourmet Lanchonetes", + "customerContactName": "André Fonseca", + "orderTotal": 722.5, + "orderDate": 1576965600000, + "requiredDate": 1579384800000, + "shippedDate": 1577311200000, + "requiredDateStart": 1579433400000, + "requiredDateEnd": 1579438800000, + "orderID": 10790, + "customerID": "GOURL", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 28.23, + "shipName": "Gourmet Lanchonetes", + "shipAddress": "Av. Brasil, 442", + "shipCity": "Campinas", + "shipRegion": "SP", + "shipPostalCode": "04876-786", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Frankenversand", + "customerContactName": "Peter Franken", + "orderTotal": 1829.757, + "orderDate": 1577052000000, + "requiredDate": 1579471200000, + "shippedDate": 1577829600000, + "requiredDateStart": 1579527000000, + "requiredDateEnd": 1579530600000, + "orderID": 10791, + "customerID": "FRANK", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 16.85, + "shipName": "Frankenversand", + "shipAddress": "Berliner Platz 43", + "shipCity": "München", + "shipRegion": "", + "shipPostalCode": "80805", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Que Delícia", + "customerContactName": "Bernardo Batista", + "orderTotal": 314.76, + "orderDate": 1577138400000, + "requiredDate": 1579557600000, + "shippedDate": 1577916000000, + "requiredDateStart": 1579613400000, + "requiredDateEnd": 1579618800000, + "orderID": 10794, + "customerID": "QUEDE", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 21.49, + "shipName": "Que Delícia", + "shipAddress": "Rua da Panificadora, 12", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-673", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Seven Seas Imports", + "customerContactName": "Hari Kumar", + "orderTotal": 2278.4, + "orderDate": 1577656800000, + "requiredDate": 1580076000000, + "shippedDate": 1578348000000, + "requiredDateStart": 1580124600000, + "requiredDateEnd": 1580126400000, + "orderID": 10804, + "customerID": "SEVES", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 27.33, + "shipName": "Seven Seas Imports", + "shipAddress": "90 Wadhurst Rd.", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "OX15 4NB", + "shipCountry": "UK" +}, { + "customerCompanyName": "Trail's Head Gourmet Provisioners", + "customerContactName": "Helvetius Nagy", + "orderTotal": 237.9, + "orderDate": 1578434400000, + "requiredDate": 1580853600000, + "shippedDate": 1579125600000, + "requiredDateStart": 1580898600000, + "requiredDateEnd": 1580900400000, + "orderID": 10822, + "customerID": "TRAIH", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 3, + "freight": 7, + "shipName": "Trail-s Head Gourmet Provisioners", + "shipAddress": "722 DaVinci Blvd.", + "shipCity": "Kirkland", + "shipRegion": "WA", + "shipPostalCode": "98034", + "shipCountry": "USA" +}, { + "customerCompanyName": "Blondesddsl père et fils", + "customerContactName": "Frédérique Citeaux", + "orderTotal": 730, + "orderDate": 1578780000000, + "requiredDate": 1581199200000, + "shippedDate": 1580940000000, + "requiredDateStart": 1581242400000, + "requiredDateEnd": 1581247800000, + "orderID": 10826, + "customerID": "BLONP", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 7.09, + "shipName": "Blondel père et fils", + "shipAddress": "24, place Kléber", + "shipCity": "Strasbourg", + "shipRegion": "", + "shipPostalCode": "67000", + "shipCountry": "France" +}, { + "customerCompanyName": "Ottilies Käseladen", + "customerContactName": "Henriette Pfalzheim", + "orderTotal": 906.93, + "orderDate": 1579039200000, + "requiredDate": 1581458400000, + "shippedDate": 1579730400000, + "requiredDateStart": 1581514200000, + "requiredDateEnd": 1581516000000, + "orderID": 10833, + "customerID": "OTTIK", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 71.49, + "shipName": "Ottilies Käseladen", + "shipAddress": "Mehrheimerstr. 369", + "shipCity": "Köln", + "shipRegion": "", + "shipPostalCode": "50739", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Lonesome Pine Restaurant", + "customerContactName": "Fran Wilson", + "orderTotal": 98.4, + "orderDate": 1580680800000, + "requiredDate": 1584396000000, + "shippedDate": 1581372000000, + "requiredDateStart": 1584451800000, + "requiredDateEnd": 1584453600000, + "orderID": 10867, + "customerID": "LONEP", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 1.93, + "shipName": "Lonesome Pine Restaurant", + "shipAddress": "89 Chiaroscuro Rd.", + "shipCity": "Portland", + "shipRegion": "OR", + "shipPostalCode": "97219", + "shipCountry": "USA" +}, { + "customerCompanyName": "Suprêmes délices", + "customerContactName": "Pascale Cartrain", + "orderTotal": 1209, + "orderDate": 1581458400000, + "requiredDate": 1583964000000, + "shippedDate": 1581976800000, + "requiredDateStart": 1584016200000, + "requiredDateEnd": 1584018000000, + "orderID": 10885, + "customerID": "SUPRD", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 3, + "freight": 5.64, + "shipName": "Suprêmes délices", + "shipAddress": "Boulevard Tirou, 255", + "shipCity": "Charleroi", + "shipRegion": "", + "shipPostalCode": "B-6000", + "shipCountry": "Belgium" +}, { + "customerCompanyName": "Spécialités du monde", + "customerContactName": "Dominique Perrier", + "orderTotal": 108.5, + "orderDate": 1582581600000, + "requiredDate": 1585087200000, + "shippedDate": 1582754400000, + "requiredDateStart": 1585130400000, + "requiredDateEnd": 1585134000000, + "orderID": 10907, + "customerID": "SPECD", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 3, + "freight": 9.19, + "shipName": "Spécialités du monde", + "shipAddress": "25, rue Lauriston", + "shipCity": "Paris", + "shipRegion": "", + "shipPostalCode": "75016", + "shipCountry": "France" +}, { + "customerCompanyName": "Queen Cozinha", + "customerContactName": "Lúcia Carvalho", + "orderTotal": 537.5, + "orderDate": 1582754400000, + "requiredDate": 1585260000000, + "shippedDate": 1583100000000, + "requiredDateStart": 1585306800000, + "requiredDateEnd": 1585312200000, + "orderID": 10914, + "customerID": "QUEEN", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 21.19, + "shipName": "Queen Cozinha", + "shipAddress": "Alameda dos Canàrios, 891", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05487-020", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Frankenversand", + "customerContactName": "Peter Franken", + "orderTotal": 1174.75, + "orderDate": 1583359200000, + "requiredDate": 1585774800000, + "shippedDate": 1583964000000, + "requiredDateStart": 1585823400000, + "requiredDateEnd": 1585828800000, + "orderID": 10929, + "customerID": "FRANK", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 1, + "freight": 33.93, + "shipName": "Frankenversand", + "shipAddress": "Berliner Platz 43", + "shipCity": "München", + "shipRegion": "", + "shipPostalCode": "80805", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Island Trading", + "customerContactName": "Helen Bennett", + "orderTotal": 920.6, + "orderDate": 1583445600000, + "requiredDate": 1585861200000, + "shippedDate": 1584309600000, + "requiredDateStart": 1585906200000, + "requiredDateEnd": 1585908000000, + "orderID": 10933, + "customerID": "ISLAT", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 3, + "freight": 54.15, + "shipName": "Island Trading", + "shipAddress": "Garden House Crowther Way", + "shipCity": "Cowes", + "shipRegion": "Isle of Wight", + "shipPostalCode": "PO31 7PJ", + "shipCountry": "UK" +}, { + "customerCompanyName": "Bottom-Dollar Markets", + "customerContactName": "Elizabeth Lincoln", + "orderTotal": 1025.325, + "orderDate": 1583964000000, + "requiredDate": 1585173600000, + "shippedDate": 1584050400000, + "requiredDateStart": 1585231200000, + "requiredDateEnd": 1585233000000, + "orderID": 10944, + "customerID": "BOTTM", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 3, + "freight": 52.92, + "shipName": "Bottom-Dollar Markets", + "shipAddress": "23 Tsawassen Blvd.", + "shipCity": "Tsawassen", + "shipRegion": "BC", + "shipPostalCode": "T2F 8M4", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Blauer See Delikatessen", + "customerContactName": "Hanna Moos", + "orderTotal": 677, + "orderDate": 1584396000000, + "requiredDate": 1588021200000, + "shippedDate": 1584655200000, + "requiredDateStart": 1588068000000, + "requiredDateEnd": 1588073400000, + "orderID": 10956, + "customerID": "BLAUS", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 44.65, + "shipName": "Blauer See Delikatessen", + "shipAddress": "Forsterstr. 57", + "shipCity": "Mannheim", + "shipRegion": "", + "shipPostalCode": "68306", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Gourmet Lanchonetes", + "customerContactName": "André Fonseca", + "orderTotal": 131.75, + "orderDate": 1584482400000, + "requiredDate": 1588107600000, + "shippedDate": 1584914400000, + "requiredDateStart": 1588161600000, + "requiredDateEnd": 1588167000000, + "orderID": 10959, + "customerID": "GOURL", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 4.98, + "shipName": "Gourmet Lanchonetes", + "shipAddress": "Av. Brasil, 442", + "shipCity": "Campinas", + "shipRegion": "SP", + "shipPostalCode": "04876-786", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Old World Delicatessen", + "customerContactName": "Rene Phillips", + "orderTotal": 848, + "orderDate": 1584655200000, + "requiredDate": 1587070800000, + "shippedDate": 1585515600000, + "requiredDateStart": 1587128400000, + "requiredDateEnd": 1587132000000, + "orderID": 10965, + "customerID": "OLDWO", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 3, + "freight": 144.38, + "shipName": "Old World Delicatessen", + "shipAddress": "2743 Bering St.", + "shipCity": "Anchorage", + "shipRegion": "AK", + "shipPostalCode": "99508", + "shipCountry": "USA" +}, { + "customerCompanyName": "La corne d'abondance", + "customerContactName": "Daniel Tonini", + "orderTotal": 291.55, + "orderDate": 1585000800000, + "requiredDate": 1587416400000, + "shippedDate": 1585260000000, + "requiredDateStart": 1587459600000, + "requiredDateEnd": 1587461400000, + "orderID": 10973, + "customerID": "LACOR", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 15.17, + "shipName": "La corne d-abondance", + "shipAddress": "67, avenue de l-Europe", + "shipCity": "Versailles", + "shipRegion": "", + "shipPostalCode": "78000", + "shipCountry": "France" +}, { + "customerCompanyName": "Ottilies Käseladen", + "customerContactName": "Henriette Pfalzheim", + "orderTotal": 1197.95, + "orderDate": 1585861200000, + "requiredDate": 1588280400000, + "shippedDate": 1586466000000, + "requiredDateStart": 1588339800000, + "requiredDateEnd": 1588345200000, + "orderID": 10999, + "customerID": "OTTIK", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 96.35, + "shipName": "Ottilies Käseladen", + "shipAddress": "Mehrheimerstr. 369", + "shipCity": "Köln", + "shipRegion": "", + "shipPostalCode": "50739", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Rancho grande", + "customerContactName": "Sergio Gutiérrez", + "orderTotal": 76, + "orderDate": 1586725200000, + "requiredDate": 1589144400000, + "shippedDate": 1586466000000, + "requiredDateStart": 1589202000000, + "requiredDateEnd": 1589203800000, + "orderID": 11019, + "customerID": "RANCH", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 3, + "freight": 3.17, + "shipName": "Rancho grande", + "shipAddress": "Av. del Libertador 900", + "shipCity": "Buenos Aires", + "shipRegion": "", + "shipPostalCode": "1010", + "shipCountry": "Argentina" +}, { + "customerCompanyName": "Wartian Herkku", + "customerContactName": "Pirkko Koskitalo", + "orderTotal": 270, + "orderDate": 1586898000000, + "requiredDate": 1589317200000, + "shippedDate": 1587675600000, + "requiredDateStart": 1589362200000, + "requiredDateEnd": 1589364000000, + "orderID": 11025, + "customerID": "WARTH", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 3, + "freight": 29.17, + "shipName": "Wartian Herkku", + "shipAddress": "Torikatu 38", + "shipCity": "Oulu", + "shipRegion": "", + "shipPostalCode": "90110", + "shipCountry": "Finland" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 2393.5, + "orderDate": 1587070800000, + "requiredDate": 1589490000000, + "shippedDate": 1587675600000, + "requiredDateStart": 1589549400000, + "requiredDateEnd": 1589551200000, + "orderID": 11031, + "customerID": "SAVEA", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 227.22, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Bottom-Dollar Markets", + "customerContactName": "Elizabeth Lincoln", + "orderTotal": 1309.5, + "orderDate": 1587589200000, + "requiredDate": 1590008400000, + "shippedDate": 1587675600000, + "requiredDateStart": 1590057000000, + "requiredDateEnd": 1590058800000, + "orderID": 11045, + "customerID": "BOTTM", + "employeeID": "b75a42e9-db84-479c-96b0-d88109abfebb", + "teamID": 3, + "shipVia": 2, + "freight": 70.58, + "shipName": "Bottom-Dollar Markets", + "shipAddress": "23 Tsawassen Blvd.", + "shipCity": "Tsawassen", + "shipRegion": "BC", + "shipPostalCode": "T2F 8M4", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Vins et alcools Chevalier", + "customerContactName": "Paul Henriot", + "orderTotal": 440, + "orderDate": 1530651600000, + "requiredDate": 1533070800000, + "shippedDate": 1531688400000, + "requiredDateStart": 1533123000000, + "requiredDateEnd": 1533126600000, + "orderID": 10248, + "customerID": "VINET", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 3, + "freight": 32.38, + "shipName": "Vins et alcools Chevalier", + "shipAddress": "59 rue de l-Abbaye", + "shipCity": "Reims", + "shipRegion": "", + "shipPostalCode": "51100", + "shipCountry": "France" +}, { + "customerCompanyName": "Chop-suey Chinese", + "customerContactName": "Yang Wang", + "orderTotal": 556.62, + "orderDate": 1531256400000, + "requiredDate": 1533675600000, + "shippedDate": 1532293200000, + "requiredDateStart": 1533729600000, + "requiredDateEnd": 1533735000000, + "orderID": 10254, + "customerID": "CHOPS", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 2, + "freight": 22.98, + "shipName": "Chop-suey Chinese", + "shipAddress": "Hauptstr. 31", + "shipCity": "Bern", + "shipRegion": "", + "shipPostalCode": "3012", + "shipCountry": "Switzerland" +}, { + "customerCompanyName": "White Clover Markets", + "customerContactName": "Karl Jablonski", + "orderTotal": 642.2, + "orderDate": 1532984400000, + "requiredDate": 1534194000000, + "shippedDate": 1533762000000, + "requiredDateStart": 1534248000000, + "requiredDateEnd": 1534251600000, + "orderID": 10269, + "customerID": "WHITC", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 1, + "freight": 4.56, + "shipName": "White Clover Markets", + "shipAddress": "1029 - 12th Ave. S.", + "shipCity": "Seattle", + "shipRegion": "WA", + "shipPostalCode": "98124", + "shipCountry": "USA" +}, { + "customerCompanyName": "Blondesddsl père et fils", + "customerContactName": "Frédérique Citeaux", + "orderTotal": 1420, + "orderDate": 1536008400000, + "requiredDate": 1539637200000, + "shippedDate": 1536526800000, + "requiredDateStart": 1539696600000, + "requiredDateEnd": 1539698400000, + "orderID": 10297, + "customerID": "BLONP", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 2, + "freight": 5.74, + "shipName": "Blondel père et fils", + "shipAddress": "24, place Kléber", + "shipCity": "Strasbourg", + "shipRegion": "", + "shipPostalCode": "67000", + "shipCountry": "France" +}, { + "customerCompanyName": "Wartian Herkku", + "customerContactName": "Pirkko Koskitalo", + "orderTotal": 516, + "orderDate": 1538514000000, + "requiredDate": 1539723600000, + "shippedDate": 1539810000000, + "requiredDateStart": 1539770400000, + "requiredDateEnd": 1539772200000, + "orderID": 10320, + "customerID": "WARTH", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 3, + "freight": 34.57, + "shipName": "Wartian Herkku", + "shipAddress": "Torikatu 38", + "shipCity": "Oulu", + "shipRegion": "", + "shipPostalCode": "90110", + "shipCountry": "Finland" +}, { + "customerCompanyName": "Wartian Herkku", + "customerContactName": "Pirkko Koskitalo", + "orderTotal": 877.2, + "orderDate": 1539810000000, + "requiredDate": 1542232800000, + "shippedDate": 1540414800000, + "requiredDateStart": 1542276000000, + "requiredDateEnd": 1542277800000, + "orderID": 10333, + "customerID": "WARTH", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 3, + "freight": 0.59, + "shipName": "Wartian Herkku", + "shipAddress": "Torikatu 38", + "shipCity": "Oulu", + "shipRegion": "", + "shipPostalCode": "90110", + "shipCountry": "Finland" +}, { + "customerCompanyName": "La maison d'Asie", + "customerContactName": "Annette Roulet", + "orderTotal": 429.4, + "orderDate": 1542664800000, + "requiredDate": 1545084000000, + "shippedDate": 1543269600000, + "requiredDateStart": 1545141600000, + "requiredDateEnd": 1545143400000, + "orderID": 10358, + "customerID": "LAMAI", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 1, + "freight": 19.64, + "shipName": "La maison d-Asie", + "shipAddress": "1 rue Alsace-Lorraine", + "shipCity": "Toulouse", + "shipRegion": "", + "shipPostalCode": "31000", + "shipCountry": "France" +}, { + "customerCompanyName": "Seven Seas Imports", + "customerContactName": "Hari Kumar", + "orderTotal": 3471.68, + "orderDate": 1542751200000, + "requiredDate": 1545170400000, + "shippedDate": 1543183200000, + "requiredDateStart": 1545220800000, + "requiredDateEnd": 1545226200000, + "orderID": 10359, + "customerID": "SEVES", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 3, + "freight": 288.43, + "shipName": "Seven Seas Imports", + "shipAddress": "90 Wadhurst Rd.", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "OX15 4NB", + "shipCountry": "UK" +}, { + "customerCompanyName": "Queen Cozinha", + "customerContactName": "Lúcia Carvalho", + "orderTotal": 9210.9, + "orderDate": 1543874400000, + "requiredDate": 1546293600000, + "shippedDate": 1544306400000, + "requiredDateStart": 1546335000000, + "requiredDateEnd": 1546338600000, + "orderID": 10372, + "customerID": "QUEEN", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 2, + "freight": 890.78, + "shipName": "Queen Cozinha", + "shipAddress": "Alameda dos Canàrios, 891", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05487-020", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Folk och fä HB", + "customerContactName": "Maria Larsson", + "orderTotal": 103.2, + "orderDate": 1544392800000, + "requiredDate": 1546812000000, + "shippedDate": 1545170400000, + "requiredDateStart": 1546871400000, + "requiredDateEnd": 1546876800000, + "orderID": 10378, + "customerID": "FOLKO", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 3, + "freight": 5.44, + "shipName": "Folk och fä HB", + "shipAddress": "Åkergatan 24", + "shipCity": "Bräcke", + "shipRegion": "", + "shipPostalCode": "S-844 67", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Princesa Isabel Vinhos", + "customerContactName": "Isabel de Castro", + "orderTotal": 716.72, + "orderDate": 1545861600000, + "requiredDate": 1548280800000, + "shippedDate": 1546380000000, + "requiredDateStart": 1548322200000, + "requiredDateEnd": 1548325800000, + "orderID": 10397, + "customerID": "PRINI", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 1, + "freight": 60.26, + "shipName": "Princesa Isabel Vinhos", + "shipAddress": "Estrada da saúde n. 58", + "shipCity": "Lisboa", + "shipRegion": "", + "shipPostalCode": "1756", + "shipCountry": "Portugal" +}, { + "customerCompanyName": "Suprêmes délices", + "customerContactName": "Pascale Cartrain", + "orderTotal": 713.3, + "orderDate": 1551650400000, + "requiredDate": 1554066000000, + "shippedDate": 1551823200000, + "requiredDateStart": 1554112800000, + "requiredDateEnd": 1554114600000, + "orderID": 10463, + "customerID": "SUPRD", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 3, + "freight": 14.78, + "shipName": "Suprêmes délices", + "shipAddress": "Boulevard Tirou, 255", + "shipCity": "Charleroi", + "shipRegion": "", + "shipPostalCode": "B-6000", + "shipCountry": "Belgium" +}, { + "customerCompanyName": "Pericles Comidas clásicas", + "customerContactName": "Guillermo Fernández", + "orderTotal": 1249.1, + "orderDate": 1552428000000, + "requiredDate": 1554843600000, + "shippedDate": 1553119200000, + "requiredDateStart": 1554888600000, + "requiredDateEnd": 1554892200000, + "orderID": 10474, + "customerID": "PERIC", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 2, + "freight": 83.49, + "shipName": "Pericles Comidas clásicas", + "shipAddress": "Calle Dr. Jorge Cash 321", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5033", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Princesa Isabel Vinhos", + "customerContactName": "Isabel de Castro", + "orderTotal": 558, + "orderDate": 1552773600000, + "requiredDate": 1555189200000, + "shippedDate": 1553464800000, + "requiredDateStart": 1555228800000, + "requiredDateEnd": 1555234200000, + "orderID": 10477, + "customerID": "PRINI", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 2, + "freight": 13.02, + "shipName": "Princesa Isabel Vinhos", + "shipAddress": "Estrada da saúde n. 58", + "shipCity": "Lisboa", + "shipRegion": "", + "shipPostalCode": "1756", + "shipCountry": "Portugal" +}, { + "customerCompanyName": "Maison Dewey", + "customerContactName": "Catherine Dewey", + "orderTotal": 946, + "orderDate": 1557176400000, + "requiredDate": 1559595600000, + "shippedDate": 1557349200000, + "requiredDateStart": 1559653200000, + "requiredDateEnd": 1559656800000, + "orderID": 10529, + "customerID": "MAISD", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 2, + "freight": 66.69, + "shipName": "Maison Dewey", + "shipAddress": "Rue Joseph-Bens 532", + "shipCity": "Bruxelles", + "shipRegion": "", + "shipPostalCode": "B-1180", + "shipCountry": "Belgium" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 3554.275, + "orderDate": 1558904400000, + "requiredDate": 1560114000000, + "shippedDate": 1559163600000, + "requiredDateStart": 1560153600000, + "requiredDateEnd": 1560155400000, + "orderID": 10549, + "customerID": "QUICK", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 1, + "freight": 171.24, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Rattlesnake Canyon Grocery", + "customerContactName": "Paula Wilson", + "orderTotal": 890, + "orderDate": 1560632400000, + "requiredDate": 1563051600000, + "shippedDate": 1562792400000, + "requiredDateStart": 1563098400000, + "requiredDateEnd": 1563102000000, + "orderID": 10569, + "customerID": "RATTC", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 1, + "freight": 58.98, + "shipName": "Rattlesnake Canyon Grocery", + "shipAddress": "2817 Milton Dr.", + "shipCity": "Albuquerque", + "shipRegion": "NM", + "shipPostalCode": "87110", + "shipCountry": "USA" +}, { + "customerCompanyName": "Morgenstern Gesundkost", + "customerContactName": "Alexander Feuer", + "orderTotal": 2147.4, + "orderDate": 1560978000000, + "requiredDate": 1562187600000, + "shippedDate": 1561842000000, + "requiredDateStart": 1562232600000, + "requiredDateEnd": 1562238000000, + "orderID": 10575, + "customerID": "MORGK", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 1, + "freight": 127.34, + "shipName": "Morgenstern Gesundkost", + "shipAddress": "Heerstr. 22", + "shipCity": "Leipzig", + "shipRegion": "", + "shipPostalCode": "4179", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 6475.4, + "orderDate": 1563742800000, + "requiredDate": 1566162000000, + "shippedDate": 1564002000000, + "requiredDateStart": 1566207000000, + "requiredDateEnd": 1566208800000, + "orderID": 10607, + "customerID": "SAVEA", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 1, + "freight": 200.24, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Ricardo Adocicados", + "customerContactName": "Janete Limeira", + "orderTotal": 372.375, + "orderDate": 1566939600000, + "requiredDate": 1570568400000, + "shippedDate": 1567976400000, + "requiredDateStart": 1570609800000, + "requiredDateEnd": 1570611600000, + "orderID": 10648, + "customerID": "RICAR", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 2, + "freight": 14.25, + "shipName": "Ricardo Adocicados", + "shipAddress": "Av. Copacabana, 267", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-890", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Maison Dewey", + "customerContactName": "Catherine Dewey", + "orderTotal": 1434, + "orderDate": 1566939600000, + "requiredDate": 1569358800000, + "shippedDate": 1567026000000, + "requiredDateStart": 1569400200000, + "requiredDateEnd": 1569403800000, + "orderID": 10649, + "customerID": "MAISD", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 3, + "freight": 6.2, + "shipName": "Maison Dewey", + "shipAddress": "Rue Joseph-Bens 532", + "shipCity": "Bruxelles", + "shipRegion": "", + "shipPostalCode": "B-1180", + "shipCountry": "Belgium" +}, { + "customerCompanyName": "Familia Arquibaldo", + "customerContactName": "Aria Cruz", + "orderTotal": 1779.2, + "orderDate": 1567026000000, + "requiredDate": 1569445200000, + "shippedDate": 1567458000000, + "requiredDateStart": 1569490200000, + "requiredDateEnd": 1569493800000, + "orderID": 10650, + "customerID": "FAMIA", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 3, + "freight": 176.81, + "shipName": "Familia Arquibaldo", + "shipAddress": "Rua Orós, 92", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05442-030", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Berglunds snabbköp", + "customerContactName": "Christina Berglund", + "orderTotal": 601.83, + "orderDate": 1567371600000, + "requiredDate": 1569790800000, + "shippedDate": 1568149200000, + "requiredDateStart": 1569850200000, + "requiredDateEnd": 1569855600000, + "orderID": 10654, + "customerID": "BERGS", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 1, + "freight": 55.26, + "shipName": "Berglunds snabbköp", + "shipAddress": "Berguvsvägen  8", + "shipCity": "Luleå", + "shipRegion": "", + "shipPostalCode": "S-958 22", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Frankenversand", + "customerContactName": "Peter Franken", + "orderTotal": 1423, + "orderDate": 1568840400000, + "requiredDate": 1571259600000, + "shippedDate": 1569186000000, + "requiredDateStart": 1571299200000, + "requiredDateEnd": 1571304600000, + "orderID": 10675, + "customerID": "FRANK", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 2, + "freight": 31.85, + "shipName": "Frankenversand", + "shipAddress": "Berliner Platz 43", + "shipCity": "München", + "shipRegion": "", + "shipPostalCode": "80805", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 4451.7, + "orderDate": 1571605200000, + "requiredDate": 1575237600000, + "shippedDate": 1572300000000, + "requiredDateStart": 1575297000000, + "requiredDateEnd": 1575298800000, + "orderID": 10711, + "customerID": "SAVEA", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 2, + "freight": 52.41, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 2205.75, + "orderDate": 1571691600000, + "requiredDate": 1574114400000, + "shippedDate": 1572123600000, + "requiredDateStart": 1574173800000, + "requiredDateEnd": 1574179200000, + "orderID": 10714, + "customerID": "SAVEA", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 3, + "freight": 24.49, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 923.875, + "orderDate": 1572300000000, + "requiredDate": 1574719200000, + "shippedDate": 1572472800000, + "requiredDateStart": 1574775000000, + "requiredDateEnd": 1574780400000, + "orderID": 10721, + "customerID": "QUICK", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 3, + "freight": 48.92, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Bon app'", + "customerContactName": "Laurence Lebihan", + "orderTotal": 484.2625, + "orderDate": 1572904800000, + "requiredDate": 1575324000000, + "shippedDate": 1573682400000, + "requiredDateStart": 1575376200000, + "requiredDateEnd": 1575379800000, + "orderID": 10730, + "customerID": "BONAP", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 1, + "freight": 20.12, + "shipName": "Bon app-", + "shipAddress": "12, rue des Bouchers", + "shipCity": "Marseille", + "shipRegion": "", + "shipPostalCode": "13008", + "shipCountry": "France" +}, { + "customerCompanyName": "Rattlesnake Canyon Grocery", + "customerContactName": "Paula Wilson", + "orderTotal": 507, + "orderDate": 1575237600000, + "requiredDate": 1577656800000, + "shippedDate": 1575756000000, + "requiredDateStart": 1577712600000, + "requiredDateEnd": 1577716200000, + "orderID": 10761, + "customerID": "RATTC", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 2, + "freight": 18.66, + "shipName": "Rattlesnake Canyon Grocery", + "shipAddress": "2817 Milton Dr.", + "shipCity": "Albuquerque", + "shipRegion": "NM", + "shipPostalCode": "87110", + "shipCountry": "USA" +}, { + "customerCompanyName": "Reggiani Caseifici", + "customerContactName": "Maurizio Moroni", + "orderTotal": 1692.8, + "orderDate": 1577916000000, + "requiredDate": 1580335200000, + "shippedDate": 1578780000000, + "requiredDateStart": 1580394600000, + "requiredDateEnd": 1580396400000, + "orderID": 10812, + "customerID": "REGGC", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 1, + "freight": 59.78, + "shipName": "Reggiani Caseifici", + "shipAddress": "Strada Provinciale 124", + "shipCity": "Reggio Emilia", + "shipRegion": "", + "shipPostalCode": "42100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "LILA-Supermercado", + "customerContactName": "Carlos González", + "orderTotal": 2826, + "orderDate": 1578520800000, + "requiredDate": 1580940000000, + "shippedDate": 1578866400000, + "requiredDateStart": 1580988600000, + "requiredDateEnd": 1580994000000, + "orderID": 10823, + "customerID": "LILAS", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 2, + "freight": 163.97, + "shipName": "LILA-Supermercado", + "shipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "shipCity": "Barquisimeto", + "shipRegion": "Lara", + "shipPostalCode": "3508", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Suprêmes délices", + "customerContactName": "Pascale Cartrain", + "orderTotal": 4581, + "orderDate": 1579471200000, + "requiredDate": 1581890400000, + "shippedDate": 1580248800000, + "requiredDateStart": 1581948000000, + "requiredDateEnd": 1581953400000, + "orderID": 10841, + "customerID": "SUPRD", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 2, + "freight": 424.3, + "shipName": "Suprêmes délices", + "shipAddress": "Boulevard Tirou, 255", + "shipCity": "Charleroi", + "shipRegion": "", + "shipPostalCode": "B-6000", + "shipCountry": "Belgium" +}, { + "customerCompanyName": "Ricardo Adocicados", + "customerContactName": "Janete Limeira", + "orderTotal": 2603, + "orderDate": 1579989600000, + "requiredDate": 1582408800000, + "shippedDate": 1580594400000, + "requiredDateStart": 1582468200000, + "requiredDateEnd": 1582470000000, + "orderID": 10851, + "customerID": "RICAR", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 1, + "freight": 160.55, + "shipName": "Ricardo Adocicados", + "shipAddress": "Av. Copacabana, 267", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-890", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Berglunds snabbköp", + "customerContactName": "Christina Berglund", + "orderTotal": 1096.2, + "orderDate": 1580680800000, + "requiredDate": 1583186400000, + "shippedDate": 1581458400000, + "requiredDateStart": 1583233200000, + "requiredDateEnd": 1583238600000, + "orderID": 10866, + "customerID": "BERGS", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 1, + "freight": 109.11, + "shipName": "Berglunds snabbköp", + "shipAddress": "Berguvsvägen  8", + "shipCity": "Luleå", + "shipRegion": "", + "shipPostalCode": "S-958 22", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Seven Seas Imports", + "customerContactName": "Hari Kumar", + "orderTotal": 1630, + "orderDate": 1580767200000, + "requiredDate": 1583272800000, + "shippedDate": 1581199200000, + "requiredDateStart": 1583328600000, + "requiredDateEnd": 1583334000000, + "orderID": 10869, + "customerID": "SEVES", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 1, + "freight": 143.28, + "shipName": "Seven Seas Imports", + "shipAddress": "90 Wadhurst Rd.", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "OX15 4NB", + "shipCountry": "UK" +}, { + "customerCompanyName": "Wolski Zajazd", + "customerContactName": "Zbyszek Piestrzeniewicz", + "orderTotal": 160, + "orderDate": 1580767200000, + "requiredDate": 1583272800000, + "shippedDate": 1581544800000, + "requiredDateStart": 1583330400000, + "requiredDateEnd": 1583334000000, + "orderID": 10870, + "customerID": "WOLZA", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 3, + "freight": 12.04, + "shipName": "Wolski Zajazd", + "shipAddress": "ul. Filtrowa 68", + "shipCity": "Warszawa", + "shipRegion": "", + "shipPostalCode": "01-012", + "shipCountry": "Poland" +}, { + "customerCompanyName": "Godos Cocina Típica", + "customerContactName": "José Pedro Freyre", + "orderTotal": 2058.46, + "orderDate": 1580853600000, + "requiredDate": 1583359200000, + "shippedDate": 1581199200000, + "requiredDateStart": 1583418600000, + "requiredDateEnd": 1583422200000, + "orderID": 10872, + "customerID": "GODOS", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 2, + "freight": 175.32, + "shipName": "Godos Cocina Típica", + "shipAddress": "C/ Romero, 33", + "shipCity": "Sevilla", + "shipRegion": "", + "shipPostalCode": "41101", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Godos Cocina Típica", + "customerContactName": "José Pedro Freyre", + "orderTotal": 310, + "orderDate": 1580940000000, + "requiredDate": 1583445600000, + "shippedDate": 1581372000000, + "requiredDateStart": 1583505000000, + "requiredDateEnd": 1583508600000, + "orderID": 10874, + "customerID": "GODOS", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 2, + "freight": 19.58, + "shipName": "Godos Cocina Típica", + "shipAddress": "C/ Romero, 33", + "shipCity": "Sevilla", + "shipRegion": "", + "shipPostalCode": "41101", + "shipCountry": "Spain" +}, { + "customerCompanyName": "LILA-Supermercado", + "customerContactName": "Carlos González", + "orderTotal": 122.4, + "orderDate": 1582149600000, + "requiredDate": 1584655200000, + "shippedDate": 1582668000000, + "requiredDateStart": 1584703800000, + "requiredDateEnd": 1584709200000, + "orderID": 10899, + "customerID": "LILAS", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 3, + "freight": 1.21, + "shipName": "LILA-Supermercado", + "shipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "shipCity": "Barquisimeto", + "shipRegion": "Lara", + "shipPostalCode": "3508", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Hanari Carnes", + "customerContactName": "Mario Pontes", + "orderTotal": 742.5, + "orderDate": 1583186400000, + "requiredDate": 1585602000000, + "shippedDate": 1583359200000, + "requiredDateStart": 1585652400000, + "requiredDateEnd": 1585656000000, + "orderID": 10922, + "customerID": "HANAR", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 3, + "freight": 62.74, + "shipName": "Hanari Carnes", + "shipAddress": "Rua do Paço, 67", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "05454-876", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "LINO-Delicateses", + "customerContactName": "Felipe Izquierdo", + "orderTotal": 1659.535, + "orderDate": 1584396000000, + "requiredDate": 1588021200000, + "shippedDate": 1584655200000, + "requiredDateStart": 1588075200000, + "requiredDateEnd": 1588080600000, + "orderID": 10954, + "customerID": "LINOD", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 1, + "freight": 27.91, + "shipName": "LINO-Delicateses", + "shipAddress": "Ave. 5 de Mayo Porlamar", + "shipCity": "I. de Margarita", + "shipRegion": "Nueva Esparta", + "shipPostalCode": "4980", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Spécialités du monde", + "customerContactName": "Dominique Perrier", + "orderTotal": 210, + "orderDate": 1587502800000, + "requiredDate": 1589922000000, + "shippedDate": 1588107600000, + "requiredDateStart": 1589981400000, + "requiredDateEnd": 1589985000000, + "orderID": 11043, + "customerID": "SPECD", + "employeeID": "2757a92d-5eed-4215-818f-fdf15b6b27d0", + "teamID": 3, + "shipVia": 2, + "freight": 8.8, + "shipName": "Spécialités du monde", + "shipAddress": "25, rue Lauriston", + "shipCity": "Paris", + "shipRegion": "", + "shipPostalCode": "75016", + "shipCountry": "France" +}, { + "customerCompanyName": "Hanari Carnes", + "customerContactName": "Mario Pontes", + "orderTotal": 1552.6, + "orderDate": 1530997200000, + "requiredDate": 1533416400000, + "shippedDate": 1531342800000, + "requiredDateStart": 1533466800000, + "requiredDateEnd": 1533468600000, + "orderID": 10250, + "customerID": "HANAR", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 65.83, + "shipName": "Hanari Carnes", + "shipAddress": "Rua do Paço, 67", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "05454-876", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Suprêmes délices", + "customerContactName": "Pascale Cartrain", + "orderTotal": 3597.9, + "orderDate": 1531083600000, + "requiredDate": 1533502800000, + "shippedDate": 1531256400000, + "requiredDateStart": 1533547800000, + "requiredDateEnd": 1533551400000, + "orderID": 10252, + "customerID": "SUPRD", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 51.3, + "shipName": "Suprêmes délices", + "shipAddress": "Boulevard Tirou, 255", + "shipCity": "Charleroi", + "shipRegion": "", + "shipPostalCode": "B-6000", + "shipCountry": "Belgium" +}, { + "customerCompanyName": "HILARION-Abastos", + "customerContactName": "Carlos Hernández", + "orderTotal": 1119.9, + "orderDate": 1531688400000, + "requiredDate": 1534107600000, + "shippedDate": 1532206800000, + "requiredDateStart": 1534154400000, + "requiredDateEnd": 1534156200000, + "orderID": 10257, + "customerID": "HILAA", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 81.91, + "shipName": "HILARION-Abastos", + "shipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "shipCity": "San Cristóbal", + "shipRegion": "Táchira", + "shipPostalCode": "5022", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Centro comercial Moctezuma", + "customerContactName": "Francisco Chang", + "orderTotal": 100.8, + "orderDate": 1531861200000, + "requiredDate": 1534280400000, + "shippedDate": 1532466000000, + "requiredDateStart": 1534320000000, + "requiredDateEnd": 1534325400000, + "orderID": 10259, + "customerID": "CENTC", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 3.25, + "shipName": "Centro comercial Moctezuma", + "shipAddress": "Sierras de Granada 9993", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5022", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Ottilies Käseladen", + "customerContactName": "Henriette Pfalzheim", + "orderTotal": 1504.65, + "orderDate": 1531947600000, + "requiredDate": 1534366800000, + "shippedDate": 1532811600000, + "requiredDateStart": 1534410000000, + "requiredDateEnd": 1534411800000, + "orderID": 10260, + "customerID": "OTTIK", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 55.09, + "shipName": "Ottilies Käseladen", + "shipAddress": "Mehrheimerstr. 369", + "shipCity": "Köln", + "shipRegion": "", + "shipPostalCode": "50739", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Que Delícia", + "customerContactName": "Bernardo Batista", + "orderTotal": 448, + "orderDate": 1531947600000, + "requiredDate": 1534366800000, + "shippedDate": 1532898000000, + "requiredDateStart": 1534422600000, + "requiredDateEnd": 1534426200000, + "orderID": 10261, + "customerID": "QUEDE", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 3.05, + "shipName": "Que Delícia", + "shipAddress": "Rua da Panificadora, 12", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-673", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Frankenversand", + "customerContactName": "Peter Franken", + "orderTotal": 3536.6, + "orderDate": 1532811600000, + "requiredDate": 1535230800000, + "shippedDate": 1533502800000, + "requiredDateStart": 1535270400000, + "requiredDateEnd": 1535274000000, + "orderID": 10267, + "customerID": "FRANK", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 208.58, + "shipName": "Frankenversand", + "shipAddress": "Berliner Platz 43", + "shipCity": "München", + "shipRegion": "", + "shipPostalCode": "80805", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Romero y tomillo", + "customerContactName": "Alejandra Camino", + "orderTotal": 86.5, + "orderDate": 1534194000000, + "requiredDate": 1535403600000, + "shippedDate": 1534798800000, + "requiredDateStart": 1535459400000, + "requiredDateEnd": 1535464800000, + "orderID": 10281, + "customerID": "ROMEY", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 2.94, + "shipName": "Romero y tomillo", + "shipAddress": "Gran Vía, 1", + "shipCity": "Madrid", + "shipRegion": "", + "shipPostalCode": "28001", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Romero y tomillo", + "customerContactName": "Alejandra Camino", + "orderTotal": 155.4, + "orderDate": 1534280400000, + "requiredDate": 1536699600000, + "shippedDate": 1534798800000, + "requiredDateStart": 1536755400000, + "requiredDateEnd": 1536757200000, + "orderID": 10282, + "customerID": "ROMEY", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 12.69, + "shipName": "Romero y tomillo", + "shipAddress": "Gran Vía, 1", + "shipCity": "Madrid", + "shipRegion": "", + "shipPostalCode": "28001", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Lehmanns Marktstand", + "customerContactName": "Renate Messner", + "orderTotal": 1170.375, + "orderDate": 1534626000000, + "requiredDate": 1537045200000, + "shippedDate": 1535317200000, + "requiredDateStart": 1537084800000, + "requiredDateEnd": 1537086600000, + "orderID": 10284, + "customerID": "LEHMS", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 76.56, + "shipName": "Lehmanns Marktstand", + "shipAddress": "Magazinweg 7", + "shipCity": "Frankfurt a.M.", + "shipRegion": "", + "shipPostalCode": "60528", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Reggiani Caseifici", + "customerContactName": "Maurizio Moroni", + "orderTotal": 80.1, + "orderDate": 1534971600000, + "requiredDate": 1537390800000, + "shippedDate": 1535922000000, + "requiredDateStart": 1537435800000, + "requiredDateEnd": 1537439400000, + "orderID": 10288, + "customerID": "REGGC", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 7.45, + "shipName": "Reggiani Caseifici", + "shipAddress": "Strada Provinciale 124", + "shipCity": "Reggio Emilia", + "shipRegion": "", + "shipPostalCode": "42100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Rattlesnake Canyon Grocery", + "customerContactName": "Paula Wilson", + "orderTotal": 1887.6, + "orderDate": 1535576400000, + "requiredDate": 1537995600000, + "shippedDate": 1536094800000, + "requiredDateStart": 1538049600000, + "requiredDateEnd": 1538055000000, + "orderID": 10294, + "customerID": "RATTC", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 147.26, + "shipName": "Rattlesnake Canyon Grocery", + "shipAddress": "2817 Milton Dr.", + "shipCity": "Albuquerque", + "shipRegion": "NM", + "shipPostalCode": "87110", + "shipCountry": "USA" +}, { + "customerCompanyName": "Ricardo Adocicados", + "customerContactName": "Janete Limeira", + "orderTotal": 349.5, + "orderDate": 1536181200000, + "requiredDate": 1538600400000, + "shippedDate": 1536786000000, + "requiredDateStart": 1538658000000, + "requiredDateEnd": 1538661600000, + "orderID": 10299, + "customerID": "RICAR", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 29.76, + "shipName": "Ricardo Adocicados", + "shipAddress": "Av. Copacabana, 267", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-890", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Suprêmes délices", + "customerContactName": "Pascale Cartrain", + "orderTotal": 2708.8, + "orderDate": 1536526800000, + "requiredDate": 1538946000000, + "shippedDate": 1539032400000, + "requiredDateStart": 1538998200000, + "requiredDateEnd": 1539003600000, + "orderID": 10302, + "customerID": "SUPRD", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 6.27, + "shipName": "Suprêmes délices", + "shipAddress": "Boulevard Tirou, 255", + "shipCity": "Charleroi", + "shipRegion": "", + "shipPostalCode": "B-6000", + "shipCountry": "Belgium" +}, { + "customerCompanyName": "Island Trading", + "customerContactName": "Helen Bennett", + "orderTotal": 516.8, + "orderDate": 1537909200000, + "requiredDate": 1540328400000, + "shippedDate": 1538514000000, + "requiredDateStart": 1540371600000, + "requiredDateEnd": 1540375200000, + "orderID": 10315, + "customerID": "ISLAT", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 41.76, + "shipName": "Island Trading", + "shipAddress": "Garden House Crowther Way", + "shipCity": "Cowes", + "shipRegion": "Isle of Wight", + "shipPostalCode": "PO31 7PJ", + "shipCountry": "UK" +}, { + "customerCompanyName": "Königlich Essen", + "customerContactName": "Philip Cramer", + "orderTotal": 164.4, + "orderDate": 1538859600000, + "requiredDate": 1541282400000, + "shippedDate": 1539464400000, + "requiredDateStart": 1541323800000, + "requiredDateEnd": 1541325600000, + "orderID": 10323, + "customerID": "KOENE", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 4.88, + "shipName": "Königlich Essen", + "shipAddress": "Maubelstr. 90", + "shipCity": "Brandenburg", + "shipRegion": "", + "shipPostalCode": "14776", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Bólido Comidas preparadas", + "customerContactName": "Martín Sommer", + "orderTotal": 982, + "orderDate": 1539118800000, + "requiredDate": 1541541600000, + "shippedDate": 1539464400000, + "requiredDateStart": 1541601000000, + "requiredDateEnd": 1541604600000, + "orderID": 10326, + "customerID": "BOLID", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 77.92, + "shipName": "Bólido Comidas preparadas", + "shipAddress": "C/ Araquil, 67", + "shipCity": "Madrid", + "shipRegion": "", + "shipPostalCode": "28023", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Furia Bacalhau e Frutos do Mar", + "customerContactName": "Lino Rodriguez", + "orderTotal": 1168, + "orderDate": 1539464400000, + "requiredDate": 1541887200000, + "shippedDate": 1539723600000, + "requiredDateStart": 1541939400000, + "requiredDateEnd": 1541944800000, + "orderID": 10328, + "customerID": "FURIB", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 87.03, + "shipName": "Furia Bacalhau e Frutos do Mar", + "shipAddress": "Jardim das rosas n. 32", + "shipCity": "Lisboa", + "shipRegion": "", + "shipPostalCode": "1675", + "shipCountry": "Portugal" +}, { + "customerCompanyName": "Split Rail Beer & Ale", + "customerContactName": "Art Braunschweiger", + "orderTotal": 4578.43, + "orderDate": 1539550800000, + "requiredDate": 1543183200000, + "shippedDate": 1540242000000, + "requiredDateStart": 1543224600000, + "requiredDateEnd": 1543230000000, + "orderID": 10329, + "customerID": "SPLIR", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 191.67, + "shipName": "Split Rail Beer & Ale", + "shipAddress": "P.O. Box 555", + "shipCity": "Lander", + "shipRegion": "WY", + "shipPostalCode": "82520", + "shipCountry": "USA" +}, { + "customerCompanyName": "Frankenversand", + "customerContactName": "Peter Franken", + "orderTotal": 2467, + "orderDate": 1540328400000, + "requiredDate": 1542751200000, + "shippedDate": 1540764000000, + "requiredDateStart": 1542805200000, + "requiredDateEnd": 1542810600000, + "orderID": 10337, + "customerID": "FRANK", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 108.26, + "shipName": "Frankenversand", + "shipAddress": "Berliner Platz 43", + "shipCity": "München", + "shipRegion": "", + "shipPostalCode": "80805", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Old World Delicatessen", + "customerContactName": "Rene Phillips", + "orderTotal": 934.5, + "orderDate": 1540414800000, + "requiredDate": 1542837600000, + "shippedDate": 1540764000000, + "requiredDateStart": 1542893400000, + "requiredDateEnd": 1542898800000, + "orderID": 10338, + "customerID": "OLDWO", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 84.21, + "shipName": "Old World Delicatessen", + "shipAddress": "2743 Bering St.", + "shipCity": "Anchorage", + "shipRegion": "AK", + "shipPostalCode": "99508", + "shipCountry": "USA" +}, { + "customerCompanyName": "Frankenversand", + "customerContactName": "Peter Franken", + "orderTotal": 1840.64, + "orderDate": 1540850400000, + "requiredDate": 1542060000000, + "shippedDate": 1541282400000, + "requiredDateStart": 1542115800000, + "requiredDateEnd": 1542121200000, + "orderID": 10342, + "customerID": "FRANK", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 54.83, + "shipName": "Frankenversand", + "shipAddress": "Berliner Platz 43", + "shipCity": "München", + "shipRegion": "", + "shipPostalCode": "80805", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Lehmanns Marktstand", + "customerContactName": "Renate Messner", + "orderTotal": 1584, + "orderDate": 1540936800000, + "requiredDate": 1543356000000, + "shippedDate": 1541455200000, + "requiredDateStart": 1543415400000, + "requiredDateEnd": 1543419000000, + "orderID": 10343, + "customerID": "LEHMS", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 110.37, + "shipName": "Lehmanns Marktstand", + "shipAddress": "Magazinweg 7", + "shipCity": "Frankfurt a.M.", + "shipRegion": "", + "shipPostalCode": "60528", + "shipCountry": "Germany" +}, { + "customerCompanyName": "White Clover Markets", + "customerContactName": "Karl Jablonski", + "orderTotal": 2296, + "orderDate": 1541023200000, + "requiredDate": 1543442400000, + "shippedDate": 1541368800000, + "requiredDateStart": 1543489200000, + "requiredDateEnd": 1543494600000, + "orderID": 10344, + "customerID": "WHITC", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 23.29, + "shipName": "White Clover Markets", + "shipAddress": "1029 - 12th Ave. S.", + "shipCity": "Seattle", + "shipRegion": "WA", + "shipPostalCode": "98124", + "shipCountry": "USA" +}, { + "customerCompanyName": "Familia Arquibaldo", + "customerContactName": "Aria Cruz", + "orderTotal": 814.42, + "orderDate": 1541455200000, + "requiredDate": 1543874400000, + "shippedDate": 1541628000000, + "requiredDateStart": 1543914000000, + "requiredDateEnd": 1543915800000, + "orderID": 10347, + "customerID": "FAMIA", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 3.1, + "shipName": "Familia Arquibaldo", + "shipAddress": "Rua Orós, 92", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05442-030", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Die Wandernde Kuh", + "customerContactName": "Rita Müller", + "orderTotal": 363.6, + "orderDate": 1541541600000, + "requiredDate": 1543960800000, + "shippedDate": 1542232800000, + "requiredDateStart": 1544020200000, + "requiredDateEnd": 1544025600000, + "orderID": 10348, + "customerID": "WANDK", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 0.78, + "shipName": "Die Wandernde Kuh", + "shipAddress": "Adenauerallee 900", + "shipCity": "Stuttgart", + "shipRegion": "", + "shipPostalCode": "70563", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Blondesddsl père et fils", + "customerContactName": "Frédérique Citeaux", + "orderTotal": 7390.2, + "orderDate": 1542837600000, + "requiredDate": 1545256800000, + "shippedDate": 1543701600000, + "requiredDateStart": 1545298200000, + "requiredDateEnd": 1545300000000, + "orderID": 10360, + "customerID": "BLONP", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 131.7, + "shipName": "Blondel père et fils", + "shipAddress": "24, place Kléber", + "shipCity": "Strasbourg", + "shipRegion": "", + "shipPostalCode": "67000", + "shipCountry": "France" +}, { + "customerCompanyName": "Drachenblut Delikatessen", + "customerContactName": "Sven Ottlieb", + "orderTotal": 447.2, + "orderDate": 1543183200000, + "requiredDate": 1545602400000, + "shippedDate": 1543874400000, + "requiredDateStart": 1545658200000, + "requiredDateEnd": 1545661800000, + "orderID": 10363, + "customerID": "DRACD", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 30.54, + "shipName": "Drachenblut Delikatessen", + "shipAddress": "Walserweg 21", + "shipCity": "Aachen", + "shipRegion": "", + "shipPostalCode": "52066", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Hungry Owl All-Night Grocers", + "customerContactName": "Patricia McKenna", + "orderTotal": 1366.4, + "orderDate": 1543960800000, + "requiredDate": 1546380000000, + "shippedDate": 1544479200000, + "requiredDateStart": 1546430400000, + "requiredDateEnd": 1546432200000, + "orderID": 10373, + "customerID": "HUNGO", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 124.12, + "shipName": "Hungry Owl All-Night Grocers", + "shipAddress": "8 Johnstown Road", + "shipCity": "Cork", + "shipRegion": "Co. Cork", + "shipPostalCode": "", + "shipCountry": "Ireland" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 2900, + "orderDate": 1544652000000, + "requiredDate": 1547071200000, + "shippedDate": 1544911200000, + "requiredDateStart": 1547112600000, + "requiredDateEnd": 1547114400000, + "orderID": 10382, + "customerID": "ERNSH", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 94.77, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Bottom-Dollar Markets", + "customerContactName": "Elizabeth Lincoln", + "orderTotal": 1832.8, + "orderDate": 1545256800000, + "requiredDate": 1547676000000, + "shippedDate": 1545602400000, + "requiredDateStart": 1547722800000, + "requiredDateEnd": 1547728200000, + "orderID": 10389, + "customerID": "BOTTM", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 47.42, + "shipName": "Bottom-Dollar Markets", + "shipAddress": "23 Tsawassen Blvd.", + "shipCity": "Tsawassen", + "shipRegion": "BC", + "shipPostalCode": "T2F 8M4", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 855.015, + "orderDate": 1546466400000, + "requiredDate": 1548885600000, + "shippedDate": 1546984800000, + "requiredDateStart": 1548941400000, + "requiredDateEnd": 1548946800000, + "orderID": 10403, + "customerID": "ERNSH", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 73.79, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Simons bistro", + "customerContactName": "Jytte Petersen", + "orderTotal": 11188.4, + "orderDate": 1547589600000, + "requiredDate": 1550008800000, + "shippedDate": 1548626400000, + "requiredDateStart": 1550068200000, + "requiredDateEnd": 1550071800000, + "orderID": 10417, + "customerID": "SIMOB", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 70.29, + "shipName": "Simons bistro", + "shipAddress": "Vinbæltet 34", + "shipCity": "Kobenhavn", + "shipRegion": "", + "shipPostalCode": "1734", + "shipCountry": "Denmark" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 1814.8, + "orderDate": 1547676000000, + "requiredDate": 1550095200000, + "shippedDate": 1548280800000, + "requiredDateStart": 1550147400000, + "requiredDateEnd": 1550149200000, + "orderID": 10418, + "customerID": "QUICK", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 17.55, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Richter Supermarkt", + "customerContactName": "Michael Holz", + "orderTotal": 2097.6, + "orderDate": 1547935200000, + "requiredDate": 1550354400000, + "shippedDate": 1548799200000, + "requiredDateStart": 1550413800000, + "requiredDateEnd": 1550417400000, + "orderID": 10419, + "customerID": "RICSU", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 137.35, + "shipName": "Richter Supermarkt", + "shipAddress": "Starenweg 5", + "shipCity": "Genève", + "shipRegion": "", + "shipPostalCode": "1204", + "shipCountry": "Switzerland" +}, { + "customerCompanyName": "Galería del gastrónomo", + "customerContactName": "Eduardo Saavedra", + "orderTotal": 338.2, + "orderDate": 1548540000000, + "requiredDate": 1550959200000, + "shippedDate": 1549404000000, + "requiredDateStart": 1551002400000, + "requiredDateEnd": 1551007800000, + "orderID": 10426, + "customerID": "GALED", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 18.69, + "shipName": "Galería del gastronómo", + "shipAddress": "Rambla de Cataluña, 23", + "shipCity": "Barcelona", + "shipRegion": "", + "shipPostalCode": "8022", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Piccolo und mehr", + "customerContactName": "Georg Pipps", + "orderTotal": 651, + "orderDate": 1548540000000, + "requiredDate": 1550959200000, + "shippedDate": 1551564000000, + "requiredDateStart": 1551004200000, + "requiredDateEnd": 1551006000000, + "orderID": 10427, + "customerID": "PICCO", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 31.29, + "shipName": "Piccolo und mehr", + "shipAddress": "Geislweg 14", + "shipCity": "Salzburg", + "shipRegion": "", + "shipPostalCode": "5020", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 4899.2, + "orderDate": 1548799200000, + "requiredDate": 1550008800000, + "shippedDate": 1549144800000, + "requiredDateStart": 1550068200000, + "requiredDateEnd": 1550073600000, + "orderID": 10430, + "customerID": "ERNSH", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 458.78, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Bottom-Dollar Markets", + "customerContactName": "Elizabeth Lincoln", + "orderTotal": 1892.25, + "orderDate": 1548799200000, + "requiredDate": 1550008800000, + "shippedDate": 1549490400000, + "requiredDateStart": 1550068200000, + "requiredDateEnd": 1550071800000, + "orderID": 10431, + "customerID": "BOTTM", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 44.17, + "shipName": "Bottom-Dollar Markets", + "shipAddress": "23 Tsawassen Blvd.", + "shipCity": "Tsawassen", + "shipRegion": "BC", + "shipPostalCode": "T2F 8M4", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 4924.135, + "orderDate": 1549749600000, + "requiredDate": 1552168800000, + "shippedDate": 1551304800000, + "requiredDateStart": 1552208400000, + "requiredDateEnd": 1552210200000, + "orderID": 10440, + "customerID": "SAVEA", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 86.53, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Ricardo Adocicados", + "customerContactName": "Janete Limeira", + "orderTotal": 914.4, + "orderDate": 1550095200000, + "requiredDate": 1552514400000, + "shippedDate": 1551909600000, + "requiredDateStart": 1552555800000, + "requiredDateEnd": 1552557600000, + "orderID": 10447, + "customerID": "RICAR", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 68.66, + "shipName": "Ricardo Adocicados", + "shipAddress": "Av. Copacabana, 267", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-890", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Rancho grande", + "customerContactName": "Sergio Gutiérrez", + "orderTotal": 443.4, + "orderDate": 1550354400000, + "requiredDate": 1552773600000, + "shippedDate": 1550959200000, + "requiredDateStart": 1552825800000, + "requiredDateEnd": 1552829400000, + "orderID": 10448, + "customerID": "RANCH", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 38.82, + "shipName": "Rancho grande", + "shipAddress": "Av. del Libertador 900", + "shipCity": "Buenos Aires", + "shipRegion": "", + "shipPostalCode": "1010", + "shipCountry": "Argentina" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 3849.66, + "orderDate": 1550527200000, + "requiredDate": 1551736800000, + "shippedDate": 1552341600000, + "requiredDateStart": 1551787200000, + "requiredDateEnd": 1551789000000, + "orderID": 10451, + "customerID": "QUICK", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 189.09, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "La maison d'Asie", + "customerContactName": "Annette Roulet", + "orderTotal": 331.2, + "orderDate": 1550700000000, + "requiredDate": 1553119200000, + "shippedDate": 1551045600000, + "requiredDateStart": 1553164200000, + "requiredDateEnd": 1553166000000, + "orderID": 10454, + "customerID": "LAMAI", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 2.74, + "shipName": "La maison d-Asie", + "shipAddress": "1 rue Alsace-Lorraine", + "shipCity": "Toulouse", + "shipRegion": "", + "shipPostalCode": "31000", + "shipCountry": "France" +}, { + "customerCompanyName": "Victuailles en stock", + "customerContactName": "Mary Saveley", + "orderTotal": 1659.2, + "orderDate": 1551218400000, + "requiredDate": 1553637600000, + "shippedDate": 1551304800000, + "requiredDateStart": 1553689800000, + "requiredDateEnd": 1553695200000, + "orderID": 10459, + "customerID": "VICTE", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 25.09, + "shipName": "Victuailles en stock", + "shipAddress": "2, rue du Commerce", + "shipCity": "Lyon", + "shipRegion": "", + "shipPostalCode": "69004", + "shipCountry": "France" +}, { + "customerCompanyName": "Furia Bacalhau e Frutos do Mar", + "customerContactName": "Lino Rodriguez", + "orderTotal": 1609.28, + "orderDate": 1551650400000, + "requiredDate": 1554066000000, + "shippedDate": 1552514400000, + "requiredDateStart": 1554105600000, + "requiredDateEnd": 1554107400000, + "orderID": 10464, + "customerID": "FURIB", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 89, + "shipName": "Furia Bacalhau e Frutos do Mar", + "shipAddress": "Jardim das rosas n. 32", + "shipCity": "Lisboa", + "shipRegion": "", + "shipPostalCode": "1675", + "shipCountry": "Portugal" +}, { + "customerCompanyName": "Comércio Mineiro", + "customerContactName": "Pedro Afonso", + "orderTotal": 216, + "orderDate": 1551823200000, + "requiredDate": 1554238800000, + "shippedDate": 1552428000000, + "requiredDateStart": 1554291000000, + "requiredDateEnd": 1554296400000, + "orderID": 10466, + "customerID": "COMMI", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 11.93, + "shipName": "Comércio Mineiro", + "shipAddress": "Av. dos Lusíadas, 23", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05432-043", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Bon app'", + "customerContactName": "Laurence Lebihan", + "orderTotal": 1820.8, + "orderDate": 1552255200000, + "requiredDate": 1554670800000, + "shippedDate": 1552514400000, + "requiredDateStart": 1554712200000, + "requiredDateEnd": 1554714000000, + "orderID": 10470, + "customerID": "BONAP", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 64.56, + "shipName": "Bon app-", + "shipAddress": "12, rue des Bouchers", + "shipCity": "Marseille", + "shipRegion": "", + "shipPostalCode": "13008", + "shipCountry": "France" +}, { + "customerCompanyName": "LINO-Delicateses", + "customerContactName": "Felipe Izquierdo", + "orderTotal": 1584, + "orderDate": 1553464800000, + "requiredDate": 1554670800000, + "shippedDate": 1553983200000, + "requiredDateStart": 1554728400000, + "requiredDateEnd": 1554733800000, + "orderID": 10485, + "customerID": "LINOD", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 64.45, + "shipName": "LINO-Delicateses", + "shipAddress": "Ave. 5 de Mayo Porlamar", + "shipCity": "I. de Margarita", + "shipRegion": "Nueva Esparta", + "shipPostalCode": "4980", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "La maison d'Asie", + "customerContactName": "Annette Roulet", + "orderTotal": 608.4, + "orderDate": 1554152400000, + "requiredDate": 1556571600000, + "shippedDate": 1554843600000, + "requiredDateStart": 1556627400000, + "requiredDateEnd": 1556629200000, + "orderID": 10493, + "customerID": "LAMAI", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 10.64, + "shipName": "La maison d-Asie", + "shipAddress": "1 rue Alsace-Lorraine", + "shipCity": "Toulouse", + "shipRegion": "", + "shipPostalCode": "31000", + "shipCountry": "France" +}, { + "customerCompanyName": "Comércio Mineiro", + "customerContactName": "Pedro Afonso", + "orderTotal": 912, + "orderDate": 1554152400000, + "requiredDate": 1556571600000, + "shippedDate": 1554757200000, + "requiredDateStart": 1556622000000, + "requiredDateEnd": 1556625600000, + "orderID": 10494, + "customerID": "COMMI", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 65.99, + "shipName": "Comércio Mineiro", + "shipAddress": "Av. dos Lusíadas, 23", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05432-043", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "LILA-Supermercado", + "customerContactName": "Carlos González", + "orderTotal": 1412, + "orderDate": 1554670800000, + "requiredDate": 1557090000000, + "shippedDate": 1555362000000, + "requiredDateStart": 1557149400000, + "requiredDateEnd": 1557154800000, + "orderID": 10499, + "customerID": "LILAS", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 102.02, + "shipName": "LILA-Supermercado", + "shipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "shipCity": "Barquisimeto", + "shipRegion": "Lara", + "shipPostalCode": "3508", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "White Clover Markets", + "customerContactName": "Karl Jablonski", + "orderTotal": 1388.5, + "orderDate": 1554930000000, + "requiredDate": 1557349200000, + "shippedDate": 1555534800000, + "requiredDateStart": 1557388800000, + "requiredDateEnd": 1557392400000, + "orderID": 10504, + "customerID": "WHITC", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 59.13, + "shipName": "White Clover Markets", + "shipAddress": "1029 - 12th Ave. S.", + "shipCity": "Seattle", + "shipRegion": "WA", + "shipPostalCode": "98124", + "shipCountry": "USA" +}, { + "customerCompanyName": "Blauer See Delikatessen", + "customerContactName": "Hanna Moos", + "orderTotal": 136.8, + "orderDate": 1555448400000, + "requiredDate": 1557867600000, + "shippedDate": 1556485200000, + "requiredDateStart": 1557909000000, + "requiredDateEnd": 1557912600000, + "orderID": 10509, + "customerID": "BLAUS", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 0.15, + "shipName": "Blauer See Delikatessen", + "shipAddress": "Forsterstr. 57", + "shipCity": "Mannheim", + "shipRegion": "", + "shipPostalCode": "68306", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Bon app'", + "customerContactName": "Laurence Lebihan", + "orderTotal": 2550, + "orderDate": 1555534800000, + "requiredDate": 1557954000000, + "shippedDate": 1555794000000, + "requiredDateStart": 1558009800000, + "requiredDateEnd": 1558011600000, + "orderID": 10511, + "customerID": "BONAP", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 350.64, + "shipName": "Bon app-", + "shipAddress": "12, rue des Bouchers", + "shipCity": "Marseille", + "shipRegion": "", + "shipPostalCode": "13008", + "shipCountry": "France" +}, { + "customerCompanyName": "Tortuga Restaurante", + "customerContactName": "Miguel Angel Paolino", + "orderTotal": 4150.05, + "orderDate": 1556139600000, + "requiredDate": 1557349200000, + "shippedDate": 1557003600000, + "requiredDateStart": 1557392400000, + "requiredDateEnd": 1557397800000, + "orderID": 10518, + "customerID": "TORTU", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 218.15, + "shipName": "Tortuga Restaurante", + "shipAddress": "Avda. Azteca 123", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5033", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Lehmanns Marktstand", + "customerContactName": "Renate Messner", + "orderTotal": 2318.24, + "orderDate": 1556571600000, + "requiredDate": 1558990800000, + "shippedDate": 1557090000000, + "requiredDateStart": 1559050200000, + "requiredDateEnd": 1559052000000, + "orderID": 10522, + "customerID": "LEHMS", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 45.33, + "shipName": "Lehmanns Marktstand", + "shipAddress": "Magazinweg 7", + "shipCity": "Frankfurt a.M.", + "shipRegion": "", + "shipPostalCode": "60528", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Wartian Herkku", + "customerContactName": "Pirkko Koskitalo", + "orderTotal": 1151.4, + "orderDate": 1557003600000, + "requiredDate": 1559422800000, + "shippedDate": 1557867600000, + "requiredDateStart": 1559466000000, + "requiredDateEnd": 1559471400000, + "orderID": 10526, + "customerID": "WARTH", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 58.59, + "shipName": "Wartian Herkku", + "shipAddress": "Torikatu 38", + "shipCity": "Oulu", + "shipRegion": "", + "shipPostalCode": "90110", + "shipCountry": "Finland" +}, { + "customerCompanyName": "Antonio Moreno Taquería", + "customerContactName": "Antonio Moreno", + "orderTotal": 1940.85, + "orderDate": 1557694800000, + "requiredDate": 1560114000000, + "shippedDate": 1558386000000, + "requiredDateStart": 1560171600000, + "requiredDateEnd": 1560173400000, + "orderID": 10535, + "customerID": "ANTON", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 15.64, + "shipName": "Antonio Moreno Taquería", + "shipAddress": "Mataderos  2312", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5023", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Lonesome Pine Restaurant", + "customerContactName": "Fran Wilson", + "orderTotal": 417.2, + "orderDate": 1558386000000, + "requiredDate": 1560805200000, + "shippedDate": 1559163600000, + "requiredDateStart": 1560862800000, + "requiredDateEnd": 1560864600000, + "orderID": 10544, + "customerID": "LONEP", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 24.91, + "shipName": "Lonesome Pine Restaurant", + "shipAddress": "89 Chiaroscuro Rd.", + "shipCity": "Portland", + "shipRegion": "OR", + "shipPostalCode": "97219", + "shipCountry": "USA" +}, { + "customerCompanyName": "Furia Bacalhau e Frutos do Mar", + "customerContactName": "Lino Rodriguez", + "orderTotal": 1677.3, + "orderDate": 1558990800000, + "requiredDate": 1562619600000, + "shippedDate": 1559768400000, + "requiredDateStart": 1562679000000, + "requiredDateEnd": 1562684400000, + "orderID": 10551, + "customerID": "FURIB", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 72.95, + "shipName": "Furia Bacalhau e Frutos do Mar", + "shipAddress": "Jardim das rosas n. 32", + "shipCity": "Lisboa", + "shipRegion": "", + "shipPostalCode": "1675", + "shipCountry": "Portugal" +}, { + "customerCompanyName": "Ottilies Käseladen", + "customerContactName": "Henriette Pfalzheim", + "orderTotal": 1728.525, + "orderDate": 1559163600000, + "requiredDate": 1561582800000, + "shippedDate": 1559682000000, + "requiredDateStart": 1561624200000, + "requiredDateEnd": 1561627800000, + "orderID": 10554, + "customerID": "OTTIK", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 120.97, + "shipName": "Ottilies Käseladen", + "shipAddress": "Mehrheimerstr. 369", + "shipCity": "Köln", + "shipRegion": "", + "shipPostalCode": "50739", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Rattlesnake Canyon Grocery", + "customerContactName": "Paula Wilson", + "orderTotal": 1234.05, + "orderDate": 1560114000000, + "requiredDate": 1562533200000, + "shippedDate": 1560632400000, + "requiredDateStart": 1562587200000, + "requiredDateEnd": 1562592600000, + "orderID": 10564, + "customerID": "RATTC", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 13.75, + "shipName": "Rattlesnake Canyon Grocery", + "shipAddress": "2817 Milton Dr.", + "shipCity": "Albuquerque", + "shipRegion": "NM", + "shipPostalCode": "87110", + "shipCountry": "USA" +}, { + "customerCompanyName": "Trail's Head Gourmet Provisioners", + "customerContactName": "Helvetius Nagy", + "orderTotal": 764.3, + "orderDate": 1560891600000, + "requiredDate": 1563310800000, + "shippedDate": 1561842000000, + "requiredDateStart": 1563370200000, + "requiredDateEnd": 1563373800000, + "orderID": 10574, + "customerID": "TRAIH", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 37.6, + "shipName": "Trail-s Head Gourmet Provisioners", + "shipAddress": "722 DaVinci Blvd.", + "shipCity": "Kirkland", + "shipRegion": "WA", + "shipPostalCode": "98034", + "shipCountry": "USA" +}, { + "customerCompanyName": "B's Beverages", + "customerContactName": "Victoria Ashworth", + "orderTotal": 477, + "orderDate": 1561323600000, + "requiredDate": 1563742800000, + "shippedDate": 1564002000000, + "requiredDateStart": 1563786000000, + "requiredDateEnd": 1563789600000, + "orderID": 10578, + "customerID": "BSBEV", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 29.6, + "shipName": "B-s Beverages", + "shipAddress": "Fauntleroy Circus", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "EC2 5NT", + "shipCountry": "UK" +}, { + "customerCompanyName": "Ottilies Käseladen", + "customerContactName": "Henriette Pfalzheim", + "orderTotal": 1013.745, + "orderDate": 1561496400000, + "requiredDate": 1563915600000, + "shippedDate": 1561928400000, + "requiredDateStart": 1563971400000, + "requiredDateEnd": 1563973200000, + "orderID": 10580, + "customerID": "OTTIK", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 75.89, + "shipName": "Ottilies Käseladen", + "shipAddress": "Mehrheimerstr. 369", + "shipCity": "Köln", + "shipRegion": "", + "shipPostalCode": "50739", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Blondesddsl père et fils", + "customerContactName": "Frédérique Citeaux", + "orderTotal": 593.75, + "orderDate": 1561842000000, + "requiredDate": 1564261200000, + "shippedDate": 1562187600000, + "requiredDateStart": 1564315200000, + "requiredDateEnd": 1564318800000, + "orderID": 10584, + "customerID": "BLONP", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 59.14, + "shipName": "Blondel père et fils", + "shipAddress": "24, place Kléber", + "shipCity": "Strasbourg", + "shipRegion": "", + "shipPostalCode": "67000", + "shipCountry": "France" +}, { + "customerCompanyName": "Mère Paillarde", + "customerContactName": "Jean Fresnière", + "orderTotal": 1101, + "orderDate": 1562446800000, + "requiredDate": 1564866000000, + "shippedDate": 1563051600000, + "requiredDateStart": 1564916400000, + "requiredDateEnd": 1564918200000, + "orderID": 10590, + "customerID": "MEREP", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 44.77, + "shipName": "Mère Paillarde", + "shipAddress": "43 rue St. Laurent", + "shipCity": "Montréal", + "shipRegion": "Québec", + "shipPostalCode": "H1J 1C3", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Hungry Coyote Import Store", + "customerContactName": "Yoshi Latimer", + "orderTotal": 479.8, + "orderDate": 1563224400000, + "requiredDate": 1565643600000, + "shippedDate": 1563656400000, + "requiredDateStart": 1565688600000, + "requiredDateEnd": 1565690400000, + "orderID": 10600, + "customerID": "HUNGC", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 45.13, + "shipName": "Hungry Coyote Import Store", + "shipAddress": "City Center Plaza 516 Main St.", + "shipCity": "Elgin", + "shipRegion": "OR", + "shipPostalCode": "97827", + "shipCountry": "USA" +}, { + "customerCompanyName": "Tradição Hipermercados", + "customerContactName": "Anabela Domingues", + "orderTotal": 1130.4, + "orderDate": 1563742800000, + "requiredDate": 1566162000000, + "shippedDate": 1564520400000, + "requiredDateStart": 1566219600000, + "requiredDateEnd": 1566225000000, + "orderID": 10606, + "customerID": "TRADH", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 79.4, + "shipName": "Tradiçao Hipermercados", + "shipAddress": "Av. Inês de Castro, 414", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05634-030", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Toms Spezialitäten", + "customerContactName": "Karin Josephs", + "orderTotal": 1064, + "orderDate": 1563829200000, + "requiredDate": 1566248400000, + "shippedDate": 1564606800000, + "requiredDateStart": 1566304200000, + "requiredDateEnd": 1566307800000, + "orderID": 10608, + "customerID": "TOMSP", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 27.79, + "shipName": "Toms Spezialitäten", + "shipAddress": "Luisenstr. 48", + "shipCity": "Münster", + "shipRegion": "", + "shipPostalCode": "44087", + "shipCountry": "Germany" +}, { + "customerCompanyName": "HILARION-Abastos", + "customerContactName": "Carlos Hernández", + "orderTotal": 353.2, + "orderDate": 1564347600000, + "requiredDate": 1566766800000, + "shippedDate": 1564606800000, + "requiredDateStart": 1566819000000, + "requiredDateEnd": 1566822600000, + "orderID": 10613, + "customerID": "HILAA", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 8.11, + "shipName": "HILARION-Abastos", + "shipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "shipCity": "San Cristóbal", + "shipRegion": "Táchira", + "shipPostalCode": "5022", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Great Lakes Food Market", + "customerContactName": "Howard Snyder", + "orderTotal": 1402.5, + "orderDate": 1564520400000, + "requiredDate": 1566939600000, + "shippedDate": 1564866000000, + "requiredDateStart": 1566997200000, + "requiredDateEnd": 1567000800000, + "orderID": 10617, + "customerID": "GREAL", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 18.53, + "shipName": "Great Lakes Food Market", + "shipAddress": "2732 Baker Blvd.", + "shipCity": "Eugene", + "shipRegion": "OR", + "shipPostalCode": "97403", + "shipCountry": "USA" +}, { + "customerCompanyName": "Island Trading", + "customerContactName": "Helen Bennett", + "orderTotal": 758.5, + "orderDate": 1564952400000, + "requiredDate": 1567371600000, + "shippedDate": 1565470800000, + "requiredDateStart": 1567414800000, + "requiredDateEnd": 1567418400000, + "orderID": 10621, + "customerID": "ISLAT", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 23.73, + "shipName": "Island Trading", + "shipAddress": "Garden House Crowther Way", + "shipCity": "Cowes", + "shipRegion": "Isle of Wight", + "shipPostalCode": "PO31 7PJ", + "shipCountry": "UK" +}, { + "customerCompanyName": "Ricardo Adocicados", + "customerContactName": "Janete Limeira", + "orderTotal": 560, + "orderDate": 1565038800000, + "requiredDate": 1567458000000, + "shippedDate": 1565470800000, + "requiredDateStart": 1567499400000, + "requiredDateEnd": 1567503000000, + "orderID": 10622, + "customerID": "RICAR", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 50.97, + "shipName": "Ricardo Adocicados", + "shipAddress": "Av. Copacabana, 267", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-890", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "The Cracker Box", + "customerContactName": "Liu Wong", + "orderTotal": 1393.24, + "orderDate": 1565125200000, + "requiredDate": 1567544400000, + "shippedDate": 1566162000000, + "requiredDateStart": 1567594800000, + "requiredDateEnd": 1567598400000, + "orderID": 10624, + "customerID": "THECR", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 94.8, + "shipName": "The Cracker Box", + "shipAddress": "55 Grizzly Peak Rd.", + "shipCity": "Butte", + "shipRegion": "MT", + "shipPostalCode": "59801", + "shipCountry": "USA" +}, { + "customerCompanyName": "Blondesddsl père et fils", + "customerContactName": "Frédérique Citeaux", + "orderTotal": 450, + "orderDate": 1565557200000, + "requiredDate": 1567976400000, + "shippedDate": 1566248400000, + "requiredDateStart": 1568017800000, + "requiredDateEnd": 1568021400000, + "orderID": 10628, + "customerID": "BLONP", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 30.36, + "shipName": "Blondel père et fils", + "shipAddress": "24, place Kléber", + "shipCity": "Strasbourg", + "shipRegion": "", + "shipPostalCode": "67000", + "shipCountry": "France" +}, { + "customerCompanyName": "Godos Cocina Típica", + "customerContactName": "José Pedro Freyre", + "orderTotal": 2775.05, + "orderDate": 1565557200000, + "requiredDate": 1567976400000, + "shippedDate": 1566248400000, + "requiredDateStart": 1568035800000, + "requiredDateEnd": 1568039400000, + "orderID": 10629, + "customerID": "GODOS", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 85.46, + "shipName": "Godos Cocina Típica", + "shipAddress": "C/ Romero, 33", + "shipCity": "Sevilla", + "shipRegion": "", + "shipPostalCode": "41101", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Folies gourmandes", + "customerContactName": "Martine Rancé", + "orderTotal": 4985.5, + "orderDate": 1565816400000, + "requiredDate": 1568235600000, + "shippedDate": 1566334800000, + "requiredDateStart": 1568295000000, + "requiredDateEnd": 1568298600000, + "orderID": 10634, + "customerID": "FOLIG", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 487.38, + "shipName": "Folies gourmandes", + "shipAddress": "184, chaussée de Tournai", + "shipCity": "Lille", + "shipRegion": "", + "shipPostalCode": "59000", + "shipCountry": "France" +}, { + "customerCompanyName": "Wartian Herkku", + "customerContactName": "Pirkko Koskitalo", + "orderTotal": 629.5, + "orderDate": 1566162000000, + "requiredDate": 1568581200000, + "shippedDate": 1566766800000, + "requiredDateStart": 1568629800000, + "requiredDateEnd": 1568631600000, + "orderID": 10636, + "customerID": "WARTH", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 1.15, + "shipName": "Wartian Herkku", + "shipAddress": "Torikatu 38", + "shipCity": "Oulu", + "shipRegion": "", + "shipPostalCode": "90110", + "shipCountry": "Finland" +}, { + "customerCompanyName": "Die Wandernde Kuh", + "customerContactName": "Rita Müller", + "orderTotal": 708.75, + "orderDate": 1566334800000, + "requiredDate": 1568754000000, + "shippedDate": 1566939600000, + "requiredDateStart": 1568799000000, + "requiredDateEnd": 1568802600000, + "orderID": 10640, + "customerID": "WANDK", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 23.55, + "shipName": "Die Wandernde Kuh", + "shipAddress": "Adenauerallee 900", + "shipCity": "Stuttgart", + "shipRegion": "", + "shipPostalCode": "70563", + "shipCountry": "Germany" +}, { + "customerCompanyName": "HILARION-Abastos", + "customerContactName": "Carlos Hernández", + "orderTotal": 2054, + "orderDate": 1566421200000, + "requiredDate": 1568840400000, + "shippedDate": 1566766800000, + "requiredDateStart": 1568896200000, + "requiredDateEnd": 1568899800000, + "orderID": 10641, + "customerID": "HILAA", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 179.61, + "shipName": "HILARION-Abastos", + "shipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "shipCity": "San Cristóbal", + "shipRegion": "Táchira", + "shipPostalCode": "5022", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Hanari Carnes", + "customerContactName": "Mario Pontes", + "orderTotal": 1535, + "orderDate": 1566766800000, + "requiredDate": 1569186000000, + "shippedDate": 1567371600000, + "requiredDateStart": 1569243600000, + "requiredDateEnd": 1569247200000, + "orderID": 10645, + "customerID": "HANAR", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 12.41, + "shipName": "Hanari Carnes", + "shipAddress": "Rua do Paço, 67", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "05454-876", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Que Delícia", + "customerContactName": "Bernardo Batista", + "orderTotal": 636, + "orderDate": 1566853200000, + "requiredDate": 1568062800000, + "shippedDate": 1567458000000, + "requiredDateStart": 1568116800000, + "requiredDateEnd": 1568120400000, + "orderID": 10647, + "customerID": "QUEDE", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 45.54, + "shipName": "Que Delícia", + "shipAddress": "Rua da Panificadora, 12", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-673", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Gourmet Lanchonetes", + "customerContactName": "André Fonseca", + "orderTotal": 318.835, + "orderDate": 1567285200000, + "requiredDate": 1569704400000, + "shippedDate": 1567890000000, + "requiredDateStart": 1569756600000, + "requiredDateEnd": 1569758400000, + "orderID": 10652, + "customerID": "GOURL", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 7.14, + "shipName": "Gourmet Lanchonetes", + "shipAddress": "Av. Brasil, 442", + "shipCity": "Campinas", + "shipRegion": "SP", + "shipPostalCode": "04876-786", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 4464.6, + "orderDate": 1567630800000, + "requiredDate": 1570050000000, + "shippedDate": 1567890000000, + "requiredDateStart": 1570096800000, + "requiredDateEnd": 1570100400000, + "orderID": 10658, + "customerID": "QUICK", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 364.15, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Frankenversand", + "customerContactName": "Peter Franken", + "orderTotal": 2301.75, + "orderDate": 1568581200000, + "requiredDate": 1571000400000, + "shippedDate": 1568754000000, + "requiredDateStart": 1571043600000, + "requiredDateEnd": 1571045400000, + "orderID": 10670, + "customerID": "FRANK", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 203.48, + "shipName": "Frankenversand", + "shipAddress": "Berliner Platz 43", + "shipCity": "München", + "shipRegion": "", + "shipPostalCode": "80805", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Island Trading", + "customerContactName": "Helen Bennett", + "orderTotal": 45, + "orderDate": 1568754000000, + "requiredDate": 1571173200000, + "shippedDate": 1569790800000, + "requiredDateStart": 1571214600000, + "requiredDateEnd": 1571220000000, + "orderID": 10674, + "customerID": "ISLAT", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 0.9, + "shipName": "Island Trading", + "shipAddress": "Garden House Crowther Way", + "shipCity": "Cowes", + "shipRegion": "Isle of Wight", + "shipPostalCode": "PO31 7PJ", + "shipCountry": "UK" +}, { + "customerCompanyName": "Gourmet Lanchonetes", + "customerContactName": "André Fonseca", + "orderTotal": 801.1, + "orderDate": 1569704400000, + "requiredDate": 1570914000000, + "shippedDate": 1570050000000, + "requiredDateStart": 1570960800000, + "requiredDateEnd": 1570962600000, + "orderID": 10685, + "customerID": "GOURL", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 33.75, + "shipName": "Gourmet Lanchonetes", + "shipAddress": "Av. Brasil, 442", + "shipCity": "Campinas", + "shipRegion": "SP", + "shipPostalCode": "04876-786", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Vaffeljernet", + "customerContactName": "Palle Ibsen", + "orderTotal": 3160.6, + "orderDate": 1569877200000, + "requiredDate": 1571086800000, + "shippedDate": 1570395600000, + "requiredDateStart": 1571137200000, + "requiredDateEnd": 1571140800000, + "orderID": 10688, + "customerID": "VAFFE", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 299.09, + "shipName": "Vaffeljernet", + "shipAddress": "Smagsloget 45", + "shipCity": "Århus", + "shipRegion": "", + "shipPostalCode": "8200", + "shipCountry": "Denmark" +}, { + "customerCompanyName": "Alfreds Futterkiste", + "customerContactName": "Maria Anders", + "orderTotal": 878, + "orderDate": 1570050000000, + "requiredDate": 1572472800000, + "shippedDate": 1570914000000, + "requiredDateStart": 1572526800000, + "requiredDateEnd": 1572528600000, + "orderID": 10692, + "customerID": "ALFKI", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 61.02, + "shipName": "Alfred-s Futterkiste", + "shipAddress": "Obere Str. 57", + "shipCity": "Berlin", + "shipRegion": "", + "shipPostalCode": "12209", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 3436.4435, + "orderDate": 1570568400000, + "requiredDate": 1572991200000, + "shippedDate": 1571259600000, + "requiredDateStart": 1573050600000, + "requiredDateEnd": 1573054200000, + "orderID": 10698, + "customerID": "ERNSH", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 272.47, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Alfreds Futterkiste", + "customerContactName": "Maria Anders", + "orderTotal": 330, + "orderDate": 1570914000000, + "requiredDate": 1574546400000, + "shippedDate": 1571605200000, + "requiredDateStart": 1574586000000, + "requiredDateEnd": 1574587800000, + "orderID": 10702, + "customerID": "ALFKI", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 23.94, + "shipName": "Alfred-s Futterkiste", + "shipAddress": "Obere Str. 57", + "shipCity": "Berlin", + "shipRegion": "", + "shipPostalCode": "12209", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Around the Horn", + "customerContactName": "Thomas Hardy", + "orderTotal": 1641, + "orderDate": 1571173200000, + "requiredDate": 1572386400000, + "shippedDate": 1571778000000, + "requiredDateStart": 1572431400000, + "requiredDateEnd": 1572435000000, + "orderID": 10707, + "customerID": "AROUT", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 21.74, + "shipName": "Around the Horn", + "shipAddress": "Brook Farm Stratford St. Mary", + "shipCity": "Colchester", + "shipRegion": "Essex", + "shipPostalCode": "CO7 6JX", + "shipCountry": "UK" +}, { + "customerCompanyName": "Rancho grande", + "customerContactName": "Sergio Gutiérrez", + "orderTotal": 706, + "orderDate": 1571864400000, + "requiredDate": 1574287200000, + "shippedDate": 1572123600000, + "requiredDateStart": 1574343000000, + "requiredDateEnd": 1574346600000, + "orderID": 10716, + "customerID": "RANCH", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 22.57, + "shipName": "Rancho grande", + "shipAddress": "Av. del Libertador 900", + "shipCity": "Buenos Aires", + "shipRegion": "", + "shipPostalCode": "1010", + "shipCountry": "Argentina" +}, { + "customerCompanyName": "Familia Arquibaldo", + "customerContactName": "Aria Cruz", + "orderTotal": 287.8, + "orderDate": 1572472800000, + "requiredDate": 1574892000000, + "shippedDate": 1572904800000, + "requiredDateStart": 1574933400000, + "requiredDateEnd": 1574938800000, + "orderID": 10725, + "customerID": "FAMIA", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 10.83, + "shipName": "Familia Arquibaldo", + "shipAddress": "Rua Orós, 92", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05442-030", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Eastern Connection", + "customerContactName": "Ann Devon", + "orderTotal": 655, + "orderDate": 1572732000000, + "requiredDate": 1573941600000, + "shippedDate": 1575496800000, + "requiredDateStart": 1573986600000, + "requiredDateEnd": 1573990200000, + "orderID": 10726, + "customerID": "EASTC", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 16.56, + "shipName": "Eastern Connection", + "shipAddress": "35 King George", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "WX3 6FW", + "shipCountry": "UK" +}, { + "customerCompanyName": "Queen Cozinha", + "customerContactName": "Lúcia Carvalho", + "orderTotal": 1296.75, + "orderDate": 1572818400000, + "requiredDate": 1575237600000, + "shippedDate": 1573423200000, + "requiredDateStart": 1575288000000, + "requiredDateEnd": 1575289800000, + "orderID": 10728, + "customerID": "QUEEN", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 58.33, + "shipName": "Queen Cozinha", + "shipAddress": "Alameda dos Canàrios, 891", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05487-020", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "White Clover Markets", + "customerContactName": "Karl Jablonski", + "orderTotal": 1416, + "orderDate": 1573596000000, + "requiredDate": 1576015200000, + "shippedDate": 1574632800000, + "requiredDateStart": 1576065600000, + "requiredDateEnd": 1576069200000, + "orderID": 10740, + "customerID": "WHITC", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 81.88, + "shipName": "White Clover Markets", + "shipAddress": "1029 - 12th Ave. S.", + "shipCity": "Seattle", + "shipRegion": "WA", + "shipPostalCode": "98124", + "shipCountry": "USA" +}, { + "customerCompanyName": "Around the Horn", + "customerContactName": "Thomas Hardy", + "orderTotal": 228, + "orderDate": 1573682400000, + "requiredDate": 1574892000000, + "shippedDate": 1574028000000, + "requiredDateStart": 1574946000000, + "requiredDateEnd": 1574949600000, + "orderID": 10741, + "customerID": "AROUT", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 10.96, + "shipName": "Around the Horn", + "shipAddress": "Brook Farm Stratford St. Mary", + "shipCity": "Colchester", + "shipRegion": "Essex", + "shipPostalCode": "CO7 6JX", + "shipCountry": "UK" +}, { + "customerCompanyName": "Island Trading", + "customerContactName": "Helen Bennett", + "orderTotal": 1080, + "orderDate": 1574200800000, + "requiredDate": 1576620000000, + "shippedDate": 1576706400000, + "requiredDateStart": 1576677600000, + "requiredDateEnd": 1576679400000, + "orderID": 10749, + "customerID": "ISLAT", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 61.53, + "shipName": "Island Trading", + "shipAddress": "Garden House Crowther Way", + "shipCity": "Cowes", + "shipRegion": "Isle of Wight", + "shipPostalCode": "PO31 7PJ", + "shipCountry": "UK" +}, { + "customerCompanyName": "Bon app'", + "customerContactName": "Laurence Lebihan", + "orderTotal": 1948.5, + "orderDate": 1574719200000, + "requiredDate": 1577138400000, + "shippedDate": 1574892000000, + "requiredDateStart": 1577178000000, + "requiredDateEnd": 1577179800000, + "orderID": 10755, + "customerID": "BONAP", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 16.71, + "shipName": "Bon app-", + "shipAddress": "12, rue des Bouchers", + "shipCity": "Marseille", + "shipRegion": "", + "shipPostalCode": "13008", + "shipCountry": "France" +}, { + "customerCompanyName": "Maison Dewey", + "customerContactName": "Catherine Dewey", + "orderTotal": 2917, + "orderDate": 1575151200000, + "requiredDate": 1577570400000, + "shippedDate": 1575928800000, + "requiredDateStart": 1577629800000, + "requiredDateEnd": 1577631600000, + "orderID": 10760, + "customerID": "MAISD", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 155.64, + "shipName": "Maison Dewey", + "shipAddress": "Rue Joseph-Bens 532", + "shipCity": "Bruxelles", + "shipRegion": "", + "shipPostalCode": "B-1180", + "shipCountry": "Belgium" +}, { + "customerCompanyName": "Ottilies Käseladen", + "customerContactName": "Henriette Pfalzheim", + "orderTotal": 2310, + "orderDate": 1575496800000, + "requiredDate": 1577916000000, + "shippedDate": 1575842400000, + "requiredDateStart": 1577964600000, + "requiredDateEnd": 1577968200000, + "orderID": 10766, + "customerID": "OTTIK", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 157.55, + "shipName": "Ottilies Käseladen", + "shipAddress": "Mehrheimerstr. 369", + "shipCity": "Köln", + "shipRegion": "", + "shipPostalCode": "50739", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Suprêmes délices", + "customerContactName": "Pascale Cartrain", + "orderTotal": 28, + "orderDate": 1575496800000, + "requiredDate": 1577916000000, + "shippedDate": 1576360800000, + "requiredDateStart": 1577961000000, + "requiredDateEnd": 1577966400000, + "orderID": 10767, + "customerID": "SUPRD", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 1.59, + "shipName": "Suprêmes délices", + "shipAddress": "Boulevard Tirou, 255", + "shipCity": "Charleroi", + "shipRegion": "", + "shipPostalCode": "B-6000", + "shipCountry": "Belgium" +}, { + "customerCompanyName": "Folk och fä HB", + "customerContactName": "Maria Larsson", + "orderTotal": 868.75, + "orderDate": 1576015200000, + "requiredDate": 1577224800000, + "shippedDate": 1576101600000, + "requiredDateStart": 1577278800000, + "requiredDateEnd": 1577282400000, + "orderID": 10774, + "customerID": "FOLKO", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 48.2, + "shipName": "Folk och fä HB", + "shipAddress": "Åkergatan 24", + "shipCity": "Bräcke", + "shipRegion": "", + "shipPostalCode": "S-844 67", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Hanari Carnes", + "customerContactName": "Mario Pontes", + "orderTotal": 1442.5, + "orderDate": 1576620000000, + "requiredDate": 1579039200000, + "shippedDate": 1576706400000, + "requiredDateStart": 1579082400000, + "requiredDateEnd": 1579086000000, + "orderID": 10783, + "customerID": "HANAR", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 124.98, + "shipName": "Hanari Carnes", + "shipAddress": "Rua do Paço, 67", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "05454-876", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Magazzini Alimentari Riuniti", + "customerContactName": "Giovanni Rovelli", + "orderTotal": 1488, + "orderDate": 1576620000000, + "requiredDate": 1579039200000, + "shippedDate": 1576965600000, + "requiredDateStart": 1579082400000, + "requiredDateEnd": 1579087800000, + "orderID": 10784, + "customerID": "MAGAA", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 70.09, + "shipName": "Magazzini Alimentari Riuniti", + "shipAddress": "Via Ludovico il Moro 22", + "shipCity": "Bergamo", + "shipRegion": "", + "shipPostalCode": "24100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Bólido Comidas preparadas", + "customerContactName": "Martín Sommer", + "orderTotal": 3026.85, + "orderDate": 1577570400000, + "requiredDate": 1579989600000, + "shippedDate": 1577743200000, + "requiredDateStart": 1580038200000, + "requiredDateEnd": 1580043600000, + "orderID": 10801, + "customerID": "BOLID", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 97.09, + "shipName": "Bólido Comidas preparadas", + "shipAddress": "C/ Araquil, 67", + "shipCity": "Madrid", + "shipRegion": "", + "shipPostalCode": "28023", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Simons bistro", + "customerContactName": "Jytte Petersen", + "orderTotal": 2942.8125, + "orderDate": 1577570400000, + "requiredDate": 1579989600000, + "shippedDate": 1577916000000, + "requiredDateStart": 1580034600000, + "requiredDateEnd": 1580036400000, + "orderID": 10802, + "customerID": "SIMOB", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 257.26, + "shipName": "Simons bistro", + "shipAddress": "Vinbæltet 34", + "shipCity": "Kobenhavn", + "shipRegion": "", + "shipPostalCode": "1734", + "shipCountry": "Denmark" +}, { + "customerCompanyName": "Wellington Importadora", + "customerContactName": "Paula Parente", + "orderTotal": 1193.01, + "orderDate": 1577656800000, + "requiredDate": 1580076000000, + "shippedDate": 1578261600000, + "requiredDateStart": 1580130000000, + "requiredDateEnd": 1580135400000, + "orderID": 10803, + "customerID": "WELLI", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 55.23, + "shipName": "Wellington Importadora", + "shipAddress": "Rua do Mercado, 12", + "shipCity": "Resende", + "shipRegion": "SP", + "shipPostalCode": "08737-363", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Franchi S.p.A.", + "customerContactName": "Paolo Accorti", + "orderTotal": 18.4, + "orderDate": 1577743200000, + "requiredDate": 1580162400000, + "shippedDate": 1580335200000, + "requiredDateStart": 1580220000000, + "requiredDateEnd": 1580225400000, + "orderID": 10807, + "customerID": "FRANS", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 1.36, + "shipName": "Franchi S.p.A.", + "shipAddress": "Via Monte Bianco 34", + "shipCity": "Torino", + "shipRegion": "", + "shipPostalCode": "10100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Great Lakes Food Market", + "customerContactName": "Howard Snyder", + "orderTotal": 8446.45, + "orderDate": 1578261600000, + "requiredDate": 1580680800000, + "shippedDate": 1580767200000, + "requiredDateStart": 1580734800000, + "requiredDateEnd": 1580736600000, + "orderID": 10816, + "customerID": "GREAL", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 719.78, + "shipName": "Great Lakes Food Market", + "shipAddress": "2732 Baker Blvd.", + "shipCity": "Eugene", + "shipRegion": "OR", + "shipPostalCode": "97403", + "shipCountry": "USA" +}, { + "customerCompanyName": "Tradição Hipermercados", + "customerContactName": "Anabela Domingues", + "orderTotal": 1974, + "orderDate": 1578866400000, + "requiredDate": 1582495200000, + "shippedDate": 1579557600000, + "requiredDateStart": 1582551000000, + "requiredDateEnd": 1582552800000, + "orderID": 10830, + "customerID": "TRADH", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 81.83, + "shipName": "Tradiçao Hipermercados", + "shipAddress": "Av. Inês de Castro, 414", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05634-030", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "LINO-Delicateses", + "customerContactName": "Felipe Izquierdo", + "orderTotal": 211.2, + "orderDate": 1579384800000, + "requiredDate": 1583100000000, + "shippedDate": 1581804000000, + "requiredDateStart": 1583139600000, + "requiredDateEnd": 1583145000000, + "orderID": 10840, + "customerID": "LINOD", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 2.71, + "shipName": "LINO-Delicateses", + "shipAddress": "Ave. 5 de Mayo Porlamar", + "shipCity": "I. de Margarita", + "shipRegion": "Nueva Esparta", + "shipPostalCode": "4980", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Victuailles en stock", + "customerContactName": "Mary Saveley", + "orderTotal": 159, + "orderDate": 1579557600000, + "requiredDate": 1581976800000, + "shippedDate": 1579989600000, + "requiredDateStart": 1582032600000, + "requiredDateEnd": 1582036200000, + "orderID": 10843, + "customerID": "VICTE", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 9.26, + "shipName": "Victuailles en stock", + "shipAddress": "2, rue du Commerce", + "shipCity": "Lyon", + "shipRegion": "", + "shipPostalCode": "69004", + "shipCountry": "France" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 4931.92, + "orderDate": 1579644000000, + "requiredDate": 1580853600000, + "shippedDate": 1581285600000, + "requiredDateStart": 1580896800000, + "requiredDateEnd": 1580898600000, + "orderID": 10847, + "customerID": "SAVEA", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 487.57, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "White Clover Markets", + "customerContactName": "Karl Jablonski", + "orderTotal": 3523.4, + "orderDate": 1580335200000, + "requiredDate": 1582754400000, + "shippedDate": 1581890400000, + "requiredDateStart": 1582799400000, + "requiredDateEnd": 1582803000000, + "orderID": 10861, + "customerID": "WHITC", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 14.93, + "shipName": "White Clover Markets", + "shipAddress": "1029 - 12th Ave. S.", + "shipCity": "Seattle", + "shipRegion": "WA", + "shipPostalCode": "98124", + "shipCountry": "USA" +}, { + "customerCompanyName": "HILARION-Abastos", + "customerContactName": "Carlos Hernández", + "orderTotal": 441.15, + "orderDate": 1580594400000, + "requiredDate": 1583100000000, + "shippedDate": 1581890400000, + "requiredDateStart": 1583141400000, + "requiredDateEnd": 1583143200000, + "orderID": 10863, + "customerID": "HILAA", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 30.26, + "shipName": "HILARION-Abastos", + "shipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "shipCity": "San Cristóbal", + "shipRegion": "Táchira", + "shipPostalCode": "5022", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Around the Horn", + "customerContactName": "Thomas Hardy", + "orderTotal": 282, + "orderDate": 1580594400000, + "requiredDate": 1583100000000, + "shippedDate": 1581199200000, + "requiredDateStart": 1583159400000, + "requiredDateEnd": 1583164800000, + "orderID": 10864, + "customerID": "AROUT", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 3.04, + "shipName": "Around the Horn", + "shipAddress": "Brook Farm Stratford St. Mary", + "shipCity": "Colchester", + "shipRegion": "Essex", + "shipPostalCode": "CO7 6JX", + "shipCountry": "UK" +}, { + "customerCompanyName": "Wilman Kala", + "customerContactName": "Matti Karttunen", + "orderTotal": 336.8, + "orderDate": 1580940000000, + "requiredDate": 1583445600000, + "shippedDate": 1581199200000, + "requiredDateStart": 1583497800000, + "requiredDateEnd": 1583501400000, + "orderID": 10873, + "customerID": "WILMK", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 0.82, + "shipName": "Wilman Kala", + "shipAddress": "Keskuskatu 45", + "shipCity": "Helsinki", + "shipRegion": "", + "shipPostalCode": "21240", + "shipCountry": "Finland" +}, { + "customerCompanyName": "Berglunds snabbköp", + "customerContactName": "Christina Berglund", + "orderTotal": 709.55, + "orderDate": 1580940000000, + "requiredDate": 1583445600000, + "shippedDate": 1583186400000, + "requiredDateStart": 1583505000000, + "requiredDateEnd": 1583510400000, + "orderID": 10875, + "customerID": "BERGS", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 32.37, + "shipName": "Berglunds snabbköp", + "shipAddress": "Berguvsvägen  8", + "shipCity": "Luleå", + "shipRegion": "", + "shipPostalCode": "S-958 22", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 1539, + "orderDate": 1581285600000, + "requiredDate": 1583791200000, + "shippedDate": 1581458400000, + "requiredDateStart": 1583839800000, + "requiredDateEnd": 1583845200000, + "orderID": 10878, + "customerID": "QUICK", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 46.69, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Cactus Comidas para llevar", + "customerContactName": "Patricio Simpson", + "orderTotal": 150, + "orderDate": 1581372000000, + "requiredDate": 1583877600000, + "shippedDate": 1581976800000, + "requiredDateStart": 1583931600000, + "requiredDateEnd": 1583935200000, + "orderID": 10881, + "customerID": "CACTU", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 2.84, + "shipName": "Cactus Comidas para llevar", + "shipAddress": "Cerrito 333", + "shipCity": "Buenos Aires", + "shipRegion": "", + "shipPostalCode": "1010", + "shipCountry": "Argentina" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 892.64, + "orderDate": 1581372000000, + "requiredDate": 1583877600000, + "shippedDate": 1582149600000, + "requiredDateStart": 1583928000000, + "requiredDateEnd": 1583929800000, + "orderID": 10882, + "customerID": "SAVEA", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 23.1, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Let's Stop N Shop", + "customerContactName": "Jaime Yorres", + "orderTotal": 1378.07, + "orderDate": 1581458400000, + "requiredDate": 1583964000000, + "shippedDate": 1581544800000, + "requiredDateStart": 1584007200000, + "requiredDateEnd": 1584012600000, + "orderID": 10884, + "customerID": "LETSS", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 90.97, + "shipName": "Let-s Stop N Shop", + "shipAddress": "87 Polk St. Suite 5", + "shipCity": "San Francisco", + "shipRegion": "CA", + "shipPostalCode": "94117", + "shipCountry": "USA" +}, { + "customerCompanyName": "Maison Dewey", + "customerContactName": "Catherine Dewey", + "orderTotal": 2090, + "orderDate": 1581890400000, + "requiredDate": 1584396000000, + "shippedDate": 1582063200000, + "requiredDateStart": 1584435600000, + "requiredDateEnd": 1584437400000, + "orderID": 10892, + "customerID": "MAISD", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 120.27, + "shipName": "Maison Dewey", + "shipAddress": "Rue Joseph-Bens 532", + "shipCity": "Bruxelles", + "shipRegion": "", + "shipPostalCode": "B-1180", + "shipCountry": "Belgium" +}, { + "customerCompanyName": "Océano Atlántico Ltda.", + "customerContactName": "Yvonne Moncada", + "orderTotal": 30, + "orderDate": 1582149600000, + "requiredDate": 1584655200000, + "shippedDate": 1583445600000, + "requiredDateStart": 1584696600000, + "requiredDateEnd": 1584702000000, + "orderID": 10898, + "customerID": "OCEAN", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 1.27, + "shipName": "Océano Atlántico Ltda.", + "shipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "shipCity": "Buenos Aires", + "shipRegion": "", + "shipPostalCode": "1010", + "shipCountry": "Argentina" +}, { + "customerCompanyName": "HILARION-Abastos", + "customerContactName": "Carlos Hernández", + "orderTotal": 934.5, + "orderDate": 1582408800000, + "requiredDate": 1584914400000, + "shippedDate": 1582668000000, + "requiredDateStart": 1584968400000, + "requiredDateEnd": 1584972000000, + "orderID": 10901, + "customerID": "HILAA", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 62.09, + "shipName": "HILARION-Abastos", + "shipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "shipCity": "San Cristóbal", + "shipRegion": "Táchira", + "shipPostalCode": "5022", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Wolski Zajazd", + "customerContactName": "Zbyszek Piestrzeniewicz", + "orderTotal": 427.5, + "orderDate": 1582581600000, + "requiredDate": 1583877600000, + "shippedDate": 1583186400000, + "requiredDateStart": 1583928000000, + "requiredDateEnd": 1583933400000, + "orderID": 10906, + "customerID": "WOLZA", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 26.29, + "shipName": "Wolski Zajazd", + "shipAddress": "ul. Filtrowa 68", + "shipCity": "Warszawa", + "shipRegion": "", + "shipPostalCode": "01-012", + "shipCountry": "Poland" +}, { + "customerCompanyName": "Reggiani Caseifici", + "customerContactName": "Maurizio Moroni", + "orderTotal": 663.1, + "orderDate": 1582668000000, + "requiredDate": 1585173600000, + "shippedDate": 1583445600000, + "requiredDateStart": 1585224000000, + "requiredDateEnd": 1585229400000, + "orderID": 10908, + "customerID": "REGGC", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 32.96, + "shipName": "Reggiani Caseifici", + "shipAddress": "Strada Provinciale 124", + "shipCity": "Reggio Emilia", + "shipRegion": "", + "shipPostalCode": "42100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Queen Cozinha", + "customerContactName": "Lúcia Carvalho", + "orderTotal": 768.75, + "orderDate": 1582668000000, + "requiredDate": 1585173600000, + "shippedDate": 1583272800000, + "requiredDateStart": 1585220400000, + "requiredDateEnd": 1585224000000, + "orderID": 10913, + "customerID": "QUEEN", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 33.05, + "shipName": "Queen Cozinha", + "shipAddress": "Alameda dos Canàrios, 891", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05487-020", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Romero y tomillo", + "customerContactName": "Alejandra Camino", + "orderTotal": 365.89, + "orderDate": 1583100000000, + "requiredDate": 1585515600000, + "shippedDate": 1583877600000, + "requiredDateStart": 1585566000000, + "requiredDateEnd": 1585569600000, + "orderID": 10917, + "customerID": "ROMEY", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 8.29, + "shipName": "Romero y tomillo", + "shipAddress": "Gran Vía, 1", + "shipCity": "Madrid", + "shipRegion": "", + "shipPostalCode": "28001", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Around the Horn", + "customerContactName": "Thomas Hardy", + "orderTotal": 390, + "orderDate": 1583186400000, + "requiredDate": 1585602000000, + "shippedDate": 1583704800000, + "requiredDateStart": 1585648800000, + "requiredDateEnd": 1585652400000, + "orderID": 10920, + "customerID": "AROUT", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 29.61, + "shipName": "Around the Horn", + "shipAddress": "Brook Farm Stratford St. Mary", + "shipCity": "Colchester", + "shipRegion": "Essex", + "shipPostalCode": "CO7 6JX", + "shipCountry": "UK" +}, { + "customerCompanyName": "Ana Trujillo Emparedados y helados", + "customerContactName": "Ana Trujillo", + "orderTotal": 514.4, + "orderDate": 1583272800000, + "requiredDate": 1585688400000, + "shippedDate": 1583877600000, + "requiredDateStart": 1585746000000, + "requiredDateEnd": 1585749600000, + "orderID": 10926, + "customerID": "ANATR", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 39.92, + "shipName": "Ana Trujillo Emparedados y helados", + "shipAddress": "Avda. de la Constitución 2222", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5021", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "La corne d'abondance", + "customerContactName": "Daniel Tonini", + "orderTotal": 800, + "orderDate": 1583359200000, + "requiredDate": 1585774800000, + "shippedDate": 1586293200000, + "requiredDateStart": 1585814400000, + "requiredDateEnd": 1585816200000, + "orderID": 10927, + "customerID": "LACOR", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 19.79, + "shipName": "La corne d-abondance", + "shipAddress": "67, avenue de l-Europe", + "shipCity": "Versailles", + "shipRegion": "", + "shipPostalCode": "78000", + "shipCountry": "France" +}, { + "customerCompanyName": "Suprêmes délices", + "customerContactName": "Pascale Cartrain", + "orderTotal": 2255.5, + "orderDate": 1583445600000, + "requiredDate": 1587070800000, + "shippedDate": 1584482400000, + "requiredDateStart": 1587123000000, + "requiredDateEnd": 1587124800000, + "orderID": 10930, + "customerID": "SUPRD", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 15.55, + "shipName": "Suprêmes délices", + "shipAddress": "Boulevard Tirou, 255", + "shipCity": "Charleroi", + "shipRegion": "", + "shipPostalCode": "B-6000", + "shipCountry": "Belgium" +}, { + "customerCompanyName": "Richter Supermarkt", + "customerContactName": "Michael Holz", + "orderTotal": 799.2, + "orderDate": 1583445600000, + "requiredDate": 1584655200000, + "shippedDate": 1584568800000, + "requiredDateStart": 1584702000000, + "requiredDateEnd": 1584705600000, + "orderID": 10931, + "customerID": "RICSU", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 13.6, + "shipName": "Richter Supermarkt", + "shipAddress": "Starenweg 5", + "shipCity": "Genève", + "shipRegion": "", + "shipPostalCode": "1204", + "shipCountry": "Switzerland" +}, { + "customerCompanyName": "Wellington Importadora", + "customerContactName": "Paula Parente", + "orderTotal": 619.5, + "orderDate": 1583704800000, + "requiredDate": 1586120400000, + "shippedDate": 1584482400000, + "requiredDateStart": 1586160000000, + "requiredDateEnd": 1586165400000, + "orderID": 10935, + "customerID": "WELLI", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 47.59, + "shipName": "Wellington Importadora", + "shipAddress": "Rua do Mercado, 12", + "shipCity": "Resende", + "shipRegion": "SP", + "shipPostalCode": "08737-363", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "B's Beverages", + "customerContactName": "Victoria Ashworth", + "orderTotal": 711, + "orderDate": 1583877600000, + "requiredDate": 1586293200000, + "shippedDate": 1584568800000, + "requiredDateStart": 1586345400000, + "requiredDateEnd": 1586349000000, + "orderID": 10943, + "customerID": "BSBEV", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 2.17, + "shipName": "B-s Beverages", + "shipAddress": "Fauntleroy Circus", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "EC2 5NT", + "shipCountry": "UK" +}, { + "customerCompanyName": "Morgenstern Gesundkost", + "customerContactName": "Alexander Feuer", + "orderTotal": 245, + "orderDate": 1583964000000, + "requiredDate": 1586379600000, + "shippedDate": 1584482400000, + "requiredDateStart": 1586435400000, + "requiredDateEnd": 1586440800000, + "orderID": 10945, + "customerID": "MORGK", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 10.22, + "shipName": "Morgenstern Gesundkost", + "shipAddress": "Heerstr. 22", + "shipCity": "Leipzig", + "shipRegion": "", + "shipPostalCode": "4179", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Chop-suey Chinese", + "customerContactName": "Yang Wang", + "orderTotal": 1098.46, + "orderDate": 1584655200000, + "requiredDate": 1587070800000, + "shippedDate": 1586293200000, + "requiredDateStart": 1587115800000, + "requiredDateEnd": 1587117600000, + "orderID": 10966, + "customerID": "CHOPS", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 27.19, + "shipName": "Chop-suey Chinese", + "shipAddress": "Hauptstr. 31", + "shipCity": "Bern", + "shipRegion": "", + "shipPostalCode": "3012", + "shipCountry": "Switzerland" +}, { + "customerCompanyName": "La corne d'abondance", + "customerContactName": "Daniel Tonini", + "orderTotal": 251.5, + "orderDate": 1585000800000, + "requiredDate": 1587416400000, + "shippedDate": 1585173600000, + "requiredDateStart": 1587461400000, + "requiredDateEnd": 1587465000000, + "orderID": 10972, + "customerID": "LACOR", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 0.02, + "shipName": "La corne d-abondance", + "shipAddress": "67, avenue de l-Europe", + "shipCity": "Versailles", + "shipRegion": "", + "shipPostalCode": "78000", + "shipCountry": "France" +}, { + "customerCompanyName": "Folk och fä HB", + "customerContactName": "Maria Larsson", + "orderTotal": 248, + "orderDate": 1585260000000, + "requiredDate": 1588885200000, + "shippedDate": 1587070800000, + "requiredDateStart": 1588930200000, + "requiredDateEnd": 1588935600000, + "orderID": 10980, + "customerID": "FOLKO", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 1.26, + "shipName": "Folk och fä HB", + "shipAddress": "Åkergatan 24", + "shipCity": "Bräcke", + "shipRegion": "", + "shipPostalCode": "S-844 67", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 560, + "orderDate": 1585774800000, + "requiredDate": 1588194000000, + "shippedDate": 1586466000000, + "requiredDateStart": 1588233600000, + "requiredDateEnd": 1588237200000, + "orderID": 10996, + "customerID": "QUICK", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 1.12, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 1811.1, + "orderDate": 1586120400000, + "requiredDate": 1588539600000, + "shippedDate": 1586984400000, + "requiredDateStart": 1588579200000, + "requiredDateEnd": 1588581000000, + "orderID": 11002, + "customerID": "SAVEA", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 141.16, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Lonesome Pine Restaurant", + "customerContactName": "Fran Wilson", + "orderTotal": 1575, + "orderDate": 1586725200000, + "requiredDate": 1589144400000, + "shippedDate": 1586984400000, + "requiredDateStart": 1589193000000, + "requiredDateEnd": 1589194800000, + "orderID": 11018, + "customerID": "LONEP", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 11.65, + "shipName": "Lonesome Pine Restaurant", + "shipAddress": "89 Chiaroscuro Rd.", + "shipCity": "Portland", + "shipRegion": "OR", + "shipPostalCode": "97219", + "shipCountry": "USA" +}, { + "customerCompanyName": "Eastern Connection", + "customerContactName": "Ann Devon", + "orderTotal": 1966.81, + "orderDate": 1586898000000, + "requiredDate": 1589317200000, + "shippedDate": 1587330000000, + "requiredDateStart": 1589365800000, + "requiredDateEnd": 1589371200000, + "orderID": 11024, + "customerID": "EASTC", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 74.36, + "shipName": "Eastern Connection", + "shipAddress": "35 King George", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "WX3 6FW", + "shipCountry": "UK" +}, { + "customerCompanyName": "Franchi S.p.A.", + "customerContactName": "Paolo Accorti", + "orderTotal": 1030, + "orderDate": 1586898000000, + "requiredDate": 1589317200000, + "shippedDate": 1588021200000, + "requiredDateStart": 1589369400000, + "requiredDateEnd": 1589371200000, + "orderID": 11026, + "customerID": "FRANS", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 47.09, + "shipName": "Franchi S.p.A.", + "shipAddress": "Via Monte Bianco 34", + "shipCity": "Torino", + "shipRegion": "", + "shipPostalCode": "10100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Chop-suey Chinese", + "customerContactName": "Yang Wang", + "orderTotal": 1286.8, + "orderDate": 1586984400000, + "requiredDate": 1589403600000, + "shippedDate": 1587934800000, + "requiredDateStart": 1589443200000, + "requiredDateEnd": 1589445000000, + "orderID": 11029, + "customerID": "CHOPS", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 47.84, + "shipName": "Chop-suey Chinese", + "shipAddress": "Hauptstr. 31", + "shipCity": "Bern", + "shipRegion": "", + "shipPostalCode": "3012", + "shipCountry": "Switzerland" +}, { + "customerCompanyName": "Great Lakes Food Market", + "customerContactName": "Howard Snyder", + "orderTotal": 200, + "orderDate": 1587502800000, + "requiredDate": 1589922000000, + "shippedDate": 1587934800000, + "requiredDateStart": 1589981400000, + "requiredDateEnd": 1589983200000, + "orderID": 11040, + "customerID": "GREAL", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 18.84, + "shipName": "Great Lakes Food Market", + "shipAddress": "2732 Baker Blvd.", + "shipCity": "Eugene", + "shipRegion": "OR", + "shipPostalCode": "97403", + "shipCountry": "USA" +}, { + "customerCompanyName": "Wolski Zajazd", + "customerContactName": "Zbyszek Piestrzeniewicz", + "orderTotal": 591.6, + "orderDate": 1587589200000, + "requiredDate": 1590008400000, + "shippedDate": 1588280400000, + "requiredDateStart": 1590055200000, + "requiredDateEnd": 1590058800000, + "orderID": 11044, + "customerID": "WOLZA", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 1, + "freight": 8.72, + "shipName": "Wolski Zajazd", + "shipAddress": "ul. Filtrowa 68", + "shipCity": "Warszawa", + "shipRegion": "", + "shipPostalCode": "01-012", + "shipCountry": "Poland" +}, { + "customerCompanyName": "Great Lakes Food Market", + "customerContactName": "Howard Snyder", + "orderTotal": 510, + "orderDate": 1588194000000, + "requiredDate": 1591822800000, + "shippedDate": 1532984400000, + "requiredDateStart": 1591862400000, + "requiredDateEnd": 1591867800000, + "orderID": 11061, + "customerID": "GREAL", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 3, + "freight": 14.01, + "shipName": "Great Lakes Food Market", + "shipAddress": "2732 Baker Blvd.", + "shipCity": "Eugene", + "shipRegion": "OR", + "shipPostalCode": "97403", + "shipCountry": "USA" +}, { + "customerCompanyName": "Reggiani Caseifici", + "customerContactName": "Maurizio Moroni", + "orderTotal": 406.4, + "orderDate": 1588194000000, + "requiredDate": 1590613200000, + "shippedDate": 1531688400000, + "requiredDateStart": 1590669000000, + "requiredDateEnd": 1590674400000, + "orderID": 11062, + "customerID": "REGGC", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 29.93, + "shipName": "Reggiani Caseifici", + "shipAddress": "Strada Provinciale 124", + "shipCity": "Reggio Emilia", + "shipRegion": "", + "shipPostalCode": "42100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 5218, + "orderDate": 1588626000000, + "requiredDate": 1591045200000, + "shippedDate": 1532984400000, + "requiredDateStart": 1591102800000, + "requiredDateEnd": 1591104600000, + "orderID": 11072, + "customerID": "ERNSH", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 258.64, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Bon app'", + "customerContactName": "Laurence Lebihan", + "orderTotal": 792.75, + "orderDate": 1588712400000, + "requiredDate": 1591131600000, + "shippedDate": 1531688400000, + "requiredDateStart": 1591183800000, + "requiredDateEnd": 1591185600000, + "orderID": 11076, + "customerID": "BONAP", + "employeeID": "df3dffe4-6fb4-4a9c-8512-71f7cb508180", + "teamID": 2, + "shipVia": 2, + "freight": 38.28, + "shipName": "Bon app-", + "shipAddress": "12, rue des Bouchers", + "shipCity": "Marseille", + "shipRegion": "", + "shipPostalCode": "13008", + "shipCountry": "France" +}, { + "customerCompanyName": "Victuailles en stock", + "customerContactName": "Mary Saveley", + "orderTotal": 654.06, + "orderDate": 1530997200000, + "requiredDate": 1533416400000, + "shippedDate": 1531602000000, + "requiredDateStart": 1533459600000, + "requiredDateEnd": 1533463200000, + "orderID": 10251, + "customerID": "VICTE", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 41.34, + "shipName": "Victuailles en stock", + "shipAddress": "2, rue du Commerce", + "shipCity": "Lyon", + "shipRegion": "", + "shipPostalCode": "69004", + "shipCountry": "France" +}, { + "customerCompanyName": "Hanari Carnes", + "customerContactName": "Mario Pontes", + "orderTotal": 1444.8, + "orderDate": 1531170000000, + "requiredDate": 1532379600000, + "shippedDate": 1531688400000, + "requiredDateStart": 1532433600000, + "requiredDateEnd": 1532437200000, + "orderID": 10253, + "customerID": "HANAR", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 58.17, + "shipName": "Hanari Carnes", + "shipAddress": "Rua do Paço, 67", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "05454-876", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Wellington Importadora", + "customerContactName": "Paula Parente", + "orderTotal": 517.8, + "orderDate": 1531602000000, + "requiredDate": 1534021200000, + "shippedDate": 1531774800000, + "requiredDateStart": 1534075200000, + "requiredDateEnd": 1534080600000, + "orderID": 10256, + "customerID": "WELLI", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 13.97, + "shipName": "Wellington Importadora", + "shipAddress": "Rua do Mercado, 12", + "shipCity": "Resende", + "shipRegion": "SP", + "shipPostalCode": "08737-363", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Wartian Herkku", + "customerContactName": "Pirkko Koskitalo", + "orderTotal": 346.56, + "orderDate": 1532552400000, + "requiredDate": 1536181200000, + "shippedDate": 1532984400000, + "requiredDateStart": 1536222600000, + "requiredDateEnd": 1536228000000, + "orderID": 10266, + "customerID": "WARTH", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 25.73, + "shipName": "Wartian Herkku", + "shipAddress": "Torikatu 38", + "shipCity": "Oulu", + "shipRegion": "", + "shipPostalCode": "90110", + "shipCountry": "Finland" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 2037.28, + "orderDate": 1533416400000, + "requiredDate": 1535835600000, + "shippedDate": 1534021200000, + "requiredDateStart": 1535880600000, + "requiredDateEnd": 1535884200000, + "orderID": 10273, + "customerID": "QUICK", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 76.07, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "LILA-Supermercado", + "customerContactName": "Carlos González", + "orderTotal": 1414.8, + "orderDate": 1534366800000, + "requiredDate": 1536786000000, + "shippedDate": 1534971600000, + "requiredDateStart": 1536841800000, + "requiredDateEnd": 1536845400000, + "orderID": 10283, + "customerID": "LILAS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 84.81, + "shipName": "LILA-Supermercado", + "shipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "shipCity": "Barquisimeto", + "shipRegion": "Lara", + "shipPostalCode": "3508", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Hungry Owl All-Night Grocers", + "customerContactName": "Patricia McKenna", + "orderTotal": 1762, + "orderDate": 1537304400000, + "requiredDate": 1539723600000, + "shippedDate": 1540242000000, + "requiredDateStart": 1539770400000, + "requiredDateEnd": 1539775800000, + "orderID": 10309, + "customerID": "HUNGO", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 47.3, + "shipName": "Hungry Owl All-Night Grocers", + "shipAddress": "8 Johnstown Road", + "shipCity": "Cork", + "shipRegion": "Co. Cork", + "shipPostalCode": "", + "shipCountry": "Ireland" +}, { + "customerCompanyName": "Island Trading", + "customerContactName": "Helen Bennett", + "orderTotal": 144, + "orderDate": 1538514000000, + "requiredDate": 1540936800000, + "shippedDate": 1539205200000, + "requiredDateStart": 1540987200000, + "requiredDateEnd": 1540989000000, + "orderID": 10321, + "customerID": "ISLAT", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 3.43, + "shipName": "Island Trading", + "shipAddress": "Garden House Crowther Way", + "shipCity": "Cowes", + "shipRegion": "Isle of Wight", + "shipPostalCode": "PO31 7PJ", + "shipCountry": "UK" +}, { + "customerCompanyName": "LILA-Supermercado", + "customerContactName": "Carlos González", + "orderTotal": 1649, + "orderDate": 1539637200000, + "requiredDate": 1542060000000, + "shippedDate": 1540674000000, + "requiredDateStart": 1542117600000, + "requiredDateEnd": 1542121200000, + "orderID": 10330, + "customerID": "LILAS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 12.75, + "shipName": "LILA-Supermercado", + "shipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "shipCity": "Barquisimeto", + "shipRegion": "Lara", + "shipPostalCode": "3508", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Mère Paillarde", + "customerContactName": "Jean Fresnière", + "orderTotal": 1786.88, + "orderDate": 1539723600000, + "requiredDate": 1543356000000, + "shippedDate": 1540069200000, + "requiredDateStart": 1543395600000, + "requiredDateEnd": 1543397400000, + "orderID": 10332, + "customerID": "MEREP", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 52.84, + "shipName": "Mère Paillarde", + "shipAddress": "43 rue St. Laurent", + "shipCity": "Montréal", + "shipRegion": "Québec", + "shipPostalCode": "H1J 1C3", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Rattlesnake Canyon Grocery", + "customerContactName": "Paula Wilson", + "orderTotal": 1618.88, + "orderDate": 1541368800000, + "requiredDate": 1544997600000, + "shippedDate": 1541628000000, + "requiredDateStart": 1545051600000, + "requiredDateEnd": 1545055200000, + "orderID": 10346, + "customerID": "RATTC", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 142.08, + "shipName": "Rattlesnake Canyon Grocery", + "shipAddress": "2817 Milton Dr.", + "shipCity": "Albuquerque", + "shipRegion": "NM", + "shipPostalCode": "87110", + "shipCountry": "USA" +}, { + "customerCompanyName": "Furia Bacalhau e Frutos do Mar", + "customerContactName": "Lino Rodriguez", + "orderTotal": 136.3, + "orderDate": 1541973600000, + "requiredDate": 1543183200000, + "shippedDate": 1542492000000, + "requiredDateStart": 1543224600000, + "requiredDateEnd": 1543228200000, + "orderID": 10352, + "customerID": "FURIB", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 1.3, + "shipName": "Furia Bacalhau e Frutos do Mar", + "shipAddress": "Jardim das rosas n. 32", + "shipCity": "Lisboa", + "shipRegion": "", + "shipPostalCode": "1675", + "shipCountry": "Portugal" +}, { + "customerCompanyName": "Bon app'", + "customerContactName": "Laurence Lebihan", + "orderTotal": 1549.6, + "orderDate": 1543096800000, + "requiredDate": 1545516000000, + "shippedDate": 1543356000000, + "requiredDateStart": 1545570000000, + "requiredDateEnd": 1545573600000, + "orderID": 10362, + "customerID": "BONAP", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 96.04, + "shipName": "Bon app-", + "shipAddress": "12, rue des Bouchers", + "shipCity": "Marseille", + "shipRegion": "", + "shipPostalCode": "13008", + "shipCountry": "France" +}, { + "customerCompanyName": "Antonio Moreno Taquería", + "customerContactName": "Antonio Moreno", + "orderTotal": 403.2, + "orderDate": 1543269600000, + "requiredDate": 1545688800000, + "shippedDate": 1543701600000, + "requiredDateStart": 1545739200000, + "requiredDateEnd": 1545741000000, + "orderID": 10365, + "customerID": "ANTON", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 22, + "shipName": "Antonio Moreno Taquería", + "shipAddress": "Mataderos  2312", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5023", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Hungry Coyote Import Store", + "customerContactName": "Yoshi Latimer", + "orderTotal": 338, + "orderDate": 1544047200000, + "requiredDate": 1546466400000, + "shippedDate": 1544306400000, + "requiredDateStart": 1546506000000, + "requiredDateEnd": 1546507800000, + "orderID": 10375, + "customerID": "HUNGC", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 20.12, + "shipName": "Hungry Coyote Import Store", + "shipAddress": "City Center Plaza 516 Main St.", + "shipCity": "Elgin", + "shipRegion": "OR", + "shipPostalCode": "97827", + "shipCountry": "USA" +}, { + "customerCompanyName": "LILA-Supermercado", + "customerContactName": "Carlos González", + "orderTotal": 112, + "orderDate": 1544565600000, + "requiredDate": 1546984800000, + "shippedDate": 1544652000000, + "requiredDateStart": 1547035200000, + "requiredDateEnd": 1547037000000, + "orderID": 10381, + "customerID": "LILAS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 7.99, + "shipName": "LILA-Supermercado", + "shipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "shipCity": "Barquisimeto", + "shipRegion": "Lara", + "shipPostalCode": "3508", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Berglunds snabbköp", + "customerContactName": "Christina Berglund", + "orderTotal": 2222.4, + "orderDate": 1544911200000, + "requiredDate": 1547330400000, + "shippedDate": 1545256800000, + "requiredDateStart": 1547375400000, + "requiredDateEnd": 1547380800000, + "orderID": 10384, + "customerID": "BERGS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 168.64, + "shipName": "Berglunds snabbköp", + "shipAddress": "Berguvsvägen  8", + "shipCity": "Luleå", + "shipRegion": "", + "shipPostalCode": "S-958 22", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Drachenblut Delikatessen", + "customerContactName": "Sven Ottlieb", + "orderTotal": 86.4, + "orderDate": 1545516000000, + "requiredDate": 1547935200000, + "shippedDate": 1546207200000, + "requiredDateStart": 1547974800000, + "requiredDateEnd": 1547980200000, + "orderID": 10391, + "customerID": "DRACD", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 5.45, + "shipName": "Drachenblut Delikatessen", + "shipAddress": "Walserweg 21", + "shipCity": "Aachen", + "shipRegion": "", + "shipPostalCode": "52066", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Océano Atlántico Ltda.", + "customerContactName": "Yvonne Moncada", + "orderTotal": 319.2, + "orderDate": 1546984800000, + "requiredDate": 1549404000000, + "shippedDate": 1547416800000, + "requiredDateStart": 1549461600000, + "requiredDateEnd": 1549465200000, + "orderID": 10409, + "customerID": "OCEAN", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 29.83, + "shipName": "Océano Atlántico Ltda.", + "shipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "shipCity": "Buenos Aires", + "shipRegion": "", + "shipPostalCode": "1010", + "shipCountry": "Argentina" +}, { + "customerCompanyName": "Bottom-Dollar Markets", + "customerContactName": "Elizabeth Lincoln", + "orderTotal": 802, + "orderDate": 1547071200000, + "requiredDate": 1549490400000, + "shippedDate": 1547503200000, + "requiredDateStart": 1549540800000, + "requiredDateEnd": 1549544400000, + "orderID": 10410, + "customerID": "BOTTM", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 2.4, + "shipName": "Bottom-Dollar Markets", + "shipAddress": "23 Tsawassen Blvd.", + "shipCity": "Tsawassen", + "shipRegion": "BC", + "shipPostalCode": "T2F 8M4", + "shipCountry": "Canada" +}, { + "customerCompanyName": "La maison d'Asie", + "customerContactName": "Annette Roulet", + "orderTotal": 2123.2, + "orderDate": 1547416800000, + "requiredDate": 1549836000000, + "shippedDate": 1547589600000, + "requiredDateStart": 1549890000000, + "requiredDateEnd": 1549895400000, + "orderID": 10413, + "customerID": "LAMAI", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 95.66, + "shipName": "La maison d-Asie", + "shipAddress": "1 rue Alsace-Lorraine", + "shipCity": "Toulouse", + "shipRegion": "", + "shipPostalCode": "31000", + "shipCountry": "France" +}, { + "customerCompanyName": "Hungry Coyote Import Store", + "customerContactName": "Yoshi Latimer", + "orderTotal": 102.4, + "orderDate": 1547503200000, + "requiredDate": 1549922400000, + "shippedDate": 1548280800000, + "requiredDateStart": 1549967400000, + "requiredDateEnd": 1549969200000, + "orderID": 10415, + "customerID": "HUNGC", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 0.2, + "shipName": "Hungry Coyote Import Store", + "shipAddress": "City Center Plaza 516 Main St.", + "shipCity": "Elgin", + "shipRegion": "OR", + "shipPostalCode": "97827", + "shipCountry": "USA" +}, { + "customerCompanyName": "Wellington Importadora", + "customerContactName": "Paula Parente", + "orderTotal": 1707.84, + "orderDate": 1548021600000, + "requiredDate": 1550440800000, + "shippedDate": 1548540000000, + "requiredDateStart": 1550482200000, + "requiredDateEnd": 1550487600000, + "orderID": 10420, + "customerID": "WELLI", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 44.12, + "shipName": "Wellington Importadora", + "shipAddress": "Rua do Mercado, 12", + "shipCity": "Resende", + "shipRegion": "SP", + "shipPostalCode": "08737-363", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Hungry Owl All-Night Grocers", + "customerContactName": "Patricia McKenna", + "orderTotal": 1441.375, + "orderDate": 1548712800000, + "requiredDate": 1552341600000, + "shippedDate": 1549490400000, + "requiredDateStart": 1552383000000, + "requiredDateEnd": 1552384800000, + "orderID": 10429, + "customerID": "HUNGO", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 56.63, + "shipName": "Hungry Owl All-Night Grocers", + "shipAddress": "8 Johnstown Road", + "shipCity": "Cork", + "shipRegion": "Co. Cork", + "shipPostalCode": "", + "shipCountry": "Ireland" +}, { + "customerCompanyName": "Split Rail Beer & Ale", + "customerContactName": "Art Braunschweiger", + "orderTotal": 485, + "orderDate": 1548885600000, + "requiredDate": 1550095200000, + "shippedDate": 1549490400000, + "requiredDateStart": 1550152800000, + "requiredDateEnd": 1550158200000, + "orderID": 10432, + "customerID": "SPLIR", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 4.34, + "shipName": "Split Rail Beer & Ale", + "shipAddress": "P.O. Box 555", + "shipCity": "Lander", + "shipRegion": "WY", + "shipPostalCode": "82520", + "shipCountry": "USA" +}, { + "customerCompanyName": "Princesa Isabel Vinhos", + "customerContactName": "Isabel de Castro", + "orderTotal": 851.2, + "orderDate": 1549144800000, + "requiredDate": 1551564000000, + "shippedDate": 1551650400000, + "requiredDateStart": 1551618000000, + "requiredDateEnd": 1551619800000, + "orderID": 10433, + "customerID": "PRINI", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 73.83, + "shipName": "Princesa Isabel Vinhos", + "shipAddress": "Estrada da saúde n. 58", + "shipCity": "Lisboa", + "shipRegion": "", + "shipPostalCode": "1756", + "shipCountry": "Portugal" +}, { + "customerCompanyName": "Folk och fä HB", + "customerContactName": "Maria Larsson", + "orderTotal": 321.12, + "orderDate": 1549144800000, + "requiredDate": 1551564000000, + "shippedDate": 1550008800000, + "requiredDateStart": 1551609000000, + "requiredDateEnd": 1551612600000, + "orderID": 10434, + "customerID": "FOLKO", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 17.92, + "shipName": "Folk och fä HB", + "shipAddress": "Åkergatan 24", + "shipCity": "Bräcke", + "shipRegion": "", + "shipPostalCode": "S-844 67", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Blondesddsl père et fils", + "customerContactName": "Frédérique Citeaux", + "orderTotal": 1994.52, + "orderDate": 1549317600000, + "requiredDate": 1551736800000, + "shippedDate": 1549836000000, + "requiredDateStart": 1551787200000, + "requiredDateEnd": 1551789000000, + "orderID": 10436, + "customerID": "BLONP", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 156.66, + "shipName": "Blondel père et fils", + "shipAddress": "24, place Kléber", + "shipCity": "Strasbourg", + "shipRegion": "", + "shipPostalCode": "67000", + "shipCountry": "France" +}, { + "customerCompanyName": "Toms Spezialitäten", + "customerContactName": "Karin Josephs", + "orderTotal": 454, + "orderDate": 1549404000000, + "requiredDate": 1551823200000, + "shippedDate": 1550095200000, + "requiredDateStart": 1551868200000, + "requiredDateEnd": 1551870000000, + "orderID": 10438, + "customerID": "TOMSP", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 8.24, + "shipName": "Toms Spezialitäten", + "shipAddress": "Luisenstr. 48", + "shipCity": "Münster", + "shipRegion": "", + "shipPostalCode": "44087", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Old World Delicatessen", + "customerContactName": "Rene Phillips", + "orderTotal": 1755, + "orderDate": 1549749600000, + "requiredDate": 1553378400000, + "shippedDate": 1552514400000, + "requiredDateStart": 1553434200000, + "requiredDateEnd": 1553437800000, + "orderID": 10441, + "customerID": "OLDWO", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 73.02, + "shipName": "Old World Delicatessen", + "shipAddress": "2743 Bering St.", + "shipCity": "Anchorage", + "shipRegion": "AK", + "shipPostalCode": "99508", + "shipCountry": "USA" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 1792, + "orderDate": 1549836000000, + "requiredDate": 1552255200000, + "shippedDate": 1550440800000, + "requiredDateStart": 1552302000000, + "requiredDateEnd": 1552303800000, + "orderID": 10442, + "customerID": "ERNSH", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 47.94, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Berglunds snabbköp", + "customerContactName": "Christina Berglund", + "orderTotal": 1031.7, + "orderDate": 1549922400000, + "requiredDate": 1552341600000, + "shippedDate": 1550700000000, + "requiredDateStart": 1552388400000, + "requiredDateEnd": 1552390200000, + "orderID": 10444, + "customerID": "BERGS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 3.5, + "shipName": "Berglunds snabbköp", + "shipAddress": "Berguvsvägen  8", + "shipCity": "Luleå", + "shipRegion": "", + "shipPostalCode": "S-958 22", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Berglunds snabbköp", + "customerContactName": "Christina Berglund", + "orderTotal": 174.9, + "orderDate": 1550008800000, + "requiredDate": 1552428000000, + "shippedDate": 1550613600000, + "requiredDateStart": 1552471200000, + "requiredDateEnd": 1552476600000, + "orderID": 10445, + "customerID": "BERGS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 9.3, + "shipName": "Berglunds snabbköp", + "shipAddress": "Berguvsvägen  8", + "shipCity": "Luleå", + "shipRegion": "", + "shipPostalCode": "S-958 22", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Blondesddsl père et fils", + "customerContactName": "Frédérique Citeaux", + "orderTotal": 1838.2, + "orderDate": 1550440800000, + "requiredDate": 1552860000000, + "shippedDate": 1551218400000, + "requiredDateStart": 1552917600000, + "requiredDateEnd": 1552923000000, + "orderID": 10449, + "customerID": "BLONP", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 53.3, + "shipName": "Blondel père et fils", + "shipAddress": "24, place Kléber", + "shipCity": "Strasbourg", + "shipRegion": "", + "shipPostalCode": "67000", + "shipCountry": "France" +}, { + "customerCompanyName": "Königlich Essen", + "customerContactName": "Philip Cramer", + "orderTotal": 717.6, + "orderDate": 1551909600000, + "requiredDate": 1554325200000, + "shippedDate": 1552341600000, + "requiredDateStart": 1554364800000, + "requiredDateEnd": 1554370200000, + "orderID": 10468, + "customerID": "KOENE", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 44.12, + "shipName": "Königlich Essen", + "shipAddress": "Maubelstr. 90", + "shipCity": "Brandenburg", + "shipRegion": "", + "shipPostalCode": "14776", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Rattlesnake Canyon Grocery", + "customerContactName": "Paula Wilson", + "orderTotal": 10495.6, + "orderDate": 1552946400000, + "requiredDate": 1555362000000, + "shippedDate": 1553119200000, + "requiredDateStart": 1555412400000, + "requiredDateEnd": 1555414200000, + "orderID": 10479, + "customerID": "RATTC", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 708.95, + "shipName": "Rattlesnake Canyon Grocery", + "shipAddress": "2817 Milton Dr.", + "shipCity": "Albuquerque", + "shipRegion": "NM", + "shipPostalCode": "87110", + "shipCountry": "USA" +}, { + "customerCompanyName": "B's Beverages", + "customerContactName": "Victoria Ashworth", + "orderTotal": 386.2, + "orderDate": 1553378400000, + "requiredDate": 1555794000000, + "shippedDate": 1554066000000, + "requiredDateStart": 1555846200000, + "requiredDateEnd": 1555848000000, + "orderID": 10484, + "customerID": "BSBEV", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 6.88, + "shipName": "B-s Beverages", + "shipAddress": "Fauntleroy Circus", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "EC2 5NT", + "shipCountry": "UK" +}, { + "customerCompanyName": "Bottom-Dollar Markets", + "customerContactName": "Elizabeth Lincoln", + "orderTotal": 851.2, + "orderDate": 1554066000000, + "requiredDate": 1556485200000, + "shippedDate": 1554930000000, + "requiredDateStart": 1556533800000, + "requiredDateEnd": 1556535600000, + "orderID": 10492, + "customerID": "BOTTM", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 62.89, + "shipName": "Bottom-Dollar Markets", + "shipAddress": "23 Tsawassen Blvd.", + "shipCity": "Tsawassen", + "shipRegion": "BC", + "shipPostalCode": "T2F 8M4", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Laughing Bacchus Wine Cellars", + "customerContactName": "Yoshi Tannamuri", + "orderTotal": 278, + "orderDate": 1554238800000, + "requiredDate": 1556658000000, + "shippedDate": 1554930000000, + "requiredDateStart": 1556703000000, + "requiredDateEnd": 1556708400000, + "orderID": 10495, + "customerID": "LAUGB", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 4.65, + "shipName": "Laughing Bacchus Wine Cellars", + "shipAddress": "2319 Elm St.", + "shipCity": "Vancouver", + "shipRegion": "BC", + "shipPostalCode": "V3F 2K1", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Mère Paillarde", + "customerContactName": "Jean Fresnière", + "orderTotal": 147.9, + "orderDate": 1555189200000, + "requiredDate": 1557608400000, + "shippedDate": 1555794000000, + "requiredDateStart": 1557649800000, + "requiredDateEnd": 1557655200000, + "orderID": 10505, + "customerID": "MEREP", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 7.13, + "shipName": "Mère Paillarde", + "shipAddress": "43 rue St. Laurent", + "shipCity": "Montréal", + "shipRegion": "Québec", + "shipPostalCode": "H1J 1C3", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 8623.45, + "orderDate": 1555880400000, + "requiredDate": 1558299600000, + "shippedDate": 1557954000000, + "requiredDateStart": 1558359000000, + "requiredDateEnd": 1558364400000, + "orderID": 10514, + "customerID": "ERNSH", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 789.95, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "North/South", + "customerContactName": "Simon Crowther", + "orderTotal": 352, + "orderDate": 1556053200000, + "requiredDate": 1558472400000, + "shippedDate": 1556485200000, + "requiredDateStart": 1558530000000, + "requiredDateEnd": 1558533600000, + "orderID": 10517, + "customerID": "NORTS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 32.07, + "shipName": "North/South", + "shipAddress": "South House 300 Queensbridge", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "SW7 1RZ", + "shipCountry": "UK" +}, { + "customerCompanyName": "Piccolo und mehr", + "customerContactName": "Georg Pipps", + "orderTotal": 4180, + "orderDate": 1557262800000, + "requiredDate": 1559682000000, + "shippedDate": 1557608400000, + "requiredDateStart": 1559730600000, + "requiredDateEnd": 1559736000000, + "orderID": 10530, + "customerID": "PICCO", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 339.22, + "shipName": "Piccolo und mehr", + "shipAddress": "Geislweg 14", + "shipCity": "Salzburg", + "shipRegion": "", + "shipPostalCode": "5020", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Lehmanns Marktstand", + "customerContactName": "Renate Messner", + "orderTotal": 1645, + "orderDate": 1557781200000, + "requiredDate": 1560200400000, + "shippedDate": 1559768400000, + "requiredDateStart": 1560247200000, + "requiredDateEnd": 1560252600000, + "orderID": 10536, + "customerID": "LEHMS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 58.88, + "shipName": "Lehmanns Marktstand", + "shipAddress": "Magazinweg 7", + "shipCity": "Frankfurt a.M.", + "shipRegion": "", + "shipPostalCode": "60528", + "shipCountry": "Germany" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 10191.7, + "orderDate": 1558213200000, + "requiredDate": 1560632400000, + "shippedDate": 1560373200000, + "requiredDateStart": 1560684600000, + "requiredDateEnd": 1560690000000, + "orderID": 10540, + "customerID": "QUICK", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 1007.64, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Seven Seas Imports", + "customerContactName": "Hari Kumar", + "orderTotal": 1792.8, + "orderDate": 1558558800000, + "requiredDate": 1560978000000, + "shippedDate": 1559422800000, + "requiredDateStart": 1561017600000, + "requiredDateEnd": 1561021200000, + "orderID": 10547, + "customerID": "SEVES", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 178.43, + "shipName": "Seven Seas Imports", + "shipAddress": "90 Wadhurst Rd.", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "OX15 4NB", + "shipCountry": "UK" +}, { + "customerCompanyName": "Toms Spezialitäten", + "customerContactName": "Karin Josephs", + "orderTotal": 240.1, + "orderDate": 1558818000000, + "requiredDate": 1561237200000, + "shippedDate": 1559422800000, + "requiredDateStart": 1561285800000, + "requiredDateEnd": 1561287600000, + "orderID": 10548, + "customerID": "TOMSP", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 1.43, + "shipName": "Toms Spezialitäten", + "shipAddress": "Luisenstr. 48", + "shipCity": "Münster", + "shipRegion": "", + "shipPostalCode": "44087", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Galería del gastrónomo", + "customerContactName": "Eduardo Saavedra", + "orderTotal": 155, + "orderDate": 1560373200000, + "requiredDate": 1562792400000, + "shippedDate": 1562619600000, + "requiredDateStart": 1562846400000, + "requiredDateEnd": 1562848200000, + "orderID": 10568, + "customerID": "GALED", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 6.54, + "shipName": "Galería del gastronómo", + "shipAddress": "Rambla de Cataluña, 23", + "shipCity": "Barcelona", + "shipRegion": "", + "shipPostalCode": "8022", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Mère Paillarde", + "customerContactName": "Jean Fresnière", + "orderTotal": 2465.25, + "orderDate": 1560718800000, + "requiredDate": 1563138000000, + "shippedDate": 1560891600000, + "requiredDateStart": 1563192000000, + "requiredDateEnd": 1563195600000, + "orderID": 10570, + "customerID": "MEREP", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 188.99, + "shipName": "Mère Paillarde", + "shipAddress": "43 rue St. Laurent", + "shipCity": "Montréal", + "shipRegion": "Québec", + "shipPostalCode": "H1J 1C3", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Berglunds snabbköp", + "customerContactName": "Christina Berglund", + "orderTotal": 1501.085, + "orderDate": 1560805200000, + "requiredDate": 1563224400000, + "shippedDate": 1561410000000, + "requiredDateStart": 1563280200000, + "requiredDateEnd": 1563285600000, + "orderID": 10572, + "customerID": "BERGS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 116.43, + "shipName": "Berglunds snabbköp", + "shipAddress": "Berguvsvägen  8", + "shipCity": "Luleå", + "shipRegion": "", + "shipPostalCode": "S-958 22", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Tortuga Restaurante", + "customerContactName": "Miguel Angel Paolino", + "orderTotal": 838.45, + "orderDate": 1561237200000, + "requiredDate": 1562446800000, + "shippedDate": 1561842000000, + "requiredDateStart": 1562502600000, + "requiredDateEnd": 1562504400000, + "orderID": 10576, + "customerID": "TORTU", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 18.56, + "shipName": "Tortuga Restaurante", + "shipAddress": "Avda. Azteca 123", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5033", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Familia Arquibaldo", + "customerContactName": "Aria Cruz", + "orderTotal": 310, + "orderDate": 1561496400000, + "requiredDate": 1563915600000, + "shippedDate": 1562014800000, + "requiredDateStart": 1563971400000, + "requiredDateEnd": 1563975000000, + "orderID": 10581, + "customerID": "FAMIA", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 3.01, + "shipName": "Familia Arquibaldo", + "shipAddress": "Rua Orós, 92", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05442-030", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Blauer See Delikatessen", + "customerContactName": "Hanna Moos", + "orderTotal": 330, + "orderDate": 1561582800000, + "requiredDate": 1564002000000, + "shippedDate": 1563051600000, + "requiredDateStart": 1564048800000, + "requiredDateEnd": 1564054200000, + "orderID": 10582, + "customerID": "BLAUS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 27.71, + "shipName": "Blauer See Delikatessen", + "shipAddress": "Forsterstr. 57", + "shipCity": "Mannheim", + "shipRegion": "", + "shipPostalCode": "68306", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Lehmanns Marktstand", + "customerContactName": "Renate Messner", + "orderTotal": 516.4675, + "orderDate": 1562533200000, + "requiredDate": 1564952400000, + "shippedDate": 1563224400000, + "requiredDateStart": 1565002800000, + "requiredDateEnd": 1565004600000, + "orderID": 10592, + "customerID": "LEHMS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 32.1, + "shipName": "Lehmanns Marktstand", + "shipAddress": "Magazinweg 7", + "shipCity": "Frankfurt a.M.", + "shipRegion": "", + "shipPostalCode": "60528", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Old World Delicatessen", + "customerContactName": "Rene Phillips", + "orderTotal": 565.5, + "orderDate": 1562619600000, + "requiredDate": 1565038800000, + "shippedDate": 1563224400000, + "requiredDateStart": 1565096400000, + "requiredDateEnd": 1565100000000, + "orderID": 10594, + "customerID": "OLDWO", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 5.24, + "shipName": "Old World Delicatessen", + "shipAddress": "2743 Bering St.", + "shipCity": "Anchorage", + "shipRegion": "AK", + "shipPostalCode": "99508", + "shipCountry": "USA" +}, { + "customerCompanyName": "Mère Paillarde", + "customerContactName": "Jean Fresnière", + "orderTotal": 1260, + "orderDate": 1564866000000, + "requiredDate": 1567285200000, + "shippedDate": 1565125200000, + "requiredDateStart": 1567341000000, + "requiredDateEnd": 1567342800000, + "orderID": 10619, + "customerID": "MEREP", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 91.05, + "shipName": "Mère Paillarde", + "shipAddress": "43 rue St. Laurent", + "shipCity": "Montréal", + "shipRegion": "Québec", + "shipPostalCode": "H1J 1C3", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Ana Trujillo Emparedados y helados", + "customerContactName": "Ana Trujillo", + "orderTotal": 479.75, + "orderDate": 1565211600000, + "requiredDate": 1567630800000, + "shippedDate": 1565730000000, + "requiredDateStart": 1567677600000, + "requiredDateEnd": 1567679400000, + "orderID": 10625, + "customerID": "ANATR", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 43.9, + "shipName": "Ana Trujillo Emparedados y helados", + "shipAddress": "Avda. de la Constitución 2222", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5021", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "LINO-Delicateses", + "customerContactName": "Felipe Izquierdo", + "orderTotal": 2720.05, + "orderDate": 1566248400000, + "requiredDate": 1568667600000, + "shippedDate": 1567285200000, + "requiredDateStart": 1568709000000, + "requiredDateEnd": 1568714400000, + "orderID": 10638, + "customerID": "LINOD", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 158.44, + "shipName": "LINO-Delicateses", + "shipAddress": "Ave. 5 de Mayo Porlamar", + "shipCity": "I. de Margarita", + "shipRegion": "Nueva Esparta", + "shipPostalCode": "4980", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Wellington Importadora", + "customerContactName": "Paula Parente", + "orderTotal": 1371.8, + "orderDate": 1566680400000, + "requiredDate": 1569099600000, + "shippedDate": 1567285200000, + "requiredDateStart": 1569146400000, + "requiredDateEnd": 1569148200000, + "orderID": 10644, + "customerID": "WELLI", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 0.14, + "shipName": "Wellington Importadora", + "shipAddress": "Rua do Mercado, 12", + "shipCity": "Resende", + "shipRegion": "SP", + "shipPostalCode": "08737-363", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Lonesome Pine Restaurant", + "customerContactName": "Fran Wilson", + "orderTotal": 125, + "orderDate": 1567976400000, + "requiredDate": 1570395600000, + "shippedDate": 1568754000000, + "requiredDateStart": 1570451400000, + "requiredDateEnd": 1570456800000, + "orderID": 10662, + "customerID": "LONEP", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 1.28, + "shipName": "Lonesome Pine Restaurant", + "shipAddress": "89 Chiaroscuro Rd.", + "shipCity": "Portland", + "shipRegion": "OR", + "shipPostalCode": "97219", + "shipCountry": "USA" +}, { + "customerCompanyName": "Great Lakes Food Market", + "customerContactName": "Howard Snyder", + "orderTotal": 1287.4, + "orderDate": 1569358800000, + "requiredDate": 1571778000000, + "shippedDate": 1569790800000, + "requiredDateStart": 1571824800000, + "requiredDateEnd": 1571830200000, + "orderID": 10681, + "customerID": "GREAL", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 76.13, + "shipName": "Great Lakes Food Market", + "shipAddress": "2732 Baker Blvd.", + "shipCity": "Eugene", + "shipRegion": "OR", + "shipPostalCode": "97403", + "shipCountry": "USA" +}, { + "customerCompanyName": "Antonio Moreno Taquería", + "customerContactName": "Antonio Moreno", + "orderTotal": 375.5, + "orderDate": 1569358800000, + "requiredDate": 1571778000000, + "shippedDate": 1569877200000, + "requiredDateStart": 1571830200000, + "requiredDateEnd": 1571833800000, + "orderID": 10682, + "customerID": "ANTON", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 36.13, + "shipName": "Antonio Moreno Taquería", + "shipAddress": "Mataderos  2312", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5023", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Ottilies Käseladen", + "customerContactName": "Henriette Pfalzheim", + "orderTotal": 1768, + "orderDate": 1569445200000, + "requiredDate": 1571864400000, + "shippedDate": 1569790800000, + "requiredDateStart": 1571909400000, + "requiredDateEnd": 1571914800000, + "orderID": 10684, + "customerID": "OTTIK", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 145.63, + "shipName": "Ottilies Käseladen", + "shipAddress": "Mehrheimerstr. 369", + "shipCity": "Köln", + "shipRegion": "", + "shipPostalCode": "50739", + "shipCountry": "Germany" +}, { + "customerCompanyName": "White Clover Markets", + "customerContactName": "Karl Jablonski", + "orderTotal": 2071.2, + "orderDate": 1570309200000, + "requiredDate": 1571518800000, + "shippedDate": 1570654800000, + "requiredDateStart": 1571567400000, + "requiredDateEnd": 1571572800000, + "orderID": 10693, + "customerID": "WHITC", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 139.34, + "shipName": "White Clover Markets", + "shipAddress": "1029 - 12th Ave. S.", + "shipCity": "Seattle", + "shipRegion": "WA", + "shipPostalCode": "98124", + "shipCountry": "USA" +}, { + "customerCompanyName": "LINO-Delicateses", + "customerContactName": "Felipe Izquierdo", + "orderTotal": 805.425, + "orderDate": 1570482000000, + "requiredDate": 1572904800000, + "shippedDate": 1571000400000, + "requiredDateStart": 1572944400000, + "requiredDateEnd": 1572948000000, + "orderID": 10697, + "customerID": "LINOD", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 45.52, + "shipName": "LINO-Delicateses", + "shipAddress": "Ave. 5 de Mayo Porlamar", + "shipCity": "I. de Margarita", + "shipRegion": "Nueva Esparta", + "shipPostalCode": "4980", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Morgenstern Gesundkost", + "customerContactName": "Alexander Feuer", + "orderTotal": 114, + "orderDate": 1570568400000, + "requiredDate": 1572991200000, + "shippedDate": 1570914000000, + "requiredDateStart": 1573036200000, + "requiredDateEnd": 1573039800000, + "orderID": 10699, + "customerID": "MORGK", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 0.58, + "shipName": "Morgenstern Gesundkost", + "shipAddress": "Heerstr. 22", + "shipCity": "Leipzig", + "shipRegion": "", + "shipPostalCode": "4179", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 1638.4, + "orderDate": 1570654800000, + "requiredDate": 1573077600000, + "shippedDate": 1571173200000, + "requiredDateStart": 1573128000000, + "requiredDateEnd": 1573131600000, + "orderID": 10700, + "customerID": "SAVEA", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 65.1, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Hungry Owl All-Night Grocers", + "customerContactName": "Patricia McKenna", + "orderTotal": 1233.48, + "orderDate": 1571605200000, + "requiredDate": 1574028000000, + "shippedDate": 1572472800000, + "requiredDateStart": 1574067600000, + "requiredDateEnd": 1574073000000, + "orderID": 10712, + "customerID": "HUNGO", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 89.93, + "shipName": "Hungry Owl All-Night Grocers", + "shipAddress": "8 Johnstown Road", + "shipCity": "Cork", + "shipRegion": "Co. Cork", + "shipPostalCode": "", + "shipCountry": "Ireland" +}, { + "customerCompanyName": "Bon app'", + "customerContactName": "Laurence Lebihan", + "orderTotal": 1296, + "orderDate": 1571778000000, + "requiredDate": 1572991200000, + "shippedDate": 1572300000000, + "requiredDateStart": 1573030800000, + "requiredDateEnd": 1573032600000, + "orderID": 10715, + "customerID": "BONAP", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 63.2, + "shipName": "Bon app-", + "shipAddress": "12, rue des Bouchers", + "shipCity": "Marseille", + "shipRegion": "", + "shipPostalCode": "13008", + "shipCountry": "France" +}, { + "customerCompanyName": "White Clover Markets", + "customerContactName": "Karl Jablonski", + "orderTotal": 468.45, + "orderDate": 1572386400000, + "requiredDate": 1574805600000, + "shippedDate": 1574632800000, + "requiredDateStart": 1574856000000, + "requiredDateEnd": 1574859600000, + "orderID": 10723, + "customerID": "WHITC", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 21.72, + "shipName": "White Clover Markets", + "shipAddress": "1029 - 12th Ave. S.", + "shipCity": "Seattle", + "shipRegion": "WA", + "shipPostalCode": "98124", + "shipCountry": "USA" +}, { + "customerCompanyName": "Bon app'", + "customerContactName": "Laurence Lebihan", + "orderTotal": 360, + "orderDate": 1572991200000, + "requiredDate": 1575410400000, + "shippedDate": 1573077600000, + "requiredDateStart": 1575469800000, + "requiredDateEnd": 1575471600000, + "orderID": 10732, + "customerID": "BONAP", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 16.97, + "shipName": "Bon app-", + "shipAddress": "12, rue des Bouchers", + "shipCity": "Marseille", + "shipRegion": "", + "shipPostalCode": "13008", + "shipCountry": "France" +}, { + "customerCompanyName": "Vins et alcools Chevalier", + "customerContactName": "Paul Henriot", + "orderTotal": 240, + "orderDate": 1573509600000, + "requiredDate": 1575928800000, + "shippedDate": 1573941600000, + "requiredDateStart": 1575973800000, + "requiredDateEnd": 1575979200000, + "orderID": 10739, + "customerID": "VINET", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 11.08, + "shipName": "Vins et alcools Chevalier", + "shipAddress": "59 rue de l-Abbaye", + "shipCity": "Reims", + "shipRegion": "", + "shipPostalCode": "51100", + "shipCountry": "France" +}, { + "customerCompanyName": "Bottom-Dollar Markets", + "customerContactName": "Elizabeth Lincoln", + "orderTotal": 3118, + "orderDate": 1573682400000, + "requiredDate": 1576101600000, + "shippedDate": 1574028000000, + "requiredDateStart": 1576150200000, + "requiredDateEnd": 1576153800000, + "orderID": 10742, + "customerID": "BOTTM", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 243.73, + "shipName": "Bottom-Dollar Markets", + "shipAddress": "23 Tsawassen Blvd.", + "shipCity": "Tsawassen", + "shipRegion": "BC", + "shipPostalCode": "T2F 8M4", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 2196, + "orderDate": 1574200800000, + "requiredDate": 1576620000000, + "shippedDate": 1574892000000, + "requiredDateStart": 1576670400000, + "requiredDateEnd": 1576675800000, + "orderID": 10748, + "customerID": "SAVEA", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 232.55, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Richter Supermarkt", + "customerContactName": "Michael Holz", + "orderTotal": 1631.484, + "orderDate": 1574546400000, + "requiredDate": 1576965600000, + "shippedDate": 1575324000000, + "requiredDateStart": 1577007000000, + "requiredDateEnd": 1577010600000, + "orderID": 10751, + "customerID": "RICSU", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 130.79, + "shipName": "Richter Supermarkt", + "shipAddress": "Starenweg 5", + "shipCity": "Genève", + "shipRegion": "", + "shipPostalCode": "1204", + "shipCountry": "Switzerland" +}, { + "customerCompanyName": "Franchi S.p.A.", + "customerContactName": "Paolo Accorti", + "orderTotal": 88, + "orderDate": 1574632800000, + "requiredDate": 1577052000000, + "shippedDate": 1574805600000, + "requiredDateStart": 1577093400000, + "requiredDateEnd": 1577095200000, + "orderID": 10753, + "customerID": "FRANS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 7.7, + "shipName": "Franchi S.p.A.", + "shipAddress": "Via Monte Bianco 34", + "shipCity": "Torino", + "shipRegion": "", + "shipPostalCode": "10100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Richter Supermarkt", + "customerContactName": "Michael Holz", + "orderTotal": 1644.6, + "orderDate": 1574892000000, + "requiredDate": 1577311200000, + "shippedDate": 1575410400000, + "requiredDateStart": 1577352600000, + "requiredDateEnd": 1577354400000, + "orderID": 10758, + "customerID": "RICSU", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 138.17, + "shipName": "Richter Supermarkt", + "shipAddress": "Starenweg 5", + "shipCity": "Genève", + "shipRegion": "", + "shipPostalCode": "1204", + "shipCountry": "Switzerland" +}, { + "customerCompanyName": "Ana Trujillo Emparedados y helados", + "customerContactName": "Ana Trujillo", + "orderTotal": 320, + "orderDate": 1574892000000, + "requiredDate": 1577311200000, + "shippedDate": 1576101600000, + "requiredDateStart": 1577368800000, + "requiredDateEnd": 1577374200000, + "orderID": 10759, + "customerID": "ANATR", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 11.99, + "shipName": "Ana Trujillo Emparedados y helados", + "shipAddress": "Avda. de la Constitución 2222", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5021", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Folk och fä HB", + "customerContactName": "Maria Larsson", + "orderTotal": 4337, + "orderDate": 1575237600000, + "requiredDate": 1577656800000, + "shippedDate": 1575842400000, + "requiredDateStart": 1577710800000, + "requiredDateEnd": 1577712600000, + "orderID": 10762, + "customerID": "FOLKO", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 328.74, + "shipName": "Folk och fä HB", + "shipAddress": "Åkergatan 24", + "shipCity": "Bräcke", + "shipRegion": "", + "shipPostalCode": "S-844 67", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Folies gourmandes", + "customerContactName": "Martine Rancé", + "orderTotal": 616, + "orderDate": 1575324000000, + "requiredDate": 1577743200000, + "shippedDate": 1575756000000, + "requiredDateStart": 1577799000000, + "requiredDateEnd": 1577800800000, + "orderID": 10763, + "customerID": "FOLIG", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 37.35, + "shipName": "Folies gourmandes", + "shipAddress": "184, chaussée de Tournai", + "shipCity": "Lille", + "shipRegion": "", + "shipPostalCode": "59000", + "shipCountry": "France" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 1515.6, + "orderDate": 1575410400000, + "requiredDate": 1577829600000, + "shippedDate": 1575842400000, + "requiredDateStart": 1577869200000, + "requiredDateEnd": 1577872800000, + "orderID": 10765, + "customerID": "QUICK", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 42.74, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Around the Horn", + "customerContactName": "Thomas Hardy", + "orderTotal": 1477, + "orderDate": 1575756000000, + "requiredDate": 1578175200000, + "shippedDate": 1576360800000, + "requiredDateStart": 1578231000000, + "requiredDateEnd": 1578232800000, + "orderID": 10768, + "customerID": "AROUT", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 146.32, + "shipName": "Around the Horn", + "shipAddress": "Brook Farm Stratford St. Mary", + "shipCity": "Colchester", + "shipRegion": "Essex", + "shipPostalCode": "CO7 6JX", + "shipCountry": "UK" +}, { + "customerCompanyName": "Vaffeljernet", + "customerContactName": "Palle Ibsen", + "orderTotal": 1684.275, + "orderDate": 1575756000000, + "requiredDate": 1578175200000, + "shippedDate": 1576101600000, + "requiredDateStart": 1578223800000, + "requiredDateEnd": 1578225600000, + "orderID": 10769, + "customerID": "VAFFE", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 65.06, + "shipName": "Vaffeljernet", + "shipAddress": "Smagsloget 45", + "shipCity": "Århus", + "shipRegion": "", + "shipPostalCode": "8200", + "shipCountry": "Denmark" +}, { + "customerCompanyName": "Lehmanns Marktstand", + "customerContactName": "Renate Messner", + "orderTotal": 3603.22, + "orderDate": 1575928800000, + "requiredDate": 1578348000000, + "shippedDate": 1576706400000, + "requiredDateStart": 1578387600000, + "requiredDateEnd": 1578393000000, + "orderID": 10772, + "customerID": "LEHMS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 91.28, + "shipName": "Lehmanns Marktstand", + "shipAddress": "Magazinweg 7", + "shipCity": "Frankfurt a.M.", + "shipRegion": "", + "shipPostalCode": "60528", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Berglunds snabbköp", + "customerContactName": "Christina Berglund", + "orderTotal": 96.5, + "orderDate": 1576447200000, + "requiredDate": 1578866400000, + "shippedDate": 1577138400000, + "requiredDateStart": 1578913200000, + "requiredDateEnd": 1578915000000, + "orderID": 10778, + "customerID": "BERGS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 6.79, + "shipName": "Berglunds snabbköp", + "shipAddress": "Berguvsvägen  8", + "shipCity": "Luleå", + "shipRegion": "", + "shipPostalCode": "S-958 22", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Morgenstern Gesundkost", + "customerContactName": "Alexander Feuer", + "orderTotal": 1335, + "orderDate": 1576447200000, + "requiredDate": 1578866400000, + "shippedDate": 1578952800000, + "requiredDateStart": 1578913200000, + "requiredDateEnd": 1578918600000, + "orderID": 10779, + "customerID": "MORGK", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 58.13, + "shipName": "Morgenstern Gesundkost", + "shipAddress": "Heerstr. 22", + "shipCity": "Leipzig", + "shipRegion": "", + "shipPostalCode": "4179", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Around the Horn", + "customerContactName": "Thomas Hardy", + "orderTotal": 191.1, + "orderDate": 1577138400000, + "requiredDate": 1579557600000, + "shippedDate": 1578434400000, + "requiredDateStart": 1579613400000, + "requiredDateEnd": 1579617000000, + "orderID": 10793, + "customerID": "AROUT", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 4.52, + "shipName": "Around the Horn", + "shipAddress": "Brook Farm Stratford St. Mary", + "shipCity": "Colchester", + "shipRegion": "Essex", + "shipPostalCode": "CO7 6JX", + "shipCountry": "UK" +}, { + "customerCompanyName": "HILARION-Abastos", + "customerContactName": "Carlos Hernández", + "orderTotal": 2341.364, + "orderDate": 1577224800000, + "requiredDate": 1579644000000, + "shippedDate": 1578952800000, + "requiredDateStart": 1579689000000, + "requiredDateEnd": 1579692600000, + "orderID": 10796, + "customerID": "HILAA", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 26.52, + "shipName": "HILARION-Abastos", + "shipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "shipCity": "San Cristóbal", + "shipRegion": "Táchira", + "shipPostalCode": "5022", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Victuailles en stock", + "customerContactName": "Mary Saveley", + "orderTotal": 439.6, + "orderDate": 1577743200000, + "requiredDate": 1580162400000, + "shippedDate": 1578175200000, + "requiredDateStart": 1580209200000, + "requiredDateEnd": 1580212800000, + "orderID": 10806, + "customerID": "VICTE", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 22.11, + "shipName": "Victuailles en stock", + "shipAddress": "2, rue du Commerce", + "shipCity": "Lyon", + "shipRegion": "", + "shipPostalCode": "69004", + "shipCountry": "France" +}, { + "customerCompanyName": "Victuailles en stock", + "customerContactName": "Mary Saveley", + "orderTotal": 1788.45, + "orderDate": 1578175200000, + "requiredDate": 1580594400000, + "shippedDate": 1578952800000, + "requiredDateStart": 1580639400000, + "requiredDateEnd": 1580644800000, + "orderID": 10814, + "customerID": "VICTE", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 130.94, + "shipName": "Victuailles en stock", + "shipAddress": "2, rue du Commerce", + "shipCity": "Lyon", + "shipRegion": "", + "shipPostalCode": "69004", + "shipCountry": "France" +}, { + "customerCompanyName": "Königlich Essen", + "customerContactName": "Philip Cramer", + "orderTotal": 10952.845, + "orderDate": 1578261600000, + "requiredDate": 1579471200000, + "shippedDate": 1578866400000, + "requiredDateStart": 1579516200000, + "requiredDateEnd": 1579521600000, + "orderID": 10817, + "customerID": "KOENE", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 306.07, + "shipName": "Königlich Essen", + "shipAddress": "Maubelstr. 90", + "shipCity": "Brandenburg", + "shipRegion": "", + "shipPostalCode": "14776", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Rattlesnake Canyon Grocery", + "customerContactName": "Paula Wilson", + "orderTotal": 1140, + "orderDate": 1578348000000, + "requiredDate": 1580767200000, + "shippedDate": 1578866400000, + "requiredDateStart": 1580810400000, + "requiredDateEnd": 1580812200000, + "orderID": 10820, + "customerID": "RATTC", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 37.52, + "shipName": "Rattlesnake Canyon Grocery", + "shipAddress": "2817 Milton Dr.", + "shipCity": "Albuquerque", + "shipRegion": "NM", + "shipPostalCode": "87110", + "shipCountry": "USA" +}, { + "customerCompanyName": "Santé Gourmet", + "customerContactName": "Jonas Bergulfsen", + "orderTotal": 2684.4, + "orderDate": 1578952800000, + "requiredDate": 1581372000000, + "shippedDate": 1579730400000, + "requiredDateStart": 1581426000000, + "requiredDateEnd": 1581427800000, + "orderID": 10831, + "customerID": "SANTG", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 72.19, + "shipName": "Santé Gourmet", + "shipAddress": "Erling Skakkes gate 78", + "shipCity": "Stavern", + "shipRegion": "", + "shipPostalCode": "4110", + "shipCountry": "Norway" +}, { + "customerCompanyName": "LINO-Delicateses", + "customerContactName": "Felipe Izquierdo", + "orderTotal": 1938.375, + "orderDate": 1579384800000, + "requiredDate": 1581804000000, + "shippedDate": 1579730400000, + "requiredDateStart": 1581852600000, + "requiredDateEnd": 1581854400000, + "orderID": 10838, + "customerID": "LINOD", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 59.28, + "shipName": "LINO-Delicateses", + "shipAddress": "Ave. 5 de Mayo Porlamar", + "shipCity": "I. de Margarita", + "shipRegion": "Nueva Esparta", + "shipPostalCode": "4980", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Tradição Hipermercados", + "customerContactName": "Anabela Domingues", + "orderTotal": 827.55, + "orderDate": 1579384800000, + "requiredDate": 1581804000000, + "shippedDate": 1579644000000, + "requiredDateStart": 1581861600000, + "requiredDateEnd": 1581865200000, + "orderID": 10839, + "customerID": "TRADH", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 35.43, + "shipName": "Tradiçao Hipermercados", + "shipAddress": "Av. Inês de Castro, 414", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05634-030", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 2966.5, + "orderDate": 1580076000000, + "requiredDate": 1582495200000, + "shippedDate": 1580853600000, + "requiredDateStart": 1582536600000, + "requiredDateEnd": 1582542000000, + "orderID": 10854, + "customerID": "ERNSH", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 100.22, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Old World Delicatessen", + "customerContactName": "Rene Phillips", + "orderTotal": 2227.8875, + "orderDate": 1580076000000, + "requiredDate": 1582495200000, + "shippedDate": 1580767200000, + "requiredDateStart": 1582551000000, + "requiredDateEnd": 1582556400000, + "orderID": 10855, + "customerID": "OLDWO", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 170.97, + "shipName": "Old World Delicatessen", + "shipAddress": "2743 Bering St.", + "shipCity": "Anchorage", + "shipRegion": "AK", + "shipPostalCode": "99508", + "shipCountry": "USA" +}, { + "customerCompanyName": "Antonio Moreno Taquería", + "customerContactName": "Antonio Moreno", + "orderTotal": 660, + "orderDate": 1580162400000, + "requiredDate": 1582581600000, + "shippedDate": 1581285600000, + "requiredDateStart": 1582626600000, + "requiredDateEnd": 1582628400000, + "orderID": 10856, + "customerID": "ANTON", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 58.43, + "shipName": "Antonio Moreno Taquería", + "shipAddress": "Mataderos  2312", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5023", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "France restauration", + "customerContactName": "Carine Schmitt", + "orderTotal": 519, + "orderDate": 1580248800000, + "requiredDate": 1582668000000, + "shippedDate": 1580767200000, + "requiredDateStart": 1582727400000, + "requiredDateEnd": 1582731000000, + "orderID": 10860, + "customerID": "FRANR", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 19.26, + "shipName": "France restauration", + "shipAddress": "54, rue Royale", + "shipCity": "Nantes", + "shipRegion": "", + "shipPostalCode": "44000", + "shipCountry": "France" +}, { + "customerCompanyName": "Wilman Kala", + "customerContactName": "Matti Karttunen", + "orderTotal": 611.3, + "orderDate": 1581285600000, + "requiredDate": 1583791200000, + "shippedDate": 1581458400000, + "requiredDateStart": 1583838000000, + "requiredDateEnd": 1583839800000, + "orderID": 10879, + "customerID": "WILMK", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 8.5, + "shipName": "Wilman Kala", + "shipAddress": "Keskuskatu 45", + "shipCity": "Helsinki", + "shipRegion": "", + "shipPostalCode": "21240", + "shipCountry": "Finland" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 6379.4, + "orderDate": 1581976800000, + "requiredDate": 1584482400000, + "shippedDate": 1582408800000, + "requiredDateStart": 1584540000000, + "requiredDateEnd": 1584543600000, + "orderID": 10895, + "customerID": "ERNSH", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 162.75, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Hungry Owl All-Night Grocers", + "customerContactName": "Patricia McKenna", + "orderTotal": 10835.24, + "orderDate": 1582063200000, + "requiredDate": 1584568800000, + "shippedDate": 1582581600000, + "requiredDateStart": 1584628200000, + "requiredDateEnd": 1584631800000, + "orderID": 10897, + "customerID": "HUNGO", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 603.54, + "shipName": "Hungry Owl All-Night Grocers", + "shipAddress": "8 Johnstown Road", + "shipCity": "Cork", + "shipRegion": "Co. Cork", + "shipPostalCode": "", + "shipCountry": "Ireland" +}, { + "customerCompanyName": "Hanari Carnes", + "customerContactName": "Mario Pontes", + "orderTotal": 932.05, + "orderDate": 1582495200000, + "requiredDate": 1585000800000, + "shippedDate": 1583272800000, + "requiredDateStart": 1585047600000, + "requiredDateEnd": 1585049400000, + "orderID": 10903, + "customerID": "HANAR", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 36.71, + "shipName": "Hanari Carnes", + "shipAddress": "Rua do Paço, 67", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "05454-876", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "White Clover Markets", + "customerContactName": "Karl Jablonski", + "orderTotal": 1924.25, + "orderDate": 1582495200000, + "requiredDate": 1585000800000, + "shippedDate": 1582754400000, + "requiredDateStart": 1585056600000, + "requiredDateEnd": 1585060200000, + "orderID": 10904, + "customerID": "WHITC", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 162.95, + "shipName": "White Clover Markets", + "shipAddress": "1029 - 12th Ave. S.", + "shipCity": "Seattle", + "shipRegion": "WA", + "shipPostalCode": "98124", + "shipCountry": "USA" +}, { + "customerCompanyName": "Godos Cocina Típica", + "customerContactName": "José Pedro Freyre", + "orderTotal": 858, + "orderDate": 1582668000000, + "requiredDate": 1585173600000, + "shippedDate": 1583359200000, + "requiredDateStart": 1585218600000, + "requiredDateEnd": 1585222200000, + "orderID": 10911, + "customerID": "GODOS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 38.19, + "shipName": "Godos Cocina Típica", + "shipAddress": "C/ Romero, 33", + "shipCity": "Sevilla", + "shipRegion": "", + "shipPostalCode": "41101", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Bottom-Dollar Markets", + "customerContactName": "Elizabeth Lincoln", + "orderTotal": 1447.5, + "orderDate": 1583100000000, + "requiredDate": 1585515600000, + "shippedDate": 1583877600000, + "requiredDateStart": 1585555200000, + "requiredDateEnd": 1585560600000, + "orderID": 10918, + "customerID": "BOTTM", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 48.83, + "shipName": "Bottom-Dollar Markets", + "shipAddress": "23 Tsawassen Blvd.", + "shipCity": "Tsawassen", + "shipRegion": "BC", + "shipPostalCode": "T2F 8M4", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Berglunds snabbköp", + "customerContactName": "Christina Berglund", + "orderTotal": 1835.7, + "orderDate": 1583272800000, + "requiredDate": 1585688400000, + "shippedDate": 1586293200000, + "requiredDateStart": 1585738800000, + "requiredDateEnd": 1585744200000, + "orderID": 10924, + "customerID": "BERGS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 151.52, + "shipName": "Berglunds snabbköp", + "shipAddress": "Berguvsvägen  8", + "shipCity": "Luleå", + "shipRegion": "", + "shipPostalCode": "S-958 22", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Hanari Carnes", + "customerContactName": "Mario Pontes", + "orderTotal": 475.15, + "orderDate": 1583272800000, + "requiredDate": 1585688400000, + "shippedDate": 1584050400000, + "requiredDateStart": 1585735200000, + "requiredDateEnd": 1585740600000, + "orderID": 10925, + "customerID": "HANAR", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 2.27, + "shipName": "Hanari Carnes", + "shipAddress": "Rua do Paço, 67", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "05454-876", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Lehmanns Marktstand", + "customerContactName": "Renate Messner", + "orderTotal": 500, + "orderDate": 1583704800000, + "requiredDate": 1586120400000, + "shippedDate": 1583964000000, + "requiredDateStart": 1586161800000, + "requiredDateEnd": 1586163600000, + "orderID": 10934, + "customerID": "LEHMS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 32.01, + "shipName": "Lehmanns Marktstand", + "shipAddress": "Magazinweg 7", + "shipCity": "Frankfurt a.M.", + "shipRegion": "", + "shipPostalCode": "60528", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Great Lakes Food Market", + "customerContactName": "Howard Snyder", + "orderTotal": 456, + "orderDate": 1583704800000, + "requiredDate": 1586120400000, + "shippedDate": 1584482400000, + "requiredDateStart": 1586176200000, + "requiredDateEnd": 1586181600000, + "orderID": 10936, + "customerID": "GREAL", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 33.68, + "shipName": "Great Lakes Food Market", + "shipAddress": "2732 Baker Blvd.", + "shipCity": "Eugene", + "shipRegion": "OR", + "shipPostalCode": "97403", + "shipCountry": "USA" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 2731.875, + "orderDate": 1583791200000, + "requiredDate": 1586206800000, + "shippedDate": 1584309600000, + "requiredDateStart": 1586253600000, + "requiredDateEnd": 1586259000000, + "orderID": 10938, + "customerID": "QUICK", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 31.89, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "B's Beverages", + "customerContactName": "Victoria Ashworth", + "orderTotal": 220, + "orderDate": 1584050400000, + "requiredDate": 1586466000000, + "shippedDate": 1584309600000, + "requiredDateStart": 1586525400000, + "requiredDateEnd": 1586527200000, + "orderID": 10947, + "customerID": "BSBEV", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 3.26, + "shipName": "B-s Beverages", + "shipAddress": "Fauntleroy Circus", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "EC2 5NT", + "shipCountry": "UK" +}, { + "customerCompanyName": "Godos Cocina Típica", + "customerContactName": "José Pedro Freyre", + "orderTotal": 2362.25, + "orderDate": 1584050400000, + "requiredDate": 1586466000000, + "shippedDate": 1584568800000, + "requiredDateStart": 1586505600000, + "requiredDateEnd": 1586509200000, + "orderID": 10948, + "customerID": "GODOS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 23.39, + "shipName": "Godos Cocina Típica", + "shipAddress": "C/ Romero, 33", + "shipCity": "Sevilla", + "shipRegion": "", + "shipPostalCode": "41101", + "shipCountry": "Spain" +}, { + "customerCompanyName": "HILARION-Abastos", + "customerContactName": "Carlos Hernández", + "orderTotal": 265.35, + "orderDate": 1584568800000, + "requiredDate": 1585774800000, + "shippedDate": 1586293200000, + "requiredDateStart": 1585830600000, + "requiredDateEnd": 1585834200000, + "orderID": 10960, + "customerID": "HILAA", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 2.08, + "shipName": "HILARION-Abastos", + "shipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "shipCity": "San Cristóbal", + "shipRegion": "Táchira", + "shipPostalCode": "5022", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Spécialités du monde", + "customerContactName": "Dominique Perrier", + "orderTotal": 2052.5, + "orderDate": 1584655200000, + "requiredDate": 1587070800000, + "shippedDate": 1585000800000, + "requiredDateStart": 1587114000000, + "requiredDateEnd": 1587117600000, + "orderID": 10964, + "customerID": "SPECD", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 87.38, + "shipName": "Spécialités du monde", + "shipAddress": "25, rue Lauriston", + "shipCity": "Paris", + "shipRegion": "", + "shipPostalCode": "75016", + "shipCountry": "France" +}, { + "customerCompanyName": "Split Rail Beer & Ale", + "customerContactName": "Art Braunschweiger", + "orderTotal": 439, + "orderDate": 1585087200000, + "requiredDate": 1586293200000, + "shippedDate": 1585861200000, + "requiredDateStart": 1586349000000, + "requiredDateEnd": 1586354400000, + "orderID": 10974, + "customerID": "SPLIR", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 12.96, + "shipName": "Split Rail Beer & Ale", + "shipAddress": "P.O. Box 555", + "shipCity": "Lander", + "shipRegion": "WY", + "shipPostalCode": "82520", + "shipCountry": "USA" +}, { + "customerCompanyName": "Rattlesnake Canyon Grocery", + "customerContactName": "Paula Wilson", + "orderTotal": 3574.8, + "orderDate": 1585602000000, + "requiredDate": 1588021200000, + "shippedDate": 1586466000000, + "requiredDateStart": 1588075200000, + "requiredDateEnd": 1588080600000, + "orderID": 10988, + "customerID": "RATTC", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 61.14, + "shipName": "Rattlesnake Canyon Grocery", + "shipAddress": "2817 Milton Dr.", + "shipCity": "Albuquerque", + "shipRegion": "NM", + "shipPostalCode": "87110", + "shipCountry": "USA" +}, { + "customerCompanyName": "The Cracker Box", + "customerContactName": "Liu Wong", + "orderTotal": 326, + "orderDate": 1586120400000, + "requiredDate": 1588539600000, + "shippedDate": 1586293200000, + "requiredDateStart": 1588591800000, + "requiredDateEnd": 1588593600000, + "orderID": 11003, + "customerID": "THECR", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 14.91, + "shipName": "The Cracker Box", + "shipAddress": "55 Grizzly Peak Rd.", + "shipCity": "Butte", + "shipRegion": "MT", + "shipPostalCode": "59801", + "shipCountry": "USA" +}, { + "customerCompanyName": "Maison Dewey", + "customerContactName": "Catherine Dewey", + "orderTotal": 295.38, + "orderDate": 1586206800000, + "requiredDate": 1588626000000, + "shippedDate": 1587330000000, + "requiredDateStart": 1588671000000, + "requiredDateEnd": 1588674600000, + "orderID": 11004, + "customerID": "MAISD", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 44.84, + "shipName": "Maison Dewey", + "shipAddress": "Rue Joseph-Bens 532", + "shipCity": "Bruxelles", + "shipRegion": "", + "shipPostalCode": "B-1180", + "shipCountry": "Belgium" +}, { + "customerCompanyName": "Great Lakes Food Market", + "customerContactName": "Howard Snyder", + "orderTotal": 329.685, + "orderDate": 1586206800000, + "requiredDate": 1588626000000, + "shippedDate": 1586898000000, + "requiredDateStart": 1588680000000, + "requiredDateEnd": 1588681800000, + "orderID": 11006, + "customerID": "GREAL", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 25.19, + "shipName": "Great Lakes Food Market", + "shipAddress": "2732 Baker Blvd.", + "shipCity": "Eugene", + "shipRegion": "OR", + "shipPostalCode": "97403", + "shipCountry": "USA" +}, { + "customerCompanyName": "Alfreds Futterkiste", + "customerContactName": "Maria Anders", + "orderTotal": 933.5, + "orderDate": 1586379600000, + "requiredDate": 1588798800000, + "shippedDate": 1586725200000, + "requiredDateStart": 1588847400000, + "requiredDateEnd": 1588849200000, + "orderID": 11011, + "customerID": "ALFKI", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 1.21, + "shipName": "Alfred-s Futterkiste", + "shipAddress": "Obere Str. 57", + "shipCity": "Berlin", + "shipRegion": "", + "shipPostalCode": "12209", + "shipCountry": "Germany" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 6306.24, + "orderDate": 1586811600000, + "requiredDate": 1589230800000, + "shippedDate": 1587416400000, + "requiredDateStart": 1589284800000, + "requiredDateEnd": 1589288400000, + "orderID": 11021, + "customerID": "QUICK", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 297.18, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Chop-suey Chinese", + "customerContactName": "Yang Wang", + "orderTotal": 1773, + "orderDate": 1587502800000, + "requiredDate": 1589922000000, + "shippedDate": 1588021200000, + "requiredDateStart": 1589968800000, + "requiredDateEnd": 1589970600000, + "orderID": 11041, + "customerID": "CHOPS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 48.22, + "shipName": "Chop-suey Chinese", + "shipAddress": "Hauptstr. 31", + "shipCity": "Bern", + "shipRegion": "", + "shipPostalCode": "3012", + "shipCountry": "Switzerland" +}, { + "customerCompanyName": "Gourmet Lanchonetes", + "customerContactName": "André Fonseca", + "orderTotal": 273.6, + "orderDate": 1587675600000, + "requiredDate": 1590094800000, + "shippedDate": 1588539600000, + "requiredDateStart": 1590141600000, + "requiredDateEnd": 1590145200000, + "orderID": 11049, + "customerID": "GOURL", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 8.34, + "shipName": "Gourmet Lanchonetes", + "shipAddress": "Av. Brasil, 442", + "shipCity": "Campinas", + "shipRegion": "SP", + "shipPostalCode": "04876-786", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Hanari Carnes", + "customerContactName": "Mario Pontes", + "orderTotal": 1332, + "orderDate": 1587934800000, + "requiredDate": 1590354000000, + "shippedDate": 1588280400000, + "requiredDateStart": 1590395400000, + "requiredDateEnd": 1590399000000, + "orderID": 11052, + "customerID": "HANAR", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 1, + "freight": 67.26, + "shipName": "Hanari Carnes", + "shipAddress": "Rua do Paço, 67", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "05454-876", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "North/South", + "customerContactName": "Simon Crowther", + "orderTotal": 45, + "orderDate": 1588107600000, + "requiredDate": 1590526800000, + "shippedDate": 1588280400000, + "requiredDateStart": 1590577200000, + "requiredDateEnd": 1590582600000, + "orderID": 11057, + "customerID": "NORTS", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 3, + "freight": 4.13, + "shipName": "North/South", + "shipAddress": "South House 300 Queensbridge", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "SW7 1RZ", + "shipCountry": "UK" +}, { + "customerCompanyName": "Hungry Owl All-Night Grocers", + "customerContactName": "Patricia McKenna", + "orderTotal": 1342.95, + "orderDate": 1588194000000, + "requiredDate": 1590613200000, + "shippedDate": 1588712400000, + "requiredDateStart": 1590654600000, + "requiredDateEnd": 1590656400000, + "orderID": 11063, + "customerID": "HUNGO", + "employeeID": "c8389213-a2cd-4bb8-ba99-9c29e9b70881", + "teamID": 2, + "shipVia": 2, + "freight": 81.73, + "shipName": "Hungry Owl All-Night Grocers", + "shipAddress": "8 Johnstown Road", + "shipCity": "Cork", + "shipRegion": "Co. Cork", + "shipPostalCode": "", + "shipCountry": "Ireland" +}, { + "customerCompanyName": "Blondesddsl père et fils", + "customerContactName": "Frédérique Citeaux", + "orderTotal": 1176, + "orderDate": 1532466000000, + "requiredDate": 1534885200000, + "shippedDate": 1534021200000, + "requiredDateStart": 1534933800000, + "requiredDateEnd": 1534937400000, + "orderID": 10265, + "customerID": "BLONP", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 55.28, + "shipName": "Blondel père et fils", + "shipAddress": "24, place Kléber", + "shipCity": "Strasbourg", + "shipRegion": "", + "shipPostalCode": "67000", + "shipCountry": "France" +}, { + "customerCompanyName": "Morgenstern Gesundkost", + "customerContactName": "Alexander Feuer", + "orderTotal": 1200.8, + "orderDate": 1533762000000, + "requiredDate": 1536181200000, + "shippedDate": 1534107600000, + "requiredDateStart": 1536231600000, + "requiredDateEnd": 1536233400000, + "orderID": 10277, + "customerID": "MORGK", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 125.77, + "shipName": "Morgenstern Gesundkost", + "shipAddress": "Heerstr. 22", + "shipCity": "Leipzig", + "shipRegion": "", + "shipPostalCode": "4179", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Berglunds snabbköp", + "customerContactName": "Christina Berglund", + "orderTotal": 613.2, + "orderDate": 1534194000000, + "requiredDate": 1536613200000, + "shippedDate": 1536699600000, + "requiredDateStart": 1536652800000, + "requiredDateEnd": 1536656400000, + "orderID": 10280, + "customerID": "BERGS", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 8.98, + "shipName": "Berglunds snabbköp", + "shipAddress": "Berguvsvägen  8", + "shipCity": "Luleå", + "shipRegion": "", + "shipPostalCode": "S-958 22", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Vins et alcools Chevalier", + "customerContactName": "Paul Henriot", + "orderTotal": 121.6, + "orderDate": 1535835600000, + "requiredDate": 1538254800000, + "shippedDate": 1536526800000, + "requiredDateStart": 1538296200000, + "requiredDateEnd": 1538299800000, + "orderID": 10295, + "customerID": "VINET", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 1.15, + "shipName": "Vins et alcools Chevalier", + "shipAddress": "59 rue de l-Abbaye", + "shipCity": "Reims", + "shipRegion": "", + "shipPostalCode": "51100", + "shipCountry": "France" +}, { + "customerCompanyName": "Magazzini Alimentari Riuniti", + "customerContactName": "Giovanni Rovelli", + "orderTotal": 608, + "orderDate": 1536440400000, + "requiredDate": 1538859600000, + "shippedDate": 1537218000000, + "requiredDateStart": 1538908200000, + "requiredDateEnd": 1538913600000, + "orderID": 10300, + "customerID": "MAGAA", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 17.68, + "shipName": "Magazzini Alimentari Riuniti", + "shipAddress": "Via Ludovico il Moro 22", + "shipCity": "Bergamo", + "shipRegion": "", + "shipPostalCode": "24100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Lonesome Pine Restaurant", + "customerContactName": "Fran Wilson", + "orderTotal": 424, + "orderDate": 1537131600000, + "requiredDate": 1539550800000, + "shippedDate": 1537822800000, + "requiredDateStart": 1539604800000, + "requiredDateEnd": 1539606600000, + "orderID": 10307, + "customerID": "LONEP", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 0.56, + "shipName": "Lonesome Pine Restaurant", + "shipAddress": "89 Chiaroscuro Rd.", + "shipCity": "Portland", + "shipRegion": "OR", + "shipPostalCode": "97219", + "shipCountry": "USA" +}, { + "customerCompanyName": "Die Wandernde Kuh", + "customerContactName": "Rita Müller", + "orderTotal": 1614.8, + "orderDate": 1537650000000, + "requiredDate": 1540069200000, + "shippedDate": 1538514000000, + "requiredDateStart": 1540116000000, + "requiredDateEnd": 1540119600000, + "orderID": 10312, + "customerID": "WANDK", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 40.26, + "shipName": "Die Wandernde Kuh", + "shipAddress": "Adenauerallee 900", + "shipCity": "Stuttgart", + "shipRegion": "", + "shipPostalCode": "70563", + "shipCountry": "Germany" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 182.4, + "orderDate": 1537736400000, + "requiredDate": 1540155600000, + "shippedDate": 1538600400000, + "requiredDateStart": 1540195200000, + "requiredDateEnd": 1540200600000, + "orderID": 10313, + "customerID": "QUICK", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 1.96, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Folk och fä HB", + "customerContactName": "Maria Larsson", + "orderTotal": 1810, + "orderDate": 1539205200000, + "requiredDate": 1541628000000, + "shippedDate": 1539464400000, + "requiredDateStart": 1541673000000, + "requiredDateEnd": 1541674800000, + "orderID": 10327, + "customerID": "FOLKO", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 63.36, + "shipName": "Folk och fä HB", + "shipAddress": "Åkergatan 24", + "shipCity": "Bräcke", + "shipRegion": "", + "shipPostalCode": "S-844 67", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Mère Paillarde", + "customerContactName": "Jean Fresnière", + "orderTotal": 3354, + "orderDate": 1540674000000, + "requiredDate": 1543096800000, + "shippedDate": 1541282400000, + "requiredDateStart": 1543140000000, + "requiredDateEnd": 1543141800000, + "orderID": 10339, + "customerID": "MEREP", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 15.66, + "shipName": "Mère Paillarde", + "shipAddress": "43 rue St. Laurent", + "shipCity": "Montréal", + "shipRegion": "Québec", + "shipPostalCode": "H1J 1C3", + "shipCountry": "Canada" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 2924.8, + "orderDate": 1541282400000, + "requiredDate": 1543701600000, + "shippedDate": 1541887200000, + "requiredDateStart": 1543761000000, + "requiredDateEnd": 1543766400000, + "orderID": 10345, + "customerID": "QUICK", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 249.06, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 1689.78, + "orderDate": 1543442400000, + "requiredDate": 1545861600000, + "shippedDate": 1543701600000, + "requiredDateStart": 1545906600000, + "requiredDateEnd": 1545912000000, + "orderID": 10368, + "customerID": "ERNSH", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 101.95, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Que Delícia", + "customerContactName": "Bernardo Batista", + "orderTotal": 863.28, + "orderDate": 1544479200000, + "requiredDate": 1546898400000, + "shippedDate": 1544652000000, + "requiredDateStart": 1546956000000, + "requiredDateEnd": 1546961400000, + "orderID": 10379, + "customerID": "QUEDE", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 45.03, + "shipName": "Que Delícia", + "shipAddress": "Rua da Panificadora, 12", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-673", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Seven Seas Imports", + "customerContactName": "Hari Kumar", + "orderTotal": 1228.8, + "orderDate": 1545170400000, + "requiredDate": 1547589600000, + "shippedDate": 1545256800000, + "requiredDateStart": 1547641800000, + "requiredDateEnd": 1547647200000, + "orderID": 10388, + "customerID": "SEVES", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 34.86, + "shipName": "Seven Seas Imports", + "shipAddress": "90 Wadhurst Rd.", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "OX15 4NB", + "shipCountry": "UK" +}, { + "customerCompanyName": "Piccolo und mehr", + "customerContactName": "Georg Pipps", + "orderTotal": 1440, + "orderDate": 1545602400000, + "requiredDate": 1548021600000, + "shippedDate": 1546293600000, + "requiredDateStart": 1548063000000, + "requiredDateEnd": 1548066600000, + "orderID": 10392, + "customerID": "PICCO", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 122.46, + "shipName": "Piccolo und mehr", + "shipAddress": "Geislweg 14", + "shipCity": "Salzburg", + "shipRegion": "", + "shipPostalCode": "5020", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 2505.6, + "orderDate": 1546120800000, + "requiredDate": 1548540000000, + "shippedDate": 1546984800000, + "requiredDateStart": 1548579600000, + "requiredDateEnd": 1548585000000, + "orderID": 10398, + "customerID": "SAVEA", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 89.16, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Magazzini Alimentari Riuniti", + "customerContactName": "Giovanni Rovelli", + "orderTotal": 1591.25, + "orderDate": 1546466400000, + "requiredDate": 1548885600000, + "shippedDate": 1546898400000, + "requiredDateStart": 1548928800000, + "requiredDateEnd": 1548932400000, + "orderID": 10404, + "customerID": "MAGAA", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 155.97, + "shipName": "Magazzini Alimentari Riuniti", + "shipAddress": "Via Ludovico il Moro 22", + "shipCity": "Bergamo", + "shipRegion": "", + "shipPostalCode": "24100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Ottilies Käseladen", + "customerContactName": "Henriette Pfalzheim", + "orderTotal": 1194, + "orderDate": 1546812000000, + "requiredDate": 1549231200000, + "shippedDate": 1548799200000, + "requiredDateStart": 1549285200000, + "requiredDateEnd": 1549288800000, + "orderID": 10407, + "customerID": "OTTIK", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 91.48, + "shipName": "Ottilies Käseladen", + "shipAddress": "Mehrheimerstr. 369", + "shipCity": "Köln", + "shipRegion": "", + "shipPostalCode": "50739", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Familia Arquibaldo", + "customerContactName": "Aria Cruz", + "orderTotal": 224.83, + "orderDate": 1547416800000, + "requiredDate": 1549836000000, + "shippedDate": 1547676000000, + "requiredDateStart": 1549879200000, + "requiredDateEnd": 1549881000000, + "orderID": 10414, + "customerID": "FAMIA", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 21.48, + "shipName": "Familia Arquibaldo", + "shipAddress": "Rua Orós, 92", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05442-030", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Franchi S.p.A.", + "customerContactName": "Paolo Accorti", + "orderTotal": 49.8, + "orderDate": 1548108000000, + "requiredDate": 1550527200000, + "shippedDate": 1548885600000, + "requiredDateStart": 1550583000000, + "requiredDateEnd": 1550586600000, + "orderID": 10422, + "customerID": "FRANS", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 3.02, + "shipName": "Franchi S.p.A.", + "shipAddress": "Via Monte Bianco 34", + "shipCity": "Torino", + "shipRegion": "", + "shipPostalCode": "10100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Königlich Essen", + "customerContactName": "Philip Cramer", + "orderTotal": 1584, + "orderDate": 1551045600000, + "requiredDate": 1553464800000, + "shippedDate": 1551564000000, + "requiredDateStart": 1553513400000, + "requiredDateEnd": 1553517000000, + "orderID": 10457, + "customerID": "KOENE", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 11.57, + "shipName": "Königlich Essen", + "shipAddress": "Maubelstr. 90", + "shipCity": "Brandenburg", + "shipRegion": "", + "shipPostalCode": "14776", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Consolidated Holdings", + "customerContactName": "Elizabeth Brown", + "orderTotal": 156, + "orderDate": 1551564000000, + "requiredDate": 1553983200000, + "shippedDate": 1552860000000, + "requiredDateStart": 1554042600000, + "requiredDateEnd": 1554046200000, + "orderID": 10462, + "customerID": "CONSH", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 6.17, + "shipName": "Consolidated Holdings", + "shipAddress": "Berkeley Gardens 12  Brewery", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "WX1 6LT", + "shipCountry": "UK" +}, { + "customerCompanyName": "B's Beverages", + "customerContactName": "Victoria Ashworth", + "orderTotal": 1328, + "orderDate": 1552255200000, + "requiredDate": 1554670800000, + "shippedDate": 1552860000000, + "requiredDateStart": 1554715800000, + "requiredDateEnd": 1554721200000, + "orderID": 10471, + "customerID": "BSBEV", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 45.59, + "shipName": "B-s Beverages", + "shipAddress": "Fauntleroy Circus", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "EC2 5NT", + "shipCountry": "UK" +}, { + "customerCompanyName": "Victuailles en stock", + "customerContactName": "Mary Saveley", + "orderTotal": 471.2, + "orderDate": 1552860000000, + "requiredDate": 1554066000000, + "shippedDate": 1553551200000, + "requiredDateStart": 1554116400000, + "requiredDateEnd": 1554120000000, + "orderID": 10478, + "customerID": "VICTE", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 4.81, + "shipName": "Victuailles en stock", + "shipAddress": "2, rue du Commerce", + "shipCity": "Lyon", + "shipRegion": "", + "shipPostalCode": "69004", + "shipCountry": "France" +}, { + "customerCompanyName": "Queen Cozinha", + "customerContactName": "Lúcia Carvalho", + "orderTotal": 889.7, + "orderDate": 1553551200000, + "requiredDate": 1555966800000, + "shippedDate": 1553724000000, + "requiredDateStart": 1556006400000, + "requiredDateEnd": 1556010000000, + "orderID": 10487, + "customerID": "QUEEN", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 71.07, + "shipName": "Queen Cozinha", + "shipAddress": "Alameda dos Canàrios, 891", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05487-020", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Pericles Comidas clásicas", + "customerContactName": "Guillermo Fernández", + "orderTotal": 816.3, + "orderDate": 1554843600000, + "requiredDate": 1557262800000, + "shippedDate": 1556485200000, + "requiredDateStart": 1557313200000, + "requiredDateEnd": 1557315000000, + "orderID": 10502, + "customerID": "PERIC", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 69.32, + "shipName": "Pericles Comidas clásicas", + "shipAddress": "Calle Dr. Jorge Cash 321", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5033", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 9921.3, + "orderDate": 1555966800000, + "requiredDate": 1557176400000, + "shippedDate": 1558558800000, + "requiredDateStart": 1557217800000, + "requiredDateEnd": 1557221400000, + "orderID": 10515, + "customerID": "QUICK", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 204.47, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Hungry Owl All-Night Grocers", + "customerContactName": "Patricia McKenna", + "orderTotal": 2381.05, + "orderDate": 1556053200000, + "requiredDate": 1558472400000, + "shippedDate": 1556658000000, + "requiredDateStart": 1558513800000, + "requiredDateEnd": 1558519200000, + "orderID": 10516, + "customerID": "HUNGO", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 62.78, + "shipName": "Hungry Owl All-Night Grocers", + "shipAddress": "8 Johnstown Road", + "shipCity": "Cork", + "shipRegion": "Co. Cork", + "shipPostalCode": "", + "shipCountry": "Ireland" +}, { + "customerCompanyName": "Hanari Carnes", + "customerContactName": "Mario Pontes", + "orderTotal": 1946.52, + "orderDate": 1558213200000, + "requiredDate": 1560632400000, + "shippedDate": 1559077200000, + "requiredDateStart": 1560684600000, + "requiredDateEnd": 1560688200000, + "orderID": 10541, + "customerID": "HANAR", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 68.65, + "shipName": "Hanari Carnes", + "shipAddress": "Rua do Paço, 67", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "05454-876", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "HILARION-Abastos", + "customerContactName": "Carlos Hernández", + "orderTotal": 880.5, + "orderDate": 1559077200000, + "requiredDate": 1561496400000, + "shippedDate": 1559682000000, + "requiredDateStart": 1561543200000, + "requiredDateEnd": 1561548600000, + "orderID": 10552, + "customerID": "HILAA", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 83.22, + "shipName": "HILARION-Abastos", + "shipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "shipCity": "San Cristóbal", + "shipRegion": "Táchira", + "shipPostalCode": "5022", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Wartian Herkku", + "customerContactName": "Pirkko Koskitalo", + "orderTotal": 1546.3, + "orderDate": 1559163600000, + "requiredDate": 1561582800000, + "shippedDate": 1559509200000, + "requiredDateStart": 1561627800000, + "requiredDateEnd": 1561629600000, + "orderID": 10553, + "customerID": "WARTH", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 149.49, + "shipName": "Wartian Herkku", + "shipAddress": "Torikatu 38", + "shipCity": "Oulu", + "shipRegion": "", + "shipPostalCode": "90110", + "shipCountry": "Finland" +}, { + "customerCompanyName": "Simons bistro", + "customerContactName": "Jytte Petersen", + "orderTotal": 835.2, + "orderDate": 1559509200000, + "requiredDate": 1563138000000, + "shippedDate": 1560373200000, + "requiredDateStart": 1563177600000, + "requiredDateEnd": 1563181200000, + "orderID": 10556, + "customerID": "SIMOB", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 9.8, + "shipName": "Simons bistro", + "shipAddress": "Vinbæltet 34", + "shipCity": "Kobenhavn", + "shipRegion": "", + "shipPostalCode": "1734", + "shipCountry": "Denmark" +}, { + "customerCompanyName": "Folk och fä HB", + "customerContactName": "Maria Larsson", + "orderTotal": 2844.5, + "orderDate": 1559768400000, + "requiredDate": 1562187600000, + "shippedDate": 1560027600000, + "requiredDateStart": 1562230800000, + "requiredDateEnd": 1562232600000, + "orderID": 10561, + "customerID": "FOLKO", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 242.21, + "shipName": "Folk och fä HB", + "shipAddress": "Åkergatan 24", + "shipCity": "Bräcke", + "shipRegion": "", + "shipPostalCode": "S-844 67", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Ricardo Adocicados", + "customerContactName": "Janete Limeira", + "orderTotal": 965, + "orderDate": 1560114000000, + "requiredDate": 1563742800000, + "shippedDate": 1561323600000, + "requiredDateStart": 1563789600000, + "requiredDateEnd": 1563791400000, + "orderID": 10563, + "customerID": "RICAR", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 60.43, + "shipName": "Ricardo Adocicados", + "shipAddress": "Av. Copacabana, 267", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-890", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Wartian Herkku", + "customerContactName": "Pirkko Koskitalo", + "orderTotal": 2237.5, + "orderDate": 1561842000000, + "requiredDate": 1564261200000, + "shippedDate": 1562187600000, + "requiredDateStart": 1564315200000, + "requiredDateEnd": 1564317000000, + "orderID": 10583, + "customerID": "WARTH", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 7.28, + "shipName": "Wartian Herkku", + "shipAddress": "Torikatu 38", + "shipCity": "Oulu", + "shipRegion": "", + "shipPostalCode": "90110", + "shipCountry": "Finland" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 3120, + "orderDate": 1562101200000, + "requiredDate": 1564520400000, + "shippedDate": 1562706000000, + "requiredDateStart": 1564578000000, + "requiredDateEnd": 1564583400000, + "orderID": 10588, + "customerID": "QUICK", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 194.67, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 4725, + "orderDate": 1562706000000, + "requiredDate": 1565125200000, + "shippedDate": 1563051600000, + "requiredDateStart": 1565181000000, + "requiredDateEnd": 1565182800000, + "orderID": 10595, + "customerID": "ERNSH", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 96.78, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Wilman Kala", + "customerContactName": "Matti Karttunen", + "orderTotal": 120, + "orderDate": 1564434000000, + "requiredDate": 1566853200000, + "shippedDate": 1565038800000, + "requiredDateStart": 1566900000000, + "requiredDateEnd": 1566901800000, + "orderID": 10615, + "customerID": "WILMK", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 0.75, + "shipName": "Wilman Kala", + "shipAddress": "Keskuskatu 45", + "shipCity": "Helsinki", + "shipRegion": "", + "shipPostalCode": "21240", + "shipCountry": "Finland" +}, { + "customerCompanyName": "Laughing Bacchus Wine Cellars", + "customerContactName": "Yoshi Tannamuri", + "orderTotal": 57.5, + "orderDate": 1564952400000, + "requiredDate": 1567371600000, + "shippedDate": 1565730000000, + "requiredDateStart": 1567422000000, + "requiredDateEnd": 1567423800000, + "orderID": 10620, + "customerID": "LAUGB", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 0.94, + "shipName": "Laughing Bacchus Wine Cellars", + "shipAddress": "2319 Elm St.", + "shipCity": "Vancouver", + "shipRegion": "BC", + "shipPostalCode": "V3F 2K1", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 4371.6, + "orderDate": 1567544400000, + "requiredDate": 1569963600000, + "shippedDate": 1568494800000, + "requiredDateStart": 1570012200000, + "requiredDateEnd": 1570015800000, + "orderID": 10657, + "customerID": "SAVEA", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 352.69, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Bon app'", + "customerContactName": "Laurence Lebihan", + "orderTotal": 1930.4, + "orderDate": 1568062800000, + "requiredDate": 1569272400000, + "shippedDate": 1570050000000, + "requiredDateStart": 1569328200000, + "requiredDateEnd": 1569333600000, + "orderID": 10663, + "customerID": "BONAP", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 113.15, + "shipName": "Bon app-", + "shipAddress": "12, rue des Bouchers", + "shipCity": "Marseille", + "shipRegion": "", + "shipPostalCode": "13008", + "shipCountry": "France" +}, { + "customerCompanyName": "Simons bistro", + "customerContactName": "Jytte Petersen", + "orderTotal": 570, + "orderDate": 1568494800000, + "requiredDate": 1570914000000, + "shippedDate": 1569099600000, + "requiredDateStart": 1570966200000, + "requiredDateEnd": 1570968000000, + "orderID": 10669, + "customerID": "SIMOB", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 24.39, + "shipName": "Simons bistro", + "shipAddress": "Vinbæltet 34", + "shipCity": "Kobenhavn", + "shipRegion": "", + "shipPostalCode": "1734", + "shipCountry": "Denmark" +}, { + "customerCompanyName": "Wilman Kala", + "customerContactName": "Matti Karttunen", + "orderTotal": 412.35, + "orderDate": 1568754000000, + "requiredDate": 1571173200000, + "shippedDate": 1568840400000, + "requiredDateStart": 1571230800000, + "requiredDateEnd": 1571234400000, + "orderID": 10673, + "customerID": "WILMK", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 22.76, + "shipName": "Wilman Kala", + "shipAddress": "Keskuskatu 45", + "shipCity": "Helsinki", + "shipRegion": "", + "shipPostalCode": "21240", + "shipCountry": "Finland" +}, { + "customerCompanyName": "Tortuga Restaurante", + "customerContactName": "Miguel Angel Paolino", + "orderTotal": 534.85, + "orderDate": 1569099600000, + "requiredDate": 1571518800000, + "shippedDate": 1569704400000, + "requiredDateStart": 1571569200000, + "requiredDateEnd": 1571574600000, + "orderID": 10676, + "customerID": "TORTU", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 2.01, + "shipName": "Tortuga Restaurante", + "shipAddress": "Avda. Azteca 123", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5033", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Du monde entier", + "customerContactName": "Janine Labrune", + "orderTotal": 63, + "orderDate": 1569445200000, + "requiredDate": 1571864400000, + "shippedDate": 1569877200000, + "requiredDateStart": 1571907600000, + "requiredDateEnd": 1571909400000, + "orderID": 10683, + "customerID": "DUMON", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 4.4, + "shipName": "Du monde entier", + "shipAddress": "67, rue des Cinquante Otages", + "shipCity": "Nantes", + "shipRegion": "", + "shipPostalCode": "44000", + "shipCountry": "France" +}, { + "customerCompanyName": "Piccolo und mehr", + "customerContactName": "Georg Pipps", + "orderTotal": 1404.45, + "orderDate": 1569790800000, + "requiredDate": 1572213600000, + "shippedDate": 1570482000000, + "requiredDateStart": 1572255000000, + "requiredDateEnd": 1572256800000, + "orderID": 10686, + "customerID": "PICCO", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 96.5, + "shipName": "Piccolo und mehr", + "shipAddress": "Geislweg 14", + "shipCity": "Salzburg", + "shipRegion": "", + "shipPostalCode": "5020", + "shipCountry": "Austria" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 10164.8, + "orderDate": 1570050000000, + "requiredDate": 1573682400000, + "shippedDate": 1571691600000, + "requiredDateStart": 1573729200000, + "requiredDateEnd": 1573731000000, + "orderID": 10691, + "customerID": "QUICK", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 810.05, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Reggiani Caseifici", + "customerContactName": "Maurizio Moroni", + "orderTotal": 1624.5, + "orderDate": 1572732000000, + "requiredDate": 1575151200000, + "shippedDate": 1575496800000, + "requiredDateStart": 1575207000000, + "requiredDateEnd": 1575212400000, + "orderID": 10727, + "customerID": "REGGC", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 89.9, + "shipName": "Reggiani Caseifici", + "shipAddress": "Strada Provinciale 124", + "shipCity": "Reggio Emilia", + "shipRegion": "", + "shipPostalCode": "42100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Gourmet Lanchonetes", + "customerContactName": "André Fonseca", + "orderTotal": 1498.35, + "orderDate": 1573077600000, + "requiredDate": 1575496800000, + "shippedDate": 1573509600000, + "requiredDateStart": 1575552600000, + "requiredDateEnd": 1575556200000, + "orderID": 10734, + "customerID": "GOURL", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 1.63, + "shipName": "Gourmet Lanchonetes", + "shipAddress": "Av. Brasil, 442", + "shipCity": "Campinas", + "shipRegion": "SP", + "shipPostalCode": "04876-786", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Vins et alcools Chevalier", + "customerContactName": "Paul Henriot", + "orderTotal": 139.8, + "orderDate": 1573423200000, + "requiredDate": 1575842400000, + "shippedDate": 1574028000000, + "requiredDateStart": 1575901800000, + "requiredDateEnd": 1575905400000, + "orderID": 10737, + "customerID": "VINET", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 7.79, + "shipName": "Vins et alcools Chevalier", + "shipAddress": "59 rue de l-Abbaye", + "shipCity": "Reims", + "shipRegion": "", + "shipPostalCode": "51100", + "shipCountry": "France" +}, { + "customerCompanyName": "Spécialités du monde", + "customerContactName": "Dominique Perrier", + "orderTotal": 52.35, + "orderDate": 1573509600000, + "requiredDate": 1575928800000, + "shippedDate": 1574028000000, + "requiredDateStart": 1575972000000, + "requiredDateEnd": 1575977400000, + "orderID": 10738, + "customerID": "SPECD", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 2.91, + "shipName": "Spécialités du monde", + "shipAddress": "25, rue Lauriston", + "shipCity": "Paris", + "shipRegion": "", + "shipPostalCode": "75016", + "shipCountry": "France" +}, { + "customerCompanyName": "North/South", + "customerContactName": "Simon Crowther", + "orderTotal": 252, + "orderDate": 1574546400000, + "requiredDate": 1576965600000, + "shippedDate": 1574892000000, + "requiredDateStart": 1577019600000, + "requiredDateEnd": 1577023200000, + "orderID": 10752, + "customerID": "NORTS", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 1.39, + "shipName": "North/South", + "shipAddress": "South House 300 Queensbridge", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "SW7 1RZ", + "shipCountry": "UK" +}, { + "customerCompanyName": "LILA-Supermercado", + "customerContactName": "Carlos González", + "orderTotal": 720, + "orderDate": 1576447200000, + "requiredDate": 1577656800000, + "shippedDate": 1577224800000, + "requiredDateStart": 1577696400000, + "requiredDateEnd": 1577700000000, + "orderID": 10780, + "customerID": "LILAS", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 42.13, + "shipName": "LILA-Supermercado", + "shipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "shipCity": "Barquisimeto", + "shipRegion": "Lara", + "shipPostalCode": "3508", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Wartian Herkku", + "customerContactName": "Pirkko Koskitalo", + "orderTotal": 975.88, + "orderDate": 1576533600000, + "requiredDate": 1578952800000, + "shippedDate": 1576706400000, + "requiredDateStart": 1579006800000, + "requiredDateEnd": 1579008600000, + "orderID": 10781, + "customerID": "WARTH", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 73.16, + "shipName": "Wartian Herkku", + "shipAddress": "Torikatu 38", + "shipCity": "Oulu", + "shipRegion": "", + "shipPostalCode": "90110", + "shipCountry": "Finland" +}, { + "customerCompanyName": "La maison d'Asie", + "customerContactName": "Annette Roulet", + "orderTotal": 2622.76, + "orderDate": 1576706400000, + "requiredDate": 1577916000000, + "shippedDate": 1577311200000, + "requiredDateStart": 1577962800000, + "requiredDateEnd": 1577968200000, + "orderID": 10787, + "customerID": "LAMAI", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 249.93, + "shipName": "La maison d-Asie", + "shipAddress": "1 rue Alsace-Lorraine", + "shipCity": "Toulouse", + "shipRegion": "", + "shipPostalCode": "31000", + "shipCountry": "France" +}, { + "customerCompanyName": "Island Trading", + "customerContactName": "Helen Bennett", + "orderTotal": 446.6, + "orderDate": 1577311200000, + "requiredDate": 1579730400000, + "shippedDate": 1578175200000, + "requiredDateStart": 1579782600000, + "requiredDateEnd": 1579786200000, + "orderID": 10798, + "customerID": "ISLAT", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 2.33, + "shipName": "Island Trading", + "shipAddress": "Garden House Crowther Way", + "shipCity": "Cowes", + "shipRegion": "Isle of Wight", + "shipPostalCode": "PO31 7PJ", + "shipCountry": "UK" +}, { + "customerCompanyName": "The Big Cheese", + "customerContactName": "Liz Nixon", + "orderTotal": 2775, + "orderDate": 1577656800000, + "requiredDate": 1580076000000, + "shippedDate": 1578520800000, + "requiredDateStart": 1580124600000, + "requiredDateEnd": 1580128200000, + "orderID": 10805, + "customerID": "THEBI", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 237.34, + "shipName": "The Big Cheese", + "shipAddress": "89 Jefferson Way Suite 2", + "shipCity": "Portland", + "shipRegion": "OR", + "shipPostalCode": "97201", + "shipCountry": "USA" +}, { + "customerCompanyName": "Old World Delicatessen", + "customerContactName": "Rene Phillips", + "orderTotal": 1411, + "orderDate": 1577829600000, + "requiredDate": 1580248800000, + "shippedDate": 1578520800000, + "requiredDateStart": 1580290200000, + "requiredDateEnd": 1580295600000, + "orderID": 10808, + "customerID": "OLDWO", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 45.53, + "shipName": "Old World Delicatessen", + "shipAddress": "2743 Bering St.", + "shipCity": "Anchorage", + "shipRegion": "AK", + "shipPostalCode": "99508", + "shipCountry": "USA" +}, { + "customerCompanyName": "Laughing Bacchus Wine Cellars", + "customerContactName": "Yoshi Tannamuri", + "orderTotal": 187, + "orderDate": 1577829600000, + "requiredDate": 1580248800000, + "shippedDate": 1578348000000, + "requiredDateStart": 1580306400000, + "requiredDateEnd": 1580308200000, + "orderID": 10810, + "customerID": "LAUGB", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 4.33, + "shipName": "Laughing Bacchus Wine Cellars", + "shipAddress": "2319 Elm St.", + "shipCity": "Vancouver", + "shipRegion": "BC", + "shipPostalCode": "V3F 2K1", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 40, + "orderDate": 1578175200000, + "requiredDate": 1580594400000, + "shippedDate": 1578952800000, + "requiredDateStart": 1580646600000, + "requiredDateEnd": 1580652000000, + "orderID": 10815, + "customerID": "SAVEA", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 14.62, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Cactus Comidas para llevar", + "customerContactName": "Patricio Simpson", + "orderTotal": 477, + "orderDate": 1578348000000, + "requiredDate": 1580767200000, + "shippedDate": 1579125600000, + "requiredDateStart": 1580817600000, + "requiredDateEnd": 1580819400000, + "orderID": 10819, + "customerID": "CACTU", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 19.76, + "shipName": "Cactus Comidas para llevar", + "shipAddress": "Cerrito 333", + "shipCity": "Buenos Aires", + "shipRegion": "", + "shipPostalCode": "1010", + "shipCountry": "Argentina" +}, { + "customerCompanyName": "La maison d'Asie", + "customerContactName": "Annette Roulet", + "orderTotal": 475.11, + "orderDate": 1578952800000, + "requiredDate": 1581372000000, + "shippedDate": 1579384800000, + "requiredDateStart": 1581413400000, + "requiredDateEnd": 1581415200000, + "orderID": 10832, + "customerID": "LAMAI", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 43.26, + "shipName": "La maison d-Asie", + "shipAddress": "1 rue Alsace-Lorraine", + "shipCity": "Toulouse", + "shipRegion": "", + "shipPostalCode": "31000", + "shipCountry": "France" +}, { + "customerCompanyName": "Suprêmes délices", + "customerContactName": "Pascale Cartrain", + "orderTotal": 1112, + "orderDate": 1579644000000, + "requiredDate": 1583359200000, + "shippedDate": 1579730400000, + "requiredDateStart": 1583411400000, + "requiredDateEnd": 1583415000000, + "orderID": 10846, + "customerID": "SUPRD", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 56.46, + "shipName": "Suprêmes délices", + "shipAddress": "Boulevard Tirou, 255", + "shipCity": "Charleroi", + "shipRegion": "", + "shipPostalCode": "B-6000", + "shipCountry": "Belgium" +}, { + "customerCompanyName": "La corne d'abondance", + "customerContactName": "Daniel Tonini", + "orderTotal": 649, + "orderDate": 1580248800000, + "requiredDate": 1582668000000, + "shippedDate": 1580680800000, + "requiredDateStart": 1582718400000, + "requiredDateEnd": 1582722000000, + "orderID": 10858, + "customerID": "LACOR", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 52.51, + "shipName": "La corne d-abondance", + "shipAddress": "67, avenue de l-Europe", + "shipCity": "Versailles", + "shipRegion": "", + "shipPostalCode": "78000", + "shipCountry": "France" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 16387.5, + "orderDate": 1580594400000, + "requiredDate": 1581804000000, + "shippedDate": 1581458400000, + "requiredDateStart": 1581847200000, + "requiredDateEnd": 1581850800000, + "orderID": 10865, + "customerID": "QUICK", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 348.14, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Hungry Owl All-Night Grocers", + "customerContactName": "Patricia McKenna", + "orderTotal": 6200.55, + "orderDate": 1582668000000, + "requiredDate": 1585173600000, + "shippedDate": 1584482400000, + "requiredDateStart": 1585220400000, + "requiredDateEnd": 1585222200000, + "orderID": 10912, + "customerID": "HUNGO", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 580.91, + "shipName": "Hungry Owl All-Night Grocers", + "shipAddress": "8 Johnstown Road", + "shipCity": "Cork", + "shipRegion": "Co. Cork", + "shipPostalCode": "", + "shipCountry": "Ireland" +}, { + "customerCompanyName": "Tortuga Restaurante", + "customerContactName": "Miguel Angel Paolino", + "orderTotal": 539.5, + "orderDate": 1582754400000, + "requiredDate": 1585260000000, + "shippedDate": 1583100000000, + "requiredDateStart": 1585317600000, + "requiredDateEnd": 1585321200000, + "orderID": 10915, + "customerID": "TORTU", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 3.51, + "shipName": "Tortuga Restaurante", + "shipAddress": "Avda. Azteca 123", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5033", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "LINO-Delicateses", + "customerContactName": "Felipe Izquierdo", + "orderTotal": 1122.8, + "orderDate": 1583100000000, + "requiredDate": 1585515600000, + "shippedDate": 1583272800000, + "requiredDateStart": 1585575000000, + "requiredDateEnd": 1585580400000, + "orderID": 10919, + "customerID": "LINOD", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 19.8, + "shipName": "LINO-Delicateses", + "shipAddress": "Ave. 5 de Mayo Porlamar", + "shipCity": "I. de Margarita", + "shipRegion": "Nueva Esparta", + "shipPostalCode": "4980", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Magazzini Alimentari Riuniti", + "customerContactName": "Giovanni Rovelli", + "orderTotal": 637.5, + "orderDate": 1583791200000, + "requiredDate": 1586206800000, + "shippedDate": 1584050400000, + "requiredDateStart": 1586255400000, + "requiredDateEnd": 1586259000000, + "orderID": 10939, + "customerID": "MAGAA", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 76.33, + "shipName": "Magazzini Alimentari Riuniti", + "shipAddress": "Via Ludovico il Moro 22", + "shipCity": "Bergamo", + "shipRegion": "", + "shipPostalCode": "24100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Bottom-Dollar Markets", + "customerContactName": "Elizabeth Lincoln", + "orderTotal": 4422, + "orderDate": 1584050400000, + "requiredDate": 1586466000000, + "shippedDate": 1584396000000, + "requiredDateStart": 1586514600000, + "requiredDateEnd": 1586516400000, + "orderID": 10949, + "customerID": "BOTTM", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 74.44, + "shipName": "Bottom-Dollar Markets", + "shipAddress": "23 Tsawassen Blvd.", + "shipCity": "Tsawassen", + "shipRegion": "BC", + "shipPostalCode": "T2F 8M4", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Toms Spezialitäten", + "customerContactName": "Karin Josephs", + "orderTotal": 910.4, + "orderDate": 1584914400000, + "requiredDate": 1587330000000, + "shippedDate": 1585774800000, + "requiredDateStart": 1587373200000, + "requiredDateEnd": 1587376800000, + "orderID": 10967, + "customerID": "TOMSP", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 62.22, + "shipName": "Toms Spezialitäten", + "shipAddress": "Luisenstr. 48", + "shipCity": "Münster", + "shipRegion": "", + "shipPostalCode": "44087", + "shipCountry": "Germany" +}, { + "customerCompanyName": "France restauration", + "customerContactName": "Carine Schmitt", + "orderTotal": 1733.06, + "orderDate": 1585000800000, + "requiredDate": 1587416400000, + "shippedDate": 1585774800000, + "requiredDateStart": 1587466800000, + "requiredDateEnd": 1587470400000, + "orderID": 10971, + "customerID": "FRANR", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 121.82, + "shipName": "France restauration", + "shipAddress": "54, rue Royale", + "shipCity": "Nantes", + "shipRegion": "", + "shipPostalCode": "44000", + "shipCountry": "France" +}, { + "customerCompanyName": "Bottom-Dollar Markets", + "customerContactName": "Elizabeth Lincoln", + "orderTotal": 1014, + "orderDate": 1585260000000, + "requiredDate": 1587675600000, + "shippedDate": 1586293200000, + "requiredDateStart": 1587717000000, + "requiredDateEnd": 1587720600000, + "orderID": 10982, + "customerID": "BOTTM", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 14.01, + "shipName": "Bottom-Dollar Markets", + "shipAddress": "23 Tsawassen Blvd.", + "shipCity": "Tsawassen", + "shipRegion": "BC", + "shipPostalCode": "T2F 8M4", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 720.9, + "orderDate": 1585260000000, + "requiredDate": 1587675600000, + "shippedDate": 1586120400000, + "requiredDateStart": 1587727800000, + "requiredDateEnd": 1587729600000, + "orderID": 10983, + "customerID": "SAVEA", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 657.54, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Hungry Owl All-Night Grocers", + "customerContactName": "Patricia McKenna", + "orderTotal": 2023.38, + "orderDate": 1585515600000, + "requiredDate": 1587934800000, + "shippedDate": 1585774800000, + "requiredDateStart": 1587978000000, + "requiredDateEnd": 1587983400000, + "orderID": 10985, + "customerID": "HUNGO", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 91.51, + "shipName": "Hungry Owl All-Night Grocers", + "shipAddress": "8 Johnstown Road", + "shipCity": "Cork", + "shipRegion": "Co. Cork", + "shipPostalCode": "", + "shipCountry": "Ireland" +}, { + "customerCompanyName": "Que Delícia", + "customerContactName": "Bernardo Batista", + "orderTotal": 1353.6, + "orderDate": 1585602000000, + "requiredDate": 1588021200000, + "shippedDate": 1585774800000, + "requiredDateStart": 1588062600000, + "requiredDateEnd": 1588068000000, + "orderID": 10989, + "customerID": "QUEDE", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 34.76, + "shipName": "Que Delícia", + "shipAddress": "Rua da Panificadora, 12", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-673", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 4288.85, + "orderDate": 1585688400000, + "requiredDate": 1589317200000, + "shippedDate": 1586206800000, + "requiredDateStart": 1589362200000, + "requiredDateEnd": 1589364000000, + "orderID": 10990, + "customerID": "ERNSH", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 117.61, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Vaffeljernet", + "customerContactName": "Palle Ibsen", + "orderTotal": 940.5, + "orderDate": 1585774800000, + "requiredDate": 1586984400000, + "shippedDate": 1586379600000, + "requiredDateStart": 1587040200000, + "requiredDateEnd": 1587042000000, + "orderID": 10994, + "customerID": "VAFFE", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 65.53, + "shipName": "Vaffeljernet", + "shipAddress": "Smagsloget 45", + "shipCity": "Århus", + "shipRegion": "", + "shipPostalCode": "8200", + "shipCountry": "Denmark" +}, { + "customerCompanyName": "Rattlesnake Canyon Grocery", + "customerContactName": "Paula Wilson", + "orderTotal": 903.75, + "orderDate": 1586120400000, + "requiredDate": 1588539600000, + "shippedDate": 1586811600000, + "requiredDateStart": 1588581000000, + "requiredDateEnd": 1588586400000, + "orderID": 11000, + "customerID": "RATTC", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 55.12, + "shipName": "Rattlesnake Canyon Grocery", + "shipAddress": "2817 Milton Dr.", + "shipCity": "Albuquerque", + "shipRegion": "NM", + "shipPostalCode": "87110", + "shipCountry": "USA" +}, { + "customerCompanyName": "Folk och fä HB", + "customerContactName": "Maria Larsson", + "orderTotal": 2769, + "orderDate": 1586120400000, + "requiredDate": 1588539600000, + "shippedDate": 1586811600000, + "requiredDateStart": 1588597200000, + "requiredDateEnd": 1588599000000, + "orderID": 11001, + "customerID": "FOLKO", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 197.3, + "shipName": "Folk och fä HB", + "shipAddress": "Åkergatan 24", + "shipCity": "Bräcke", + "shipRegion": "", + "shipPostalCode": "S-844 67", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Wilman Kala", + "customerContactName": "Matti Karttunen", + "orderTotal": 586, + "orderDate": 1586206800000, + "requiredDate": 1588626000000, + "shippedDate": 1586466000000, + "requiredDateStart": 1588671000000, + "requiredDateEnd": 1588672800000, + "orderID": 11005, + "customerID": "WILMK", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 0.75, + "shipName": "Wilman Kala", + "shipAddress": "Keskuskatu 45", + "shipCity": "Helsinki", + "shipRegion": "", + "shipPostalCode": "21240", + "shipCountry": "Finland" +}, { + "customerCompanyName": "Godos Cocina Típica", + "customerContactName": "José Pedro Freyre", + "orderTotal": 616.5, + "orderDate": 1586293200000, + "requiredDate": 1588712400000, + "shippedDate": 1586466000000, + "requiredDateStart": 1588753800000, + "requiredDateEnd": 1588755600000, + "orderID": 11009, + "customerID": "GODOS", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 59.11, + "shipName": "Godos Cocina Típica", + "shipAddress": "C/ Romero, 33", + "shipCity": "Sevilla", + "shipRegion": "", + "shipPostalCode": "41101", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Reggiani Caseifici", + "customerContactName": "Maurizio Moroni", + "orderTotal": 645, + "orderDate": 1586379600000, + "requiredDate": 1588798800000, + "shippedDate": 1587416400000, + "requiredDateStart": 1588851000000, + "requiredDateEnd": 1588852800000, + "orderID": 11010, + "customerID": "REGGC", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 28.71, + "shipName": "Reggiani Caseifici", + "shipAddress": "Strada Provinciale 124", + "shipCity": "Reggio Emilia", + "shipRegion": "", + "shipPostalCode": "42100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Romero y tomillo", + "customerContactName": "Alejandra Camino", + "orderTotal": 361, + "orderDate": 1586379600000, + "requiredDate": 1588798800000, + "shippedDate": 1586466000000, + "requiredDateStart": 1588849200000, + "requiredDateEnd": 1588851000000, + "orderID": 11013, + "customerID": "ROMEY", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 32.99, + "shipName": "Romero y tomillo", + "shipAddress": "Gran Vía, 1", + "shipCity": "Madrid", + "shipRegion": "", + "shipPostalCode": "28001", + "shipCountry": "Spain" +}, { + "customerCompanyName": "LINO-Delicateses", + "customerContactName": "Felipe Izquierdo", + "orderTotal": 243.18, + "orderDate": 1586466000000, + "requiredDate": 1588885200000, + "shippedDate": 1586898000000, + "requiredDateStart": 1588932000000, + "requiredDateEnd": 1588935600000, + "orderID": 11014, + "customerID": "LINOD", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 23.6, + "shipName": "LINO-Delicateses", + "shipAddress": "Ave. 5 de Mayo Porlamar", + "shipCity": "I. de Margarita", + "shipRegion": "Nueva Esparta", + "shipPostalCode": "4980", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Santé Gourmet", + "customerContactName": "Jonas Bergulfsen", + "orderTotal": 622.35, + "orderDate": 1586466000000, + "requiredDate": 1587675600000, + "shippedDate": 1587330000000, + "requiredDateStart": 1587731400000, + "requiredDateEnd": 1587736800000, + "orderID": 11015, + "customerID": "SANTG", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 4.62, + "shipName": "Santé Gourmet", + "shipAddress": "Erling Skakkes gate 78", + "shipCity": "Stavern", + "shipRegion": "", + "shipPostalCode": "4110", + "shipCountry": "Norway" +}, { + "customerCompanyName": "Ottilies Käseladen", + "customerContactName": "Henriette Pfalzheim", + "orderTotal": 632.4, + "orderDate": 1586811600000, + "requiredDate": 1589230800000, + "shippedDate": 1586984400000, + "requiredDateStart": 1589281200000, + "requiredDateEnd": 1589284800000, + "orderID": 11020, + "customerID": "OTTIK", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 43.3, + "shipName": "Ottilies Käseladen", + "shipAddress": "Mehrheimerstr. 369", + "shipCity": "Köln", + "shipRegion": "", + "shipPostalCode": "50739", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Königlich Essen", + "customerContactName": "Philip Cramer", + "orderTotal": 2160, + "orderDate": 1586984400000, + "requiredDate": 1589403600000, + "shippedDate": 1587502800000, + "requiredDateStart": 1589445000000, + "requiredDateEnd": 1589448600000, + "orderID": 11028, + "customerID": "KOENE", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 29.59, + "shipName": "Königlich Essen", + "shipAddress": "Maubelstr. 90", + "shipCity": "Brandenburg", + "shipRegion": "", + "shipPostalCode": "14776", + "shipCountry": "Germany" +}, { + "customerCompanyName": "White Clover Markets", + "customerContactName": "Karl Jablonski", + "orderTotal": 8902.5, + "orderDate": 1587070800000, + "requiredDate": 1589490000000, + "shippedDate": 1587589200000, + "requiredDateStart": 1589549400000, + "requiredDateEnd": 1589553000000, + "orderID": 11032, + "customerID": "WHITC", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 3, + "freight": 606.19, + "shipName": "White Clover Markets", + "shipAddress": "1029 - 12th Ave. S.", + "shipCity": "Seattle", + "shipRegion": "WA", + "shipPostalCode": "98124", + "shipCountry": "USA" +}, { + "customerCompanyName": "Suprêmes délices", + "customerContactName": "Pascale Cartrain", + "orderTotal": 1754.5, + "orderDate": 1587330000000, + "requiredDate": 1589749200000, + "shippedDate": 1587675600000, + "requiredDateStart": 1589801400000, + "requiredDateEnd": 1589803200000, + "orderID": 11035, + "customerID": "SUPRD", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 0.17, + "shipName": "Suprêmes délices", + "shipAddress": "Boulevard Tirou, 255", + "shipCity": "Charleroi", + "shipRegion": "", + "shipPostalCode": "B-6000", + "shipCountry": "Belgium" +}, { + "customerCompanyName": "Comércio Mineiro", + "customerContactName": "Pedro Afonso", + "orderTotal": 405.75, + "orderDate": 1587502800000, + "requiredDate": 1588712400000, + "shippedDate": 1588280400000, + "requiredDateStart": 1588770000000, + "requiredDateEnd": 1588771800000, + "orderID": 11042, + "customerID": "COMMI", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 29.99, + "shipName": "Comércio Mineiro", + "shipAddress": "Av. dos Lusíadas, 23", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05432-043", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Piccolo und mehr", + "customerContactName": "Georg Pipps", + "orderTotal": 3055, + "orderDate": 1587934800000, + "requiredDate": 1590354000000, + "shippedDate": 1588107600000, + "requiredDateStart": 1590395400000, + "requiredDateEnd": 1590399000000, + "orderID": 11053, + "customerID": "PICCO", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 53.05, + "shipName": "Piccolo und mehr", + "shipAddress": "Geislweg 14", + "shipCity": "Salzburg", + "shipRegion": "", + "shipPostalCode": "5020", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Ricardo Adocicados", + "customerContactName": "Janete Limeira", + "orderTotal": 1838, + "orderDate": 1588107600000, + "requiredDate": 1591736400000, + "shippedDate": 1588280400000, + "requiredDateStart": 1591795800000, + "requiredDateEnd": 1591799400000, + "orderID": 11059, + "customerID": "RICAR", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 85.8, + "shipName": "Ricardo Adocicados", + "shipAddress": "Av. Copacabana, 267", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-890", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Franchi S.p.A.", + "customerContactName": "Paolo Accorti", + "orderTotal": 266, + "orderDate": 1588194000000, + "requiredDate": 1590613200000, + "shippedDate": 1588539600000, + "requiredDateStart": 1590654600000, + "requiredDateEnd": 1590656400000, + "orderID": 11060, + "customerID": "FRANS", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 10.98, + "shipName": "Franchi S.p.A.", + "shipAddress": "Via Monte Bianco 34", + "shipCity": "Torino", + "shipRegion": "", + "shipPostalCode": "10100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Lehmanns Marktstand", + "customerContactName": "Renate Messner", + "orderTotal": 1629.975, + "orderDate": 1588626000000, + "requiredDate": 1591045200000, + "shippedDate": 1535230800000, + "requiredDateStart": 1591095600000, + "requiredDateEnd": 1591099200000, + "orderID": 11070, + "customerID": "LEHMS", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 1, + "freight": 136, + "shipName": "Lehmanns Marktstand", + "shipAddress": "Magazinweg 7", + "shipCity": "Frankfurt a.M.", + "shipRegion": "", + "shipPostalCode": "60528", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Pericles Comidas clásicas", + "customerContactName": "Guillermo Fernández", + "orderTotal": 300, + "orderDate": 1588626000000, + "requiredDate": 1591045200000, + "shippedDate": 1535230800000, + "requiredDateStart": 1591104600000, + "requiredDateEnd": 1591110000000, + "orderID": 11073, + "customerID": "PERIC", + "employeeID": "3d2f991c-58ef-436d-912e-49496fd2065c", + "teamID": 1, + "shipVia": 2, + "freight": 24.95, + "shipName": "Pericles Comidas clásicas", + "shipAddress": "Calle Dr. Jorge Cash 321", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5033", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 1614.88, + "orderDate": 1531774800000, + "requiredDate": 1534194000000, + "shippedDate": 1532293200000, + "requiredDateStart": 1534246200000, + "requiredDateEnd": 1534248000000, + "orderID": 10258, + "customerID": "ERNSH", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 140.51, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Wartian Herkku", + "customerContactName": "Pirkko Koskitalo", + "orderTotal": 1376, + "orderDate": 1533070800000, + "requiredDate": 1535490000000, + "shippedDate": 1533157200000, + "requiredDateStart": 1535533200000, + "requiredDateEnd": 1535538600000, + "orderID": 10270, + "customerID": "WARTH", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 136.54, + "shipName": "Wartian Herkku", + "shipAddress": "Torikatu 38", + "shipCity": "Oulu", + "shipRegion": "", + "shipPostalCode": "90110", + "shipCountry": "Finland" +}, { + "customerCompanyName": "Magazzini Alimentari Riuniti", + "customerContactName": "Giovanni Rovelli", + "orderTotal": 291.84, + "orderDate": 1533589200000, + "requiredDate": 1536008400000, + "shippedDate": 1533762000000, + "requiredDateStart": 1536058800000, + "requiredDateEnd": 1536062400000, + "orderID": 10275, + "customerID": "MAGAA", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 26.93, + "shipName": "Magazzini Alimentari Riuniti", + "shipAddress": "Via Ludovico il Moro 22", + "shipCity": "Bergamo", + "shipRegion": "", + "shipPostalCode": "24100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 1743.36, + "orderDate": 1534712400000, + "requiredDate": 1537131600000, + "shippedDate": 1535230800000, + "requiredDateStart": 1537187400000, + "requiredDateEnd": 1537192800000, + "orderID": 10285, + "customerID": "QUICK", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 76.83, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Tradição Hipermercados", + "customerContactName": "Anabela Domingues", + "orderTotal": 1296, + "orderDate": 1535403600000, + "requiredDate": 1537822800000, + "shippedDate": 1535835600000, + "requiredDateStart": 1537878600000, + "requiredDateEnd": 1537884000000, + "orderID": 10292, + "customerID": "TRADH", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 1.35, + "shipName": "Tradiçao Hipermercados", + "shipAddress": "Av. Inês de Castro, 414", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05634-030", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Tortuga Restaurante", + "customerContactName": "Miguel Angel Paolino", + "orderTotal": 848.7, + "orderDate": 1535490000000, + "requiredDate": 1537909200000, + "shippedDate": 1536613200000, + "requiredDateStart": 1537961400000, + "requiredDateEnd": 1537966800000, + "orderID": 10293, + "customerID": "TORTU", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 21.18, + "shipName": "Tortuga Restaurante", + "shipAddress": "Avda. Azteca 123", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5033", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Tortuga Restaurante", + "customerContactName": "Miguel Angel Paolino", + "orderTotal": 954.4, + "orderDate": 1536699600000, + "requiredDate": 1539118800000, + "shippedDate": 1537131600000, + "requiredDateStart": 1539167400000, + "requiredDateEnd": 1539172800000, + "orderID": 10304, + "customerID": "TORTU", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 63.79, + "shipName": "Tortuga Restaurante", + "shipAddress": "Avda. Azteca 123", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5033", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Romero y tomillo", + "customerContactName": "Alejandra Camino", + "orderTotal": 498.5, + "orderDate": 1537045200000, + "requiredDate": 1539464400000, + "shippedDate": 1537650000000, + "requiredDateStart": 1539518400000, + "requiredDateEnd": 1539522000000, + "orderID": 10306, + "customerID": "ROMEY", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 7.56, + "shipName": "Romero y tomillo", + "shipAddress": "Gran Vía, 1", + "shipCity": "Madrid", + "shipRegion": "", + "shipPostalCode": "28001", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Du monde entier", + "customerContactName": "Janine Labrune", + "orderTotal": 268.8, + "orderDate": 1537390800000, + "requiredDate": 1538600400000, + "shippedDate": 1537909200000, + "requiredDateStart": 1538652600000, + "requiredDateEnd": 1538658000000, + "orderID": 10311, + "customerID": "DUMON", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 24.69, + "shipName": "Du monde entier", + "shipAddress": "67, rue des Cinquante Otages", + "shipCity": "Nantes", + "shipRegion": "", + "shipPostalCode": "44000", + "shipCountry": "France" +}, { + "customerCompanyName": "Rattlesnake Canyon Grocery", + "customerContactName": "Paula Wilson", + "orderTotal": 2094.3, + "orderDate": 1537822800000, + "requiredDate": 1540242000000, + "shippedDate": 1538600400000, + "requiredDateStart": 1540285200000, + "requiredDateEnd": 1540290600000, + "orderID": 10314, + "customerID": "RATTC", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 74.16, + "shipName": "Rattlesnake Canyon Grocery", + "shipAddress": "2817 Milton Dr.", + "shipCity": "Albuquerque", + "shipRegion": "NM", + "shipPostalCode": "87110", + "shipCountry": "USA" +}, { + "customerCompanyName": "Rattlesnake Canyon Grocery", + "customerContactName": "Paula Wilson", + "orderTotal": 2835, + "orderDate": 1537995600000, + "requiredDate": 1540414800000, + "shippedDate": 1538946000000, + "requiredDateStart": 1540468800000, + "requiredDateEnd": 1540470600000, + "orderID": 10316, + "customerID": "RATTC", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 150.15, + "shipName": "Rattlesnake Canyon Grocery", + "shipAddress": "2817 Milton Dr.", + "shipCity": "Albuquerque", + "shipRegion": "NM", + "shipPostalCode": "87110", + "shipCountry": "USA" +}, { + "customerCompanyName": "Königlich Essen", + "customerContactName": "Philip Cramer", + "orderTotal": 1497, + "orderDate": 1539032400000, + "requiredDate": 1540242000000, + "shippedDate": 1539464400000, + "requiredDateStart": 1540290600000, + "requiredDateEnd": 1540296000000, + "orderID": 10325, + "customerID": "KOENE", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 64.86, + "shipName": "Königlich Essen", + "shipAddress": "Maubelstr. 90", + "shipCity": "Brandenburg", + "shipRegion": "", + "shipPostalCode": "14776", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Bon app'", + "customerContactName": "Laurence Lebihan", + "orderTotal": 2436.18, + "orderDate": 1540764000000, + "requiredDate": 1543183200000, + "shippedDate": 1541628000000, + "requiredDateStart": 1543235400000, + "requiredDateEnd": 1543240800000, + "orderID": 10340, + "customerID": "BONAP", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 166.31, + "shipName": "Bon app-", + "shipAddress": "12, rue des Bouchers", + "shipCity": "Marseille", + "shipRegion": "", + "shipPostalCode": "13008", + "shipCountry": "France" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 5398.725, + "orderDate": 1541887200000, + "requiredDate": 1544306400000, + "shippedDate": 1542664800000, + "requiredDateStart": 1544347800000, + "requiredDateEnd": 1544349600000, + "orderID": 10351, + "customerID": "ERNSH", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 162.33, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "LILA-Supermercado", + "customerContactName": "Carlos González", + "orderTotal": 1167.68, + "orderDate": 1542578400000, + "requiredDate": 1544997600000, + "shippedDate": 1543701600000, + "requiredDateStart": 1545046200000, + "requiredDateEnd": 1545051600000, + "orderID": 10357, + "customerID": "LILAS", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 34.88, + "shipName": "LILA-Supermercado", + "shipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "shipCity": "Barquisimeto", + "shipRegion": "Lara", + "shipPostalCode": "3508", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 2046.24, + "orderDate": 1542837600000, + "requiredDate": 1545256800000, + "shippedDate": 1543788000000, + "requiredDateStart": 1545316200000, + "requiredDateEnd": 1545319800000, + "orderID": 10361, + "customerID": "QUICK", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 183.17, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Eastern Connection", + "customerContactName": "Ann Devon", + "orderTotal": 950, + "orderDate": 1543183200000, + "requiredDate": 1546812000000, + "shippedDate": 1543874400000, + "requiredDateStart": 1546851600000, + "requiredDateEnd": 1546853400000, + "orderID": 10364, + "customerID": "EASTC", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 71.97, + "shipName": "Eastern Connection", + "shipAddress": "35 King George", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "WX3 6FW", + "shipCountry": "UK" +}, { + "customerCompanyName": "La maison d'Asie", + "customerContactName": "Annette Roulet", + "orderTotal": 72.96, + "orderDate": 1543788000000, + "requiredDate": 1546207200000, + "shippedDate": 1545602400000, + "requiredDateStart": 1546261200000, + "requiredDateEnd": 1546264800000, + "orderID": 10371, + "customerID": "LAMAI", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 0.45, + "shipName": "La maison d-Asie", + "shipAddress": "1 rue Alsace-Lorraine", + "shipCity": "Toulouse", + "shipRegion": "", + "shipPostalCode": "31000", + "shipCountry": "France" +}, { + "customerCompanyName": "Wolski Zajazd", + "customerContactName": "Zbyszek Piestrzeniewicz", + "orderTotal": 459, + "orderDate": 1543960800000, + "requiredDate": 1546380000000, + "shippedDate": 1544306400000, + "requiredDateStart": 1546419600000, + "requiredDateEnd": 1546423200000, + "orderID": 10374, + "customerID": "WOLZA", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 3.94, + "shipName": "Wolski Zajazd", + "shipAddress": "ul. Filtrowa 68", + "shipCity": "Warszawa", + "shipRegion": "", + "shipPostalCode": "01-012", + "shipCountry": "Poland" +}, { + "customerCompanyName": "Mère Paillarde", + "customerContactName": "Jean Fresnière", + "orderTotal": 399, + "orderDate": 1544306400000, + "requiredDate": 1546725600000, + "shippedDate": 1544652000000, + "requiredDateStart": 1546768800000, + "requiredDateEnd": 1546770600000, + "orderID": 10376, + "customerID": "MEREP", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 20.39, + "shipName": "Mère Paillarde", + "shipAddress": "43 rue St. Laurent", + "shipCity": "Montréal", + "shipRegion": "Québec", + "shipPostalCode": "H1J 1C3", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Seven Seas Imports", + "customerContactName": "Hari Kumar", + "orderTotal": 863.6, + "orderDate": 1544306400000, + "requiredDate": 1546725600000, + "shippedDate": 1544652000000, + "requiredDateStart": 1546783200000, + "requiredDateEnd": 1546788600000, + "orderID": 10377, + "customerID": "SEVES", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 22.21, + "shipName": "Seven Seas Imports", + "shipAddress": "90 Wadhurst Rd.", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "OX15 4NB", + "shipCountry": "UK" +}, { + "customerCompanyName": "Split Rail Beer & Ale", + "customerContactName": "Art Braunschweiger", + "orderTotal": 691.2, + "orderDate": 1544997600000, + "requiredDate": 1547416800000, + "shippedDate": 1545516000000, + "requiredDateStart": 1547458200000, + "requiredDateEnd": 1547463600000, + "orderID": 10385, + "customerID": "SPLIR", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 30.96, + "shipName": "Split Rail Beer & Ale", + "shipAddress": "P.O. Box 555", + "shipCity": "Lander", + "shipRegion": "WY", + "shipPostalCode": "82520", + "shipCountry": "USA" +}, { + "customerCompanyName": "Santé Gourmet", + "customerContactName": "Jonas Bergulfsen", + "orderTotal": 1058.4, + "orderDate": 1545084000000, + "requiredDate": 1547503200000, + "shippedDate": 1545256800000, + "requiredDateStart": 1547559000000, + "requiredDateEnd": 1547562600000, + "orderID": 10387, + "customerID": "SANTG", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 93.63, + "shipName": "Santé Gourmet", + "shipAddress": "Erling Skakkes gate 78", + "shipCity": "Stavern", + "shipRegion": "", + "shipPostalCode": "4110", + "shipCountry": "Norway" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 2556.95, + "orderDate": 1545688800000, + "requiredDate": 1548108000000, + "shippedDate": 1546466400000, + "requiredDateStart": 1548162000000, + "requiredDateEnd": 1548165600000, + "orderID": 10393, + "customerID": "SAVEA", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 126.56, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Hungry Coyote Import Store", + "customerContactName": "Yoshi Latimer", + "orderTotal": 442, + "orderDate": 1545688800000, + "requiredDate": 1548108000000, + "shippedDate": 1546466400000, + "requiredDateStart": 1548158400000, + "requiredDateEnd": 1548160200000, + "orderID": 10394, + "customerID": "HUNGC", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 30.34, + "shipName": "Hungry Coyote Import Store", + "shipAddress": "City Center Plaza 516 Main St.", + "shipCity": "Elgin", + "shipRegion": "OR", + "shipPostalCode": "97827", + "shipCountry": "USA" +}, { + "customerCompanyName": "Frankenversand", + "customerContactName": "Peter Franken", + "orderTotal": 1903.8, + "orderDate": 1545861600000, + "requiredDate": 1547071200000, + "shippedDate": 1546725600000, + "requiredDateStart": 1547118000000, + "requiredDateEnd": 1547121600000, + "orderID": 10396, + "customerID": "FRANK", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 135.35, + "shipName": "Frankenversand", + "shipAddress": "Berliner Platz 43", + "shipCity": "München", + "shipRegion": "", + "shipPostalCode": "80805", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Eastern Connection", + "customerContactName": "Ann Devon", + "orderTotal": 3063, + "orderDate": 1546293600000, + "requiredDate": 1548712800000, + "shippedDate": 1547589600000, + "requiredDateStart": 1548761400000, + "requiredDateEnd": 1548765000000, + "orderID": 10400, + "customerID": "EASTC", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 83.93, + "shipName": "Eastern Connection", + "shipAddress": "35 King George", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "WX3 6FW", + "shipCountry": "UK" +}, { + "customerCompanyName": "Rattlesnake Canyon Grocery", + "customerContactName": "Paula Wilson", + "orderTotal": 3868.6, + "orderDate": 1546293600000, + "requiredDate": 1548712800000, + "shippedDate": 1547071200000, + "requiredDateStart": 1548772200000, + "requiredDateEnd": 1548775800000, + "orderID": 10401, + "customerID": "RATTC", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 12.51, + "shipName": "Rattlesnake Canyon Grocery", + "shipAddress": "2817 Milton Dr.", + "shipCity": "Albuquerque", + "shipRegion": "NM", + "shipPostalCode": "87110", + "shipCountry": "USA" +}, { + "customerCompanyName": "LINO-Delicateses", + "customerContactName": "Felipe Izquierdo", + "orderTotal": 400, + "orderDate": 1546725600000, + "requiredDate": 1549144800000, + "shippedDate": 1548108000000, + "requiredDateStart": 1549200600000, + "requiredDateEnd": 1549202400000, + "orderID": 10405, + "customerID": "LINOD", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 34.82, + "shipName": "LINO-Delicateses", + "shipAddress": "Ave. 5 de Mayo Porlamar", + "shipCity": "I. de Margarita", + "shipRegion": "Nueva Esparta", + "shipPostalCode": "4980", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Around the Horn", + "customerContactName": "Thomas Hardy", + "orderTotal": 407.7, + "orderDate": 1550700000000, + "requiredDate": 1553119200000, + "shippedDate": 1551132000000, + "requiredDateStart": 1553160600000, + "requiredDateEnd": 1553162400000, + "orderID": 10453, + "customerID": "AROUT", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 25.36, + "shipName": "Around the Horn", + "shipAddress": "Brook Farm Stratford St. Mary", + "shipCity": "Colchester", + "shipRegion": "Essex", + "shipPostalCode": "CO7 6JX", + "shipCountry": "UK" +}, { + "customerCompanyName": "LILA-Supermercado", + "customerContactName": "Carlos González", + "orderTotal": 1538.7, + "orderDate": 1551304800000, + "requiredDate": 1553724000000, + "shippedDate": 1551736800000, + "requiredDateStart": 1553769000000, + "requiredDateEnd": 1553774400000, + "orderID": 10461, + "customerID": "LILAS", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 148.61, + "shipName": "LILA-Supermercado", + "shipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "shipCity": "Barquisimeto", + "shipRegion": "Lara", + "shipPostalCode": "3508", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Vaffeljernet", + "customerContactName": "Palle Ibsen", + "orderTotal": 2518, + "orderDate": 1551736800000, + "requiredDate": 1554152400000, + "shippedDate": 1552514400000, + "requiredDateStart": 1554201000000, + "requiredDateEnd": 1554206400000, + "orderID": 10465, + "customerID": "VAFFE", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 145.04, + "shipName": "Vaffeljernet", + "shipAddress": "Smagsloget 45", + "shipCity": "Århus", + "shipRegion": "", + "shipPostalCode": "8200", + "shipCountry": "Denmark" +}, { + "customerCompanyName": "White Clover Markets", + "customerContactName": "Karl Jablonski", + "orderTotal": 956.675, + "orderDate": 1552168800000, + "requiredDate": 1554584400000, + "shippedDate": 1552514400000, + "requiredDateStart": 1554627600000, + "requiredDateEnd": 1554629400000, + "orderID": 10469, + "customerID": "WHITC", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 60.18, + "shipName": "White Clover Markets", + "shipAddress": "1029 - 12th Ave. S.", + "shipCity": "Seattle", + "shipRegion": "WA", + "shipPostalCode": "98124", + "shipCountry": "USA" +}, { + "customerCompanyName": "Island Trading", + "customerContactName": "Helen Bennett", + "orderTotal": 230.4, + "orderDate": 1552428000000, + "requiredDate": 1553637600000, + "shippedDate": 1553119200000, + "requiredDateStart": 1553697000000, + "requiredDateEnd": 1553700600000, + "orderID": 10473, + "customerID": "ISLAT", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 16.37, + "shipName": "Island Trading", + "shipAddress": "Garden House Crowther Way", + "shipCity": "Cowes", + "shipRegion": "Isle of Wight", + "shipPostalCode": "PO31 7PJ", + "shipCountry": "UK" +}, { + "customerCompanyName": "Lazy K Kountry Store", + "customerContactName": "John Steel", + "orderTotal": 147, + "orderDate": 1553119200000, + "requiredDate": 1555534800000, + "shippedDate": 1554843600000, + "requiredDateStart": 1555592400000, + "requiredDateEnd": 1555596000000, + "orderID": 10482, + "customerID": "LAZYK", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 7.48, + "shipName": "Lazy K Kountry Store", + "shipAddress": "12 Orchestra Terrace", + "shipCity": "Walla Walla", + "shipRegion": "WA", + "shipPostalCode": "99362", + "shipCountry": "USA" +}, { + "customerCompanyName": "HILARION-Abastos", + "customerContactName": "Carlos Hernández", + "orderTotal": 1272, + "orderDate": 1553551200000, + "requiredDate": 1555966800000, + "shippedDate": 1554152400000, + "requiredDateStart": 1556010000000, + "requiredDateEnd": 1556013600000, + "orderID": 10486, + "customerID": "HILAA", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 30.53, + "shipName": "HILARION-Abastos", + "shipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "shipCity": "San Cristóbal", + "shipRegion": "Táchira", + "shipPostalCode": "5022", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Ottilies Käseladen", + "customerContactName": "Henriette Pfalzheim", + "orderTotal": 240, + "orderDate": 1555362000000, + "requiredDate": 1557781200000, + "shippedDate": 1557694800000, + "requiredDateStart": 1557824400000, + "requiredDateEnd": 1557829800000, + "orderID": 10508, + "customerID": "OTTIK", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 4.99, + "shipName": "Ottilies Käseladen", + "shipAddress": "Mehrheimerstr. 369", + "shipCity": "Köln", + "shipRegion": "", + "shipPostalCode": "50739", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Berglunds snabbköp", + "customerContactName": "Christina Berglund", + "orderTotal": 3192.65, + "orderDate": 1556658000000, + "requiredDate": 1559077200000, + "shippedDate": 1557176400000, + "requiredDateStart": 1559131200000, + "requiredDateEnd": 1559133000000, + "orderID": 10524, + "customerID": "BERGS", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 244.79, + "shipName": "Berglunds snabbköp", + "shipAddress": "Berguvsvägen  8", + "shipCity": "Luleå", + "shipRegion": "", + "shipPostalCode": "S-958 22", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Bon app'", + "customerContactName": "Laurence Lebihan", + "orderTotal": 818.4, + "orderDate": 1556744400000, + "requiredDate": 1559163600000, + "shippedDate": 1558558800000, + "requiredDateStart": 1559208600000, + "requiredDateEnd": 1559210400000, + "orderID": 10525, + "customerID": "BONAP", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 11.06, + "shipName": "Bon app-", + "shipAddress": "12, rue des Bouchers", + "shipCity": "Marseille", + "shipRegion": "", + "shipPostalCode": "13008", + "shipCountry": "France" +}, { + "customerCompanyName": "Richter Supermarkt", + "customerContactName": "Michael Holz", + "orderTotal": 1823.8, + "orderDate": 1557781200000, + "requiredDate": 1558990800000, + "shippedDate": 1558213200000, + "requiredDateStart": 1559050200000, + "requiredDateEnd": 1559052000000, + "orderID": 10537, + "customerID": "RICSU", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 78.85, + "shipName": "Richter Supermarkt", + "shipAddress": "Starenweg 5", + "shipCity": "Genève", + "shipRegion": "", + "shipPostalCode": "1204", + "shipCountry": "Switzerland" +}, { + "customerCompanyName": "Königlich Essen", + "customerContactName": "Philip Cramer", + "orderTotal": 469.11, + "orderDate": 1558299600000, + "requiredDate": 1560718800000, + "shippedDate": 1558818000000, + "requiredDateStart": 1560765600000, + "requiredDateEnd": 1560771000000, + "orderID": 10542, + "customerID": "KOENE", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 10.95, + "shipName": "Königlich Essen", + "shipAddress": "Maubelstr. 90", + "shipCity": "Brandenburg", + "shipRegion": "", + "shipPostalCode": "14776", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Victuailles en stock", + "customerContactName": "Mary Saveley", + "orderTotal": 2812, + "orderDate": 1558558800000, + "requiredDate": 1560978000000, + "shippedDate": 1558904400000, + "requiredDateStart": 1561028400000, + "requiredDateEnd": 1561033800000, + "orderID": 10546, + "customerID": "VICTE", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 194.72, + "shipName": "Victuailles en stock", + "shipAddress": "2, rue du Commerce", + "shipCity": "Lyon", + "shipRegion": "", + "shipPostalCode": "69004", + "shipCountry": "France" +}, { + "customerCompanyName": "Around the Horn", + "customerContactName": "Thomas Hardy", + "orderTotal": 2142.9, + "orderDate": 1559595600000, + "requiredDate": 1562014800000, + "shippedDate": 1560114000000, + "requiredDateStart": 1562063400000, + "requiredDateEnd": 1562067000000, + "orderID": 10558, + "customerID": "AROUT", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 72.97, + "shipName": "Around the Horn", + "shipAddress": "Brook Farm Stratford St. Mary", + "shipCity": "Colchester", + "shipRegion": "Essex", + "shipPostalCode": "CO7 6JX", + "shipCountry": "UK" +}, { + "customerCompanyName": "Reggiani Caseifici", + "customerContactName": "Maurizio Moroni", + "orderTotal": 488.7, + "orderDate": 1560027600000, + "requiredDate": 1562446800000, + "shippedDate": 1560286800000, + "requiredDateStart": 1562493600000, + "requiredDateEnd": 1562497200000, + "orderID": 10562, + "customerID": "REGGC", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 22.95, + "shipName": "Reggiani Caseifici", + "shipAddress": "Strada Provinciale 124", + "shipCity": "Reggio Emilia", + "shipRegion": "", + "shipPostalCode": "42100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Hungry Owl All-Night Grocers", + "customerContactName": "Patricia McKenna", + "orderTotal": 2519, + "orderDate": 1560286800000, + "requiredDate": 1562706000000, + "shippedDate": 1560718800000, + "requiredDateStart": 1562763600000, + "requiredDateEnd": 1562765400000, + "orderID": 10567, + "customerID": "HUNGO", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 33.97, + "shipName": "Hungry Owl All-Night Grocers", + "shipAddress": "8 Johnstown Road", + "shipCity": "Cork", + "shipRegion": "Co. Cork", + "shipPostalCode": "", + "shipCountry": "Ireland" +}, { + "customerCompanyName": "Let's Stop N Shop", + "customerContactName": "Jaime Yorres", + "orderTotal": 317.75, + "orderDate": 1561410000000, + "requiredDate": 1563829200000, + "shippedDate": 1562187600000, + "requiredDateStart": 1563885000000, + "requiredDateEnd": 1563886800000, + "orderID": 10579, + "customerID": "LETSS", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 13.73, + "shipName": "Let-s Stop N Shop", + "shipAddress": "87 Polk St. Suite 5", + "shipCity": "San Francisco", + "shipRegion": "CA", + "shipPostalCode": "94117", + "shipCountry": "USA" +}, { + "customerCompanyName": "Que Delícia", + "customerContactName": "Bernardo Batista", + "orderTotal": 807.38, + "orderDate": 1562014800000, + "requiredDate": 1564434000000, + "shippedDate": 1562619600000, + "requiredDateStart": 1564473600000, + "requiredDateEnd": 1564475400000, + "orderID": 10587, + "customerID": "QUEDE", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 62.52, + "shipName": "Que Delícia", + "shipAddress": "Rua da Panificadora, 12", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-673", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Vaffeljernet", + "customerContactName": "Palle Ibsen", + "orderTotal": 812.5, + "orderDate": 1562446800000, + "requiredDate": 1563656400000, + "shippedDate": 1563224400000, + "requiredDateStart": 1563710400000, + "requiredDateEnd": 1563715800000, + "orderID": 10591, + "customerID": "VAFFE", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 55.92, + "shipName": "Vaffeljernet", + "shipAddress": "Smagsloget 45", + "shipCity": "Århus", + "shipRegion": "", + "shipPostalCode": "8200", + "shipCountry": "Denmark" +}, { + "customerCompanyName": "Rattlesnake Canyon Grocery", + "customerContactName": "Paula Wilson", + "orderTotal": 2388.5, + "orderDate": 1563051600000, + "requiredDate": 1565470800000, + "shippedDate": 1563397200000, + "requiredDateStart": 1565514000000, + "requiredDateEnd": 1565517600000, + "orderID": 10598, + "customerID": "RATTC", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 44.42, + "shipName": "Rattlesnake Canyon Grocery", + "shipAddress": "2817 Milton Dr.", + "shipCity": "Albuquerque", + "shipRegion": "NM", + "shipPostalCode": "87110", + "shipCountry": "USA" +}, { + "customerCompanyName": "Furia Bacalhau e Frutos do Mar", + "customerContactName": "Lino Rodriguez", + "orderTotal": 230.85, + "orderDate": 1563397200000, + "requiredDate": 1565816400000, + "shippedDate": 1564347600000, + "requiredDateStart": 1565857800000, + "requiredDateEnd": 1565863200000, + "orderID": 10604, + "customerID": "FURIB", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 7.46, + "shipName": "Furia Bacalhau e Frutos do Mar", + "shipAddress": "Jardim das rosas n. 32", + "shipCity": "Lisboa", + "shipRegion": "", + "shipPostalCode": "1675", + "shipCountry": "Portugal" +}, { + "customerCompanyName": "Mère Paillarde", + "customerContactName": "Jean Fresnière", + "orderTotal": 4109.7, + "orderDate": 1563656400000, + "requiredDate": 1566075600000, + "shippedDate": 1564347600000, + "requiredDateStart": 1566118800000, + "requiredDateEnd": 1566120600000, + "orderID": 10605, + "customerID": "MEREP", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 379.13, + "shipName": "Mère Paillarde", + "shipAddress": "43 rue St. Laurent", + "shipCity": "Montréal", + "shipRegion": "Québec", + "shipPostalCode": "H1J 1C3", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 6375, + "orderDate": 1564261200000, + "requiredDate": 1566680400000, + "shippedDate": 1564606800000, + "requiredDateStart": 1566732600000, + "requiredDateEnd": 1566738000000, + "orderID": 10612, + "customerID": "SAVEA", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 544.08, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Great Lakes Food Market", + "customerContactName": "Howard Snyder", + "orderTotal": 4807, + "orderDate": 1564520400000, + "requiredDate": 1566939600000, + "shippedDate": 1564952400000, + "requiredDateStart": 1566991800000, + "requiredDateEnd": 1566997200000, + "orderID": 10616, + "customerID": "GREAL", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 116.53, + "shipName": "Great Lakes Food Market", + "shipAddress": "2732 Baker Blvd.", + "shipCity": "Eugene", + "shipRegion": "OR", + "shipPostalCode": "97403", + "shipCountry": "USA" +}, { + "customerCompanyName": "Mère Paillarde", + "customerContactName": "Jean Fresnière", + "orderTotal": 2697.5, + "orderDate": 1564606800000, + "requiredDate": 1568235600000, + "shippedDate": 1565211600000, + "requiredDateStart": 1568293200000, + "requiredDateEnd": 1568295000000, + "orderID": 10618, + "customerID": "MEREP", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 154.68, + "shipName": "Mère Paillarde", + "shipAddress": "43 rue St. Laurent", + "shipCity": "Montréal", + "shipRegion": "Québec", + "shipPostalCode": "H1J 1C3", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Berglunds snabbköp", + "customerContactName": "Christina Berglund", + "orderTotal": 1503.6, + "orderDate": 1565470800000, + "requiredDate": 1567890000000, + "shippedDate": 1566248400000, + "requiredDateStart": 1567949400000, + "requiredDateEnd": 1567954800000, + "orderID": 10626, + "customerID": "BERGS", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 138.69, + "shipName": "Berglunds snabbköp", + "shipAddress": "Berguvsvägen  8", + "shipCity": "Luleå", + "shipRegion": "", + "shipPostalCode": "S-958 22", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Königlich Essen", + "customerContactName": "Philip Cramer", + "orderTotal": 903.6, + "orderDate": 1565643600000, + "requiredDate": 1568062800000, + "shippedDate": 1566162000000, + "requiredDateStart": 1568118600000, + "requiredDateEnd": 1568124000000, + "orderID": 10630, + "customerID": "KOENE", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 32.35, + "shipName": "Königlich Essen", + "shipAddress": "Maubelstr. 90", + "shipCity": "Brandenburg", + "shipRegion": "", + "shipPostalCode": "14776", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Frankenversand", + "customerContactName": "Peter Franken", + "orderTotal": 1083.15, + "orderDate": 1567371600000, + "requiredDate": 1569790800000, + "shippedDate": 1568840400000, + "requiredDateStart": 1569834000000, + "requiredDateEnd": 1569835800000, + "orderID": 10653, + "customerID": "FRANK", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 93.25, + "shipName": "Frankenversand", + "shipAddress": "Berliner Platz 43", + "shipCity": "München", + "shipRegion": "", + "shipPostalCode": "80805", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Reggiani Caseifici", + "customerContactName": "Maurizio Moroni", + "orderTotal": 154.4, + "orderDate": 1567458000000, + "requiredDate": 1569877200000, + "shippedDate": 1568149200000, + "requiredDateStart": 1569916800000, + "requiredDateEnd": 1569918600000, + "orderID": 10655, + "customerID": "REGGC", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 4.41, + "shipName": "Reggiani Caseifici", + "shipAddress": "Strada Provinciale 124", + "shipCity": "Reggio Emilia", + "shipRegion": "", + "shipPostalCode": "42100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Furia Bacalhau e Frutos do Mar", + "customerContactName": "Lino Rodriguez", + "orderTotal": 1288.3875, + "orderDate": 1568062800000, + "requiredDate": 1570482000000, + "shippedDate": 1568840400000, + "requiredDateStart": 1570532400000, + "requiredDateEnd": 1570537800000, + "orderID": 10664, + "customerID": "FURIB", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 1.27, + "shipName": "Furia Bacalhau e Frutos do Mar", + "shipAddress": "Jardim das rosas n. 32", + "shipCity": "Lisboa", + "shipRegion": "", + "shipPostalCode": "1675", + "shipCountry": "Portugal" +}, { + "customerCompanyName": "Lonesome Pine Restaurant", + "customerContactName": "Fran Wilson", + "orderTotal": 1295, + "orderDate": 1568149200000, + "requiredDate": 1570568400000, + "shippedDate": 1568667600000, + "requiredDateStart": 1570609800000, + "requiredDateEnd": 1570615200000, + "orderID": 10665, + "customerID": "LONEP", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 26.31, + "shipName": "Lonesome Pine Restaurant", + "shipAddress": "89 Chiaroscuro Rd.", + "shipCity": "Portland", + "shipRegion": "OR", + "shipPostalCode": "97219", + "shipCountry": "USA" +}, { + "customerCompanyName": "Die Wandernde Kuh", + "customerContactName": "Rita Müller", + "orderTotal": 625.275, + "orderDate": 1568494800000, + "requiredDate": 1570914000000, + "shippedDate": 1569186000000, + "requiredDateStart": 1570968000000, + "requiredDateEnd": 1570969800000, + "orderID": 10668, + "customerID": "WANDK", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 47.22, + "shipName": "Die Wandernde Kuh", + "shipAddress": "Adenauerallee 900", + "shipCity": "Stuttgart", + "shipRegion": "", + "shipPostalCode": "70563", + "shipCountry": "Germany" +}, { + "customerCompanyName": "France restauration", + "customerContactName": "Carine Schmitt", + "orderTotal": 920.1, + "orderDate": 1568667600000, + "requiredDate": 1571086800000, + "shippedDate": 1569272400000, + "requiredDateStart": 1571144400000, + "requiredDateEnd": 1571146200000, + "orderID": 10671, + "customerID": "FRANR", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 30.34, + "shipName": "France restauration", + "shipAddress": "54, rue Royale", + "shipCity": "Nantes", + "shipRegion": "", + "shipPostalCode": "44000", + "shipCountry": "France" +}, { + "customerCompanyName": "Antonio Moreno Taquería", + "customerContactName": "Antonio Moreno", + "orderTotal": 813.365, + "orderDate": 1569099600000, + "requiredDate": 1571518800000, + "shippedDate": 1569445200000, + "requiredDateStart": 1571576400000, + "requiredDateEnd": 1571581800000, + "orderID": 10677, + "customerID": "ANTON", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 4.03, + "shipName": "Antonio Moreno Taquería", + "shipAddress": "Mataderos  2312", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5023", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Old World Delicatessen", + "customerContactName": "Rene Phillips", + "orderTotal": 1261.875, + "orderDate": 1569272400000, + "requiredDate": 1571691600000, + "shippedDate": 1569445200000, + "requiredDateStart": 1571742000000, + "requiredDateEnd": 1571743800000, + "orderID": 10680, + "customerID": "OLDWO", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 26.61, + "shipName": "Old World Delicatessen", + "shipAddress": "2743 Bering St.", + "shipCity": "Anchorage", + "shipRegion": "AK", + "shipPostalCode": "99508", + "shipCountry": "USA" +}, { + "customerCompanyName": "Berglunds snabbköp", + "customerContactName": "Christina Berglund", + "orderTotal": 472.5, + "orderDate": 1569877200000, + "requiredDate": 1572300000000, + "shippedDate": 1570395600000, + "requiredDateStart": 1572339600000, + "requiredDateEnd": 1572343200000, + "orderID": 10689, + "customerID": "BERGS", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 13.42, + "shipName": "Berglunds snabbköp", + "shipAddress": "Berguvsvägen  8", + "shipCity": "Luleå", + "shipRegion": "", + "shipPostalCode": "S-958 22", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Hanari Carnes", + "customerContactName": "Mario Pontes", + "orderTotal": 862.5, + "orderDate": 1569963600000, + "requiredDate": 1572386400000, + "shippedDate": 1570050000000, + "requiredDateStart": 1572436800000, + "requiredDateEnd": 1572440400000, + "orderID": 10690, + "customerID": "HANAR", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 15.8, + "shipName": "Hanari Carnes", + "shipAddress": "Rua do Paço, 67", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "05454-876", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Gourmet Lanchonetes", + "customerContactName": "André Fonseca", + "orderTotal": 3424, + "orderDate": 1571259600000, + "requiredDate": 1573682400000, + "shippedDate": 1574200800000, + "requiredDateStart": 1573723800000, + "requiredDateEnd": 1573727400000, + "orderID": 10709, + "customerID": "GOURL", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 210.8, + "shipName": "Gourmet Lanchonetes", + "shipAddress": "Av. Brasil, 442", + "shipCity": "Campinas", + "shipRegion": "SP", + "shipPostalCode": "04876-786", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Franchi S.p.A.", + "customerContactName": "Paolo Accorti", + "orderTotal": 93.5, + "orderDate": 1571518800000, + "requiredDate": 1573941600000, + "shippedDate": 1571778000000, + "requiredDateStart": 1573986600000, + "requiredDateEnd": 1573990200000, + "orderID": 10710, + "customerID": "FRANS", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 4.98, + "shipName": "Franchi S.p.A.", + "shipAddress": "Via Monte Bianco 34", + "shipCity": "Torino", + "shipRegion": "", + "shipPostalCode": "10100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 2827.9, + "orderDate": 1571691600000, + "requiredDate": 1574114400000, + "shippedDate": 1571864400000, + "requiredDateStart": 1574164800000, + "requiredDateEnd": 1574170200000, + "orderID": 10713, + "customerID": "SAVEA", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 167.05, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Frankenversand", + "customerContactName": "Peter Franken", + "orderTotal": 1270.75, + "orderDate": 1571864400000, + "requiredDate": 1574287200000, + "shippedDate": 1572300000000, + "requiredDateStart": 1574328600000, + "requiredDateEnd": 1574330400000, + "orderID": 10717, + "customerID": "FRANK", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 59.25, + "shipName": "Frankenversand", + "shipAddress": "Berliner Platz 43", + "shipCity": "München", + "shipRegion": "", + "shipPostalCode": "80805", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Königlich Essen", + "customerContactName": "Philip Cramer", + "orderTotal": 3463, + "orderDate": 1572123600000, + "requiredDate": 1574546400000, + "shippedDate": 1572300000000, + "requiredDateStart": 1574587800000, + "requiredDateEnd": 1574591400000, + "orderID": 10718, + "customerID": "KOENE", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 170.88, + "shipName": "Königlich Essen", + "shipAddress": "Maubelstr. 90", + "shipCity": "Brandenburg", + "shipRegion": "", + "shipPostalCode": "14776", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Berglunds snabbköp", + "customerContactName": "Christina Berglund", + "orderTotal": 1459, + "orderDate": 1573077600000, + "requiredDate": 1575496800000, + "shippedDate": 1573336800000, + "requiredDateStart": 1575552600000, + "requiredDateEnd": 1575558000000, + "orderID": 10733, + "customerID": "BERGS", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 110.11, + "shipName": "Berglunds snabbköp", + "shipAddress": "Berguvsvägen  8", + "shipCity": "Luleå", + "shipRegion": "", + "shipPostalCode": "S-958 22", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Around the Horn", + "customerContactName": "Thomas Hardy", + "orderTotal": 319.2, + "orderDate": 1573941600000, + "requiredDate": 1576360800000, + "shippedDate": 1574287200000, + "requiredDateStart": 1576400400000, + "requiredDateEnd": 1576404000000, + "orderID": 10743, + "customerID": "AROUT", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 23.72, + "shipName": "Around the Horn", + "shipAddress": "Brook Farm Stratford St. Mary", + "shipCity": "Colchester", + "shipRegion": "Essex", + "shipPostalCode": "CO7 6JX", + "shipCountry": "UK" +}, { + "customerCompanyName": "Chop-suey Chinese", + "customerContactName": "Yang Wang", + "orderTotal": 2311.7, + "orderDate": 1574114400000, + "requiredDate": 1576533600000, + "shippedDate": 1574287200000, + "requiredDateStart": 1576580400000, + "requiredDateEnd": 1576584000000, + "orderID": 10746, + "customerID": "CHOPS", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 31.43, + "shipName": "Chop-suey Chinese", + "shipAddress": "Hauptstr. 31", + "shipCity": "Bern", + "shipRegion": "", + "shipPostalCode": "3012", + "shipCountry": "Switzerland" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 2030.4, + "orderDate": 1576015200000, + "requiredDate": 1578434400000, + "shippedDate": 1576447200000, + "requiredDateStart": 1578479400000, + "requiredDateEnd": 1578483000000, + "orderID": 10773, + "customerID": "ERNSH", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 96.43, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 6635.275, + "orderDate": 1576360800000, + "requiredDate": 1578780000000, + "shippedDate": 1576620000000, + "requiredDateStart": 1578830400000, + "requiredDateEnd": 1578834000000, + "orderID": 10776, + "customerID": "ERNSH", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 351.53, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "GROSELLA-Restaurante", + "customerContactName": "Manuel Pereira", + "orderTotal": 387.5, + "orderDate": 1576620000000, + "requiredDate": 1579039200000, + "shippedDate": 1577138400000, + "requiredDateStart": 1579095000000, + "requiredDateEnd": 1579100400000, + "orderID": 10785, + "customerID": "GROSR", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 1.51, + "shipName": "GROSELLA-Restaurante", + "shipAddress": "5ª Ave. Los Palos Grandes", + "shipCity": "Caracas", + "shipRegion": "DF", + "shipPostalCode": "1081", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 731.5, + "orderDate": 1576965600000, + "requiredDate": 1579384800000, + "shippedDate": 1579384800000, + "requiredDateStart": 1579444200000, + "requiredDateEnd": 1579446000000, + "orderID": 10788, + "customerID": "QUICK", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 42.7, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Folies gourmandes", + "customerContactName": "Martine Rancé", + "orderTotal": 3687, + "orderDate": 1576965600000, + "requiredDate": 1579384800000, + "shippedDate": 1577743200000, + "requiredDateStart": 1579426200000, + "requiredDateEnd": 1579429800000, + "orderID": 10789, + "customerID": "FOLIG", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 100.6, + "shipName": "Folies gourmandes", + "shipAddress": "184, chaussée de Tournai", + "shipCity": "Lille", + "shipRegion": "", + "shipPostalCode": "59000", + "shipCountry": "France" +}, { + "customerCompanyName": "Wolski Zajazd", + "customerContactName": "Zbyszek Piestrzeniewicz", + "orderTotal": 399.85, + "orderDate": 1577052000000, + "requiredDate": 1579471200000, + "shippedDate": 1577743200000, + "requiredDateStart": 1579528800000, + "requiredDateEnd": 1579532400000, + "orderID": 10792, + "customerID": "WOLZA", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 23.79, + "shipName": "Wolski Zajazd", + "shipAddress": "ul. Filtrowa 68", + "shipCity": "Warszawa", + "shipRegion": "", + "shipPostalCode": "01-012", + "shipCountry": "Poland" +}, { + "customerCompanyName": "Seven Seas Imports", + "customerContactName": "Hari Kumar", + "orderTotal": 1468.935, + "orderDate": 1577311200000, + "requiredDate": 1579730400000, + "shippedDate": 1578175200000, + "requiredDateStart": 1579780800000, + "requiredDateEnd": 1579786200000, + "orderID": 10800, + "customerID": "SEVES", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 137.44, + "shipName": "Seven Seas Imports", + "shipAddress": "90 Wadhurst Rd.", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "OX15 4NB", + "shipCountry": "UK" +}, { + "customerCompanyName": "Ricardo Adocicados", + "customerContactName": "Janete Limeira", + "orderTotal": 602.4, + "orderDate": 1578175200000, + "requiredDate": 1580594400000, + "shippedDate": 1578520800000, + "requiredDateStart": 1580652000000, + "requiredDateEnd": 1580657400000, + "orderID": 10813, + "customerID": "RICAR", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 47.38, + "shipName": "Ricardo Adocicados", + "shipAddress": "Av. Copacabana, 267", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-890", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Split Rail Beer & Ale", + "customerContactName": "Art Braunschweiger", + "orderTotal": 678, + "orderDate": 1578434400000, + "requiredDate": 1580853600000, + "shippedDate": 1579039200000, + "requiredDateStart": 1580900400000, + "requiredDateEnd": 1580905800000, + "orderID": 10821, + "customerID": "SPLIR", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 36.68, + "shipName": "Split Rail Beer & Ale", + "shipAddress": "P.O. Box 555", + "shipCity": "Lander", + "shipRegion": "WY", + "shipPostalCode": "82520", + "shipCountry": "USA" +}, { + "customerCompanyName": "Drachenblut Delikatessen", + "customerContactName": "Sven Ottlieb", + "orderTotal": 1030.76, + "orderDate": 1578520800000, + "requiredDate": 1580940000000, + "shippedDate": 1578952800000, + "requiredDateStart": 1580992200000, + "requiredDateEnd": 1580994000000, + "orderID": 10825, + "customerID": "DRACD", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 79.25, + "shipName": "Drachenblut Delikatessen", + "shipAddress": "Walserweg 21", + "shipCity": "Aachen", + "shipRegion": "", + "shipPostalCode": "52066", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Bon app'", + "customerContactName": "Laurence Lebihan", + "orderTotal": 843, + "orderDate": 1578780000000, + "requiredDate": 1579989600000, + "shippedDate": 1580940000000, + "requiredDateStart": 1580036400000, + "requiredDateEnd": 1580041800000, + "orderID": 10827, + "customerID": "BONAP", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 63.54, + "shipName": "Bon app-", + "shipAddress": "12, rue des Bouchers", + "shipCity": "Marseille", + "shipRegion": "", + "shipPostalCode": "13008", + "shipCountry": "France" +}, { + "customerCompanyName": "Tradição Hipermercados", + "customerContactName": "Anabela Domingues", + "orderTotal": 1432.714, + "orderDate": 1579039200000, + "requiredDate": 1581458400000, + "shippedDate": 1579384800000, + "requiredDateStart": 1581514200000, + "requiredDateEnd": 1581519600000, + "orderID": 10834, + "customerID": "TRADH", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 29.78, + "shipName": "Tradiçao Hipermercados", + "shipAddress": "Av. Inês de Castro, 414", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05634-030", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Alfreds Futterkiste", + "customerContactName": "Maria Anders", + "orderTotal": 845.8, + "orderDate": 1579039200000, + "requiredDate": 1581458400000, + "shippedDate": 1579557600000, + "requiredDateStart": 1581517800000, + "requiredDateEnd": 1581521400000, + "orderID": 10835, + "customerID": "ALFKI", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 69.53, + "shipName": "Alfred-s Futterkiste", + "shipAddress": "Obere Str. 57", + "shipCity": "Berlin", + "shipRegion": "", + "shipPostalCode": "12209", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Tortuga Restaurante", + "customerContactName": "Miguel Angel Paolino", + "orderTotal": 975, + "orderDate": 1579471200000, + "requiredDate": 1581890400000, + "shippedDate": 1580248800000, + "requiredDateStart": 1581942600000, + "requiredDateEnd": 1581946200000, + "orderID": 10842, + "customerID": "TORTU", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 54.42, + "shipName": "Tortuga Restaurante", + "shipAddress": "Avda. Azteca 123", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5033", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Victuailles en stock", + "customerContactName": "Mary Saveley", + "orderTotal": 629, + "orderDate": 1579730400000, + "requiredDate": 1583445600000, + "shippedDate": 1580335200000, + "requiredDateStart": 1583488800000, + "requiredDateEnd": 1583494200000, + "orderID": 10850, + "customerID": "VICTE", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 49.19, + "shipName": "Victuailles en stock", + "shipAddress": "2, rue du Commerce", + "shipCity": "Lyon", + "shipRegion": "", + "shipPostalCode": "69004", + "shipCountry": "France" +}, { + "customerCompanyName": "Frankenversand", + "customerContactName": "Peter Franken", + "orderTotal": 1078.6875, + "orderDate": 1580248800000, + "requiredDate": 1582668000000, + "shippedDate": 1580594400000, + "requiredDateStart": 1582722000000, + "requiredDateEnd": 1582725600000, + "orderID": 10859, + "customerID": "FRANK", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 76.1, + "shipName": "Frankenversand", + "shipAddress": "Berliner Platz 43", + "shipCity": "München", + "shipRegion": "", + "shipPostalCode": "80805", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Ricardo Adocicados", + "customerContactName": "Janete Limeira", + "orderTotal": 1955.125, + "orderDate": 1581199200000, + "requiredDate": 1583704800000, + "shippedDate": 1582063200000, + "requiredDateStart": 1583744400000, + "requiredDateEnd": 1583748000000, + "orderID": 10877, + "customerID": "RICAR", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 38.06, + "shipName": "Ricardo Adocicados", + "shipAddress": "Av. Copacabana, 267", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "02389-890", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Hanari Carnes", + "customerContactName": "Mario Pontes", + "orderTotal": 3127.5, + "orderDate": 1581544800000, + "requiredDate": 1584050400000, + "shippedDate": 1583100000000, + "requiredDateStart": 1584106200000, + "requiredDateEnd": 1584111600000, + "orderID": 10886, + "customerID": "HANAR", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 4.99, + "shipName": "Hanari Carnes", + "shipAddress": "Rua do Paço, 67", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "05454-876", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Godos Cocina Típica", + "customerContactName": "José Pedro Freyre", + "orderTotal": 605, + "orderDate": 1581804000000, + "requiredDate": 1584309600000, + "shippedDate": 1582408800000, + "requiredDateStart": 1584363600000, + "requiredDateEnd": 1584365400000, + "orderID": 10888, + "customerID": "GODOS", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 51.87, + "shipName": "Godos Cocina Típica", + "shipAddress": "C/ Romero, 33", + "shipCity": "Sevilla", + "shipRegion": "", + "shipPostalCode": "41101", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 2753.1, + "orderDate": 1581976800000, + "requiredDate": 1584482400000, + "shippedDate": 1582149600000, + "requiredDateStart": 1584529200000, + "requiredDateEnd": 1584534600000, + "orderID": 10894, + "customerID": "SAVEA", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 116.13, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Wellington Importadora", + "customerContactName": "Paula Parente", + "orderTotal": 33.75, + "orderDate": 1582149600000, + "requiredDate": 1584655200000, + "shippedDate": 1583272800000, + "requiredDateStart": 1584714600000, + "requiredDateEnd": 1584720000000, + "orderID": 10900, + "customerID": "WELLI", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 1.66, + "shipName": "Wellington Importadora", + "shipAddress": "Rua do Mercado, 12", + "shipCity": "Resende", + "shipRegion": "SP", + "shipPostalCode": "08737-363", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Folk och fä HB", + "customerContactName": "Maria Larsson", + "orderTotal": 863.43, + "orderDate": 1582408800000, + "requiredDate": 1584914400000, + "shippedDate": 1583186400000, + "requiredDateStart": 1584957600000, + "requiredDateEnd": 1584961200000, + "orderID": 10902, + "customerID": "FOLKO", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 44.15, + "shipName": "Folk och fä HB", + "shipAddress": "Åkergatan 24", + "shipCity": "Bräcke", + "shipRegion": "", + "shipPostalCode": "S-844 67", + "shipCountry": "Sweden" +}, { + "customerCompanyName": "Santé Gourmet", + "customerContactName": "Jonas Bergulfsen", + "orderTotal": 670, + "orderDate": 1582668000000, + "requiredDate": 1585173600000, + "shippedDate": 1583791200000, + "requiredDateStart": 1585229400000, + "requiredDateEnd": 1585231200000, + "orderID": 10909, + "customerID": "SANTG", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 53.05, + "shipName": "Santé Gourmet", + "shipAddress": "Erling Skakkes gate 78", + "shipCity": "Stavern", + "shipRegion": "", + "shipPostalCode": "4110", + "shipCountry": "Norway" +}, { + "customerCompanyName": "Wilman Kala", + "customerContactName": "Matti Karttunen", + "orderTotal": 452.9, + "orderDate": 1582668000000, + "requiredDate": 1585173600000, + "shippedDate": 1583272800000, + "requiredDateStart": 1585220400000, + "requiredDateEnd": 1585222200000, + "orderID": 10910, + "customerID": "WILMK", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 38.11, + "shipName": "Wilman Kala", + "shipAddress": "Keskuskatu 45", + "shipCity": "Helsinki", + "shipRegion": "", + "shipPostalCode": "21240", + "shipCountry": "Finland" +}, { + "customerCompanyName": "Rancho grande", + "customerContactName": "Sergio Gutiérrez", + "orderTotal": 686.7, + "orderDate": 1582754400000, + "requiredDate": 1585260000000, + "shippedDate": 1583704800000, + "requiredDateStart": 1585319400000, + "requiredDateEnd": 1585323000000, + "orderID": 10916, + "customerID": "RANCH", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 63.77, + "shipName": "Rancho grande", + "shipAddress": "Av. del Libertador 900", + "shipCity": "Buenos Aires", + "shipRegion": "", + "shipPostalCode": "1010", + "shipCountry": "Argentina" +}, { + "customerCompanyName": "Vaffeljernet", + "customerContactName": "Palle Ibsen", + "orderTotal": 1936, + "orderDate": 1583186400000, + "requiredDate": 1586811600000, + "shippedDate": 1583704800000, + "requiredDateStart": 1586853000000, + "requiredDateEnd": 1586858400000, + "orderID": 10921, + "customerID": "VAFFE", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 176.48, + "shipName": "Vaffeljernet", + "shipAddress": "Smagsloget 45", + "shipCity": "Århus", + "shipRegion": "", + "shipPostalCode": "8200", + "shipCountry": "Denmark" +}, { + "customerCompanyName": "Galería del gastrónomo", + "customerContactName": "Eduardo Saavedra", + "orderTotal": 137.5, + "orderDate": 1583359200000, + "requiredDate": 1585774800000, + "shippedDate": 1584482400000, + "requiredDateStart": 1585823400000, + "requiredDateEnd": 1585825200000, + "orderID": 10928, + "customerID": "GALED", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 1.36, + "shipName": "Galería del gastronómo", + "shipAddress": "Rambla de Cataluña, 23", + "shipCity": "Barcelona", + "shipRegion": "", + "shipPostalCode": "8022", + "shipCountry": "Spain" +}, { + "customerCompanyName": "Vaffeljernet", + "customerContactName": "Palle Ibsen", + "orderTotal": 1407.5, + "orderDate": 1583964000000, + "requiredDate": 1586379600000, + "shippedDate": 1584568800000, + "requiredDateStart": 1586422800000, + "requiredDateEnd": 1586426400000, + "orderID": 10946, + "customerID": "VAFFE", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 27.2, + "shipName": "Vaffeljernet", + "shipAddress": "Smagsloget 45", + "shipCity": "Århus", + "shipRegion": "", + "shipPostalCode": "8200", + "shipCountry": "Denmark" +}, { + "customerCompanyName": "Magazzini Alimentari Riuniti", + "customerContactName": "Giovanni Rovelli", + "orderTotal": 110, + "orderDate": 1584309600000, + "requiredDate": 1586725200000, + "shippedDate": 1584914400000, + "requiredDateStart": 1586782800000, + "requiredDateEnd": 1586788200000, + "orderID": 10950, + "customerID": "MAGAA", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 2.5, + "shipName": "Magazzini Alimentari Riuniti", + "shipAddress": "Via Ludovico il Moro 22", + "shipCity": "Bergamo", + "shipRegion": "", + "shipPostalCode": "24100", + "shipCountry": "Italy" +}, { + "customerCompanyName": "Alfreds Futterkiste", + "customerContactName": "Maria Anders", + "orderTotal": 471.2, + "orderDate": 1584309600000, + "requiredDate": 1587934800000, + "shippedDate": 1585000800000, + "requiredDateStart": 1587985200000, + "requiredDateEnd": 1587987000000, + "orderID": 10952, + "customerID": "ALFKI", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 40.42, + "shipName": "Alfred-s Futterkiste", + "shipAddress": "Obere Str. 57", + "shipCity": "Berlin", + "shipRegion": "", + "shipPostalCode": "12209", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Ernst Handel", + "customerContactName": "Roland Mendel", + "orderTotal": 1408, + "orderDate": 1584914400000, + "requiredDate": 1587330000000, + "shippedDate": 1585688400000, + "requiredDateStart": 1587375000000, + "requiredDateEnd": 1587380400000, + "orderID": 10968, + "customerID": "ERNSH", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 74.6, + "shipName": "Ernst Handel", + "shipAddress": "Kirchgasse 6", + "shipCity": "Graz", + "shipRegion": "", + "shipPostalCode": "8010", + "shipCountry": "Austria" +}, { + "customerCompanyName": "Comércio Mineiro", + "customerContactName": "Pedro Afonso", + "orderTotal": 108, + "orderDate": 1584914400000, + "requiredDate": 1587330000000, + "shippedDate": 1585515600000, + "requiredDateStart": 1587375000000, + "requiredDateEnd": 1587376800000, + "orderID": 10969, + "customerID": "COMMI", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 0.21, + "shipName": "Comércio Mineiro", + "shipAddress": "Av. dos Lusíadas, 23", + "shipCity": "Sao Paulo", + "shipRegion": "SP", + "shipPostalCode": "05432-043", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Bottom-Dollar Markets", + "customerContactName": "Elizabeth Lincoln", + "orderTotal": 717.5, + "orderDate": 1585087200000, + "requiredDate": 1587502800000, + "shippedDate": 1585260000000, + "requiredDateStart": 1587560400000, + "requiredDateEnd": 1587564000000, + "orderID": 10975, + "customerID": "BOTTM", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 32.27, + "shipName": "Bottom-Dollar Markets", + "shipAddress": "23 Tsawassen Blvd.", + "shipCity": "Tsawassen", + "shipRegion": "BC", + "shipPostalCode": "T2F 8M4", + "shipCountry": "Canada" +}, { + "customerCompanyName": "HILARION-Abastos", + "customerContactName": "Carlos Hernández", + "orderTotal": 912, + "orderDate": 1585087200000, + "requiredDate": 1588712400000, + "shippedDate": 1585861200000, + "requiredDateStart": 1588757400000, + "requiredDateEnd": 1588759200000, + "orderID": 10976, + "customerID": "HILAA", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 37.97, + "shipName": "HILARION-Abastos", + "shipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "shipCity": "San Cristóbal", + "shipRegion": "Táchira", + "shipPostalCode": "5022", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Hanari Carnes", + "customerContactName": "Mario Pontes", + "orderTotal": 15810, + "orderDate": 1585260000000, + "requiredDate": 1587675600000, + "shippedDate": 1585774800000, + "requiredDateStart": 1587735000000, + "requiredDateEnd": 1587736800000, + "orderID": 10981, + "customerID": "HANAR", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 193.37, + "shipName": "Hanari Carnes", + "shipAddress": "Rua do Paço, 67", + "shipCity": "Rio de Janeiro", + "shipRegion": "RJ", + "shipPostalCode": "05454-876", + "shipCountry": "Brazil" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 1809.75, + "orderDate": 1585515600000, + "requiredDate": 1587934800000, + "shippedDate": 1585861200000, + "requiredDateStart": 1587974400000, + "requiredDateEnd": 1587976200000, + "orderID": 10984, + "customerID": "SAVEA", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 211.22, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "QUICK-Stop", + "customerContactName": "Horst Kloss", + "orderTotal": 2296, + "orderDate": 1585688400000, + "requiredDate": 1588107600000, + "shippedDate": 1586206800000, + "requiredDateStart": 1588147200000, + "requiredDateEnd": 1588150800000, + "orderID": 10991, + "customerID": "QUICK", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 38.51, + "shipName": "QUICK-Stop", + "shipAddress": "Taucherstraße 10", + "shipCity": "Cunewalde", + "shipRegion": "", + "shipPostalCode": "1307", + "shipCountry": "Germany" +}, { + "customerCompanyName": "The Big Cheese", + "customerContactName": "Liz Nixon", + "orderTotal": 69.6, + "orderDate": 1585688400000, + "requiredDate": 1588107600000, + "shippedDate": 1585861200000, + "requiredDateStart": 1588163400000, + "requiredDateEnd": 1588165200000, + "orderID": 10992, + "customerID": "THEBI", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 4.27, + "shipName": "The Big Cheese", + "shipAddress": "89 Jefferson Way Suite 2", + "shipCity": "Portland", + "shipRegion": "OR", + "shipPostalCode": "97201", + "shipCountry": "USA" +}, { + "customerCompanyName": "Pericles Comidas clásicas", + "customerContactName": "Guillermo Fernández", + "orderTotal": 1196, + "orderDate": 1585774800000, + "requiredDate": 1588194000000, + "shippedDate": 1586120400000, + "requiredDateStart": 1588248000000, + "requiredDateEnd": 1588249800000, + "orderID": 10995, + "customerID": "PERIC", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 46, + "shipName": "Pericles Comidas clásicas", + "shipAddress": "Calle Dr. Jorge Cash 321", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5033", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "Frankenversand", + "customerContactName": "Peter Franken", + "orderTotal": 2825.3, + "orderDate": 1586379600000, + "requiredDate": 1587589200000, + "shippedDate": 1587070800000, + "requiredDateStart": 1587646800000, + "requiredDateEnd": 1587652200000, + "orderID": 11012, + "customerID": "FRANK", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 3, + "freight": 242.95, + "shipName": "Frankenversand", + "shipAddress": "Berliner Platz 43", + "shipCity": "München", + "shipRegion": "", + "shipPostalCode": "80805", + "shipCountry": "Germany" +}, { + "customerCompanyName": "B's Beverages", + "customerContactName": "Victoria Ashworth", + "orderTotal": 1500, + "orderDate": 1586811600000, + "requiredDate": 1588021200000, + "shippedDate": 1587675600000, + "requiredDateStart": 1588073400000, + "requiredDateEnd": 1588075200000, + "orderID": 11023, + "customerID": "BSBEV", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 123.83, + "shipName": "B-s Beverages", + "shipAddress": "Fauntleroy Circus", + "shipCity": "London", + "shipRegion": "", + "shipPostalCode": "EC2 5NT", + "shipCountry": "UK" +}, { + "customerCompanyName": "Bottom-Dollar Markets", + "customerContactName": "Elizabeth Lincoln", + "orderTotal": 877.725, + "orderDate": 1586984400000, + "requiredDate": 1589403600000, + "shippedDate": 1587330000000, + "requiredDateStart": 1589455800000, + "requiredDateEnd": 1589461200000, + "orderID": 11027, + "customerID": "BOTTM", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 52.52, + "shipName": "Bottom-Dollar Markets", + "shipAddress": "23 Tsawassen Blvd.", + "shipCity": "Tsawassen", + "shipRegion": "BC", + "shipPostalCode": "T2F 8M4", + "shipCountry": "Canada" +}, { + "customerCompanyName": "Suprêmes délices", + "customerContactName": "Pascale Cartrain", + "orderTotal": 732.6, + "orderDate": 1587416400000, + "requiredDate": 1589835600000, + "shippedDate": 1588194000000, + "requiredDateStart": 1589893200000, + "requiredDateEnd": 1589896800000, + "orderID": 11038, + "customerID": "SUPRD", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 29.59, + "shipName": "Suprêmes délices", + "shipAddress": "Boulevard Tirou, 255", + "shipCity": "Charleroi", + "shipRegion": "", + "shipPostalCode": "B-6000", + "shipCountry": "Belgium" +}, { + "customerCompanyName": "LINO-Delicateses", + "customerContactName": "Felipe Izquierdo", + "orderTotal": 3090, + "orderDate": 1587416400000, + "requiredDate": 1589835600000, + "shippedDate": 1588194000000, + "requiredDateStart": 1589880600000, + "requiredDateEnd": 1589882400000, + "orderID": 11039, + "customerID": "LINOD", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 65, + "shipName": "LINO-Delicateses", + "shipAddress": "Ave. 5 de Mayo Porlamar", + "shipCity": "I. de Margarita", + "shipRegion": "Nueva Esparta", + "shipPostalCode": "4980", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Save-a-lot Markets", + "customerContactName": "Jose Pavarotti", + "orderTotal": 4330.4, + "orderDate": 1588280400000, + "requiredDate": 1590699600000, + "shippedDate": 1588539600000, + "requiredDateStart": 1590750000000, + "requiredDateEnd": 1590751800000, + "orderID": 11064, + "customerID": "SAVEA", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 30.09, + "shipName": "Save-a-lot Markets", + "shipAddress": "187 Suffolk Ln.", + "shipCity": "Boise", + "shipRegion": "ID", + "shipPostalCode": "83720", + "shipCountry": "USA" +}, { + "customerCompanyName": "Drachenblut Delikatessen", + "customerContactName": "Sven Ottlieb", + "orderTotal": 86.85, + "orderDate": 1588539600000, + "requiredDate": 1589749200000, + "shippedDate": 1588712400000, + "requiredDateStart": 1589797800000, + "requiredDateEnd": 1589799600000, + "orderID": 11067, + "customerID": "DRACD", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 7.98, + "shipName": "Drachenblut Delikatessen", + "shipAddress": "Walserweg 21", + "shipCity": "Aachen", + "shipRegion": "", + "shipPostalCode": "52066", + "shipCountry": "Germany" +}, { + "customerCompanyName": "Tortuga Restaurante", + "customerContactName": "Miguel Angel Paolino", + "orderTotal": 360, + "orderDate": 1588539600000, + "requiredDate": 1590958800000, + "shippedDate": 1588712400000, + "requiredDateStart": 1591005600000, + "requiredDateEnd": 1591009200000, + "orderID": 11069, + "customerID": "TORTU", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 15.67, + "shipName": "Tortuga Restaurante", + "shipAddress": "Avda. Azteca 123", + "shipCity": "México D.F.", + "shipRegion": "", + "shipPostalCode": "5033", + "shipCountry": "Mexico" +}, { + "customerCompanyName": "LILA-Supermercado", + "customerContactName": "Carlos González", + "orderTotal": 484.5, + "orderDate": 1588626000000, + "requiredDate": 1591045200000, + "shippedDate": 1588712400000, + "requiredDateStart": 1591095600000, + "requiredDateEnd": 1591097400000, + "orderID": 11071, + "customerID": "LILAS", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 1, + "freight": 0.93, + "shipName": "LILA-Supermercado", + "shipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "shipCity": "Barquisimeto", + "shipRegion": "Lara", + "shipPostalCode": "3508", + "shipCountry": "Venezuela" +}, { + "customerCompanyName": "Rattlesnake Canyon Grocery", + "customerContactName": "Paula Wilson", + "orderTotal": 1255.7205, + "orderDate": 1588712400000, + "requiredDate": 1591131600000, + "shippedDate": 1588712400000, + "requiredDateStart": 1591189200000, + "requiredDateEnd": 1591194600000, + "orderID": 11077, + "customerID": "RATTC", + "employeeID": "d26bcf84-a8b4-471c-a582-2de64d7e7715", + "teamID": 1, + "shipVia": 2, + "freight": 8.53, + "shipName": "Rattlesnake Canyon Grocery", + "shipAddress": "2817 Milton Dr.", + "shipCity": "Albuquerque", + "shipRegion": "NM", + "shipPostalCode": "87110", + "shipCountry": "USA" +}].map(order => ({ + ...order, + // parse dates + orderDate: new Date(order.orderDate), + requiredDate: new Date(order.requiredDate), + shippedDate: new Date(order.shippedDate), + requiredDateStart: new Date(order.requiredDateStart), + requiredDateEnd: new Date(order.requiredDateEnd), + isAllDay: false +})); + +export const ordersModelFields = { + id: 'orderID', + title: 'customerContactName', + description: 'shipAddress', + start: 'requiredDateStart', + end: 'requiredDateEnd', + recurrenceRule: 'recurrenceRule', + recurrenceId: 'recurrenceID', + recurrenceExceptions: 'recurrenceException' +}; \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/resources/teams.js b/examples/react-coffee-warehouse/src/resources/teams.js new file mode 100644 index 00000000..bd7ec803 --- /dev/null +++ b/examples/react-coffee-warehouse/src/resources/teams.js @@ -0,0 +1,22 @@ +export const teams = [ + { + 'teamID': 1, + 'teamName': 'Tiger Team', + 'teamColor': '#FF6358' + }, + { + 'teamID': 2, + 'teamName': 'Lemon Team', + 'teamColor': '#F7C62F' + }, + { + 'teamID': 3, + 'teamName': 'Organic Team', + 'teamColor': '#55AB1D' + }, + { + 'teamID': 4, + 'teamName': 'Ocean Team', + 'teamColor': '#28B4C8' + } +]; \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/serviceWorker.js b/examples/react-coffee-warehouse/src/serviceWorker.js new file mode 100644 index 00000000..e9ad3fbc --- /dev/null +++ b/examples/react-coffee-warehouse/src/serviceWorker.js @@ -0,0 +1,141 @@ +// This optional code is used to register a service worker. +// register() is not called by default. + +// This lets the app load faster on subsequent visits in production, and gives +// it offline capabilities. However, it also means that developers (and users) +// will only see deployed updates on subsequent visits to a page, after all the +// existing tabs open on the page have been closed, since previously cached +// resources are updated in the background. + +// To learn more about the benefits of this model and instructions on how to +// opt-in, read https://bit.ly/CRA-PWA + +const isLocalhost = Boolean( + window.location.hostname === 'localhost' || + // [::1] is the IPv6 localhost address. + window.location.hostname === '[::1]' || + // 127.0.0.0/8 are considered localhost for IPv4. + window.location.hostname.match( + /^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/ + ) +); + +export function register(config) { + if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) { + // The URL constructor is available in all browsers that support SW. + const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href); + if (publicUrl.origin !== window.location.origin) { + // Our service worker won't work if PUBLIC_URL is on a different origin + // from what our page is served on. This might happen if a CDN is used to + // serve assets; see https://github.com/facebook/create-react-app/issues/2374 + return; + } + + window.addEventListener('load', () => { + const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`; + + if (isLocalhost) { + // This is running on localhost. Let's check if a service worker still exists or not. + checkValidServiceWorker(swUrl, config); + + // Add some additional logging to localhost, pointing developers to the + // service worker/PWA documentation. + navigator.serviceWorker.ready.then(() => { + console.log( + 'This web app is being served cache-first by a service ' + + 'worker. To learn more, visit https://bit.ly/CRA-PWA' + ); + }); + } else { + // Is not localhost. Just register service worker + registerValidSW(swUrl, config); + } + }); + } +} + +function registerValidSW(swUrl, config) { + navigator.serviceWorker + .register(swUrl) + .then(registration => { + registration.onupdatefound = () => { + const installingWorker = registration.installing; + if (installingWorker == null) { + return; + } + installingWorker.onstatechange = () => { + if (installingWorker.state === 'installed') { + if (navigator.serviceWorker.controller) { + // At this point, the updated precached content has been fetched, + // but the previous service worker will still serve the older + // content until all client tabs are closed. + console.log( + 'New content is available and will be used when all ' + + 'tabs for this page are closed. See https://bit.ly/CRA-PWA.' + ); + + // Execute callback + if (config && config.onUpdate) { + config.onUpdate(registration); + } + } else { + // At this point, everything has been precached. + // It's the perfect time to display a + // "Content is cached for offline use." message. + console.log('Content is cached for offline use.'); + + // Execute callback + if (config && config.onSuccess) { + config.onSuccess(registration); + } + } + } + }; + }; + }) + .catch(error => { + console.error('Error during service worker registration:', error); + }); +} + +function checkValidServiceWorker(swUrl, config) { + // Check if the service worker can be found. If it can't reload the page. + fetch(swUrl, { + headers: { 'Service-Worker': 'script' }, + }) + .then(response => { + // Ensure service worker exists, and that we really are getting a JS file. + const contentType = response.headers.get('content-type'); + if ( + response.status === 404 || + (contentType != null && contentType.indexOf('javascript') === -1) + ) { + // No service worker found. Probably a different app. Reload the page. + navigator.serviceWorker.ready.then(registration => { + registration.unregister().then(() => { + window.location.reload(); + }); + }); + } else { + // Service worker found. Proceed as normal. + registerValidSW(swUrl, config); + } + }) + .catch(() => { + console.log( + 'No internet connection found. App is running in offline mode.' + ); + }); +} + +export function unregister() { + if ('serviceWorker' in navigator) { + navigator.serviceWorker.ready + .then(registration => { + registration.unregister(); + }) + .catch(error => { + console.error(error.message); + }); + } +} diff --git a/examples/react-coffee-warehouse/src/styles/_common.scss b/examples/react-coffee-warehouse/src/styles/_common.scss new file mode 100644 index 00000000..d17dde41 --- /dev/null +++ b/examples/react-coffee-warehouse/src/styles/_common.scss @@ -0,0 +1,559 @@ +// Normalization +body, +h1, +h2, +h3 { + margin: 0; + padding: 0; +} + +a { + text-decoration: none; +} + +// App styles +.k-drawer-container { + background-color: $background-color; + + .k-drawer { + box-shadow: 0 0 10px rgba(0,0,0,.2); + border-right-width: 0 !important; + } + + &.k-drawer-push .k-drawer { + position: sticky; + top: 80px; + height: calc(100vh - 80px); + } + + .k-drawer-item { + user-select: none; + } +} + +.card-container { + background-color: $white; + padding: 40px 0; + text-align: center; + + &.grid { + display: grid; + grid-template-columns: repeat(1, 1fr); + column-gap: 10px; + row-gap: 1em; + } + + .card-title { + + } + + .card-buttons { + .k-button { + min-width: 105px; + } + } + + .card-ranges { + .k-daterangepicker { + .k-textbox-container, .k-floating-label-container { + padding-top: 0; + min-width: 105px; + } + + .k-label { + display: none; + } + } + } + + .card-component { + grid-column: 1 / -1; + overflow: hidden; + } +} + +@media (min-width: 480px) { + .card-container { + text-align: initial; + padding: 30px; + + &.grid { + grid-template-columns: repeat(2, 1fr); + } + + .card-title { + grid-column: 1 / 2; + grid-row: 1; + } + + .card-buttons { + text-align: center; + grid-column: 1 / -1; + grid-row: 2; + } + + .card-ranges { + text-align: right; + grid-column: 2 / 3; + grid-row: 1; + } + } + + } + +@media (min-width: 768px) { + .card-container { + margin: 25px; + border-radius: 5px; + box-shadow: 0 0 10px rgba(0,0,0,.2); + + &.grid { + grid-template-columns: repeat(3, 1fr); + } + + .card-title { + + } + + .card-buttons { + text-align: center; + grid-column: 2 / 3; + grid-row: 1; + } + + .card-ranges { + text-align: right; + grid-column: 3 / 4; + } + + .card-component { + grid-column-start: 1; + grid-column-end: -1; + } + } +} + +// Header +.header { + height: 80px; + position: sticky; + top: 0; + z-index: 3; + + .nav-container { + display: flex; + flex-direction: row; + align-items: center; + justify-content: space-between; + height: 100%; + color: $white; + } + + .menu-button { + flex: 0 0 50px; + text-align: center; + } + + .hamburger-icon { + background-image: url('./../assets/hamburger-icon.svg'); + background-repeat: no-repeat; + width: 20px; + cursor: pointer; + } + + .title { + display: flex; + flex: 1 0 auto; + flex-direction: column; + align-items: flex-start; + margin-left: 25px; + } + + .k-avatar { + display: block; + width: 40px; + height: 40px; + flex-basis: 40px; + margin: 0 25px; + box-shadow: 0 0 0px 1px $white; + } + + .settings { + display: none; + } +} + +@media (min-width: 480px) { + .header { + .title { + flex-direction: row; + align-items: center; + } + .vl { + border-left: 1px solid $white; + height: 25px; + margin: 6px 15px; + } + } +} + +@media (min-width: 768px) { + .header { + .settings { + display: flex; + flex: 0 0 auto; + align-items: center; + } + + .k-dropdown { + max-width: 90px; + margin-left: 15px; + } + } +} + +// Dashboard page +.dashboard-page { + .card-container:last-of-type { + padding-top: 0; + } + + .k-grid-toolbar .k-textbox { + margin-bottom: 10px; + } + + .k-grid .k-virtual-content, + .k-grid .k-virtual-content > div { + -ms-overflow-style: none; /* IE and Edge */ + scrollbar-width: none; /* Firefox */ + &::-webkit-scrollbar { + display: none; + } + } + + .k-badge { + z-index: 1 + } +} + +@media (min-width: 480px) { + .dashboard-page { + .k-grid-toolbar .k-textbox { + margin-bottom: 0; + float: left; + } + + .k-grid-toolbar .k-button { + float: right; + } + } +} + +@media (min-width: 768px) { + .dashboard-page { + .card-container:last-of-type { + padding-top: 30px; + } + } +} +// Planning page +.planning-page { + .card-container { + grid-template-columns: repeat(1, 1fr); + } + .card-title{ + grid-column: 1 / -1; + } + .k-hbox { + padding: 0 20px; + background: transparent; + align-items: center; + } + .k-card-title { + font-size: 15px; + margin-bottom: -6px; + text-align: left; + } + .k-card-subtitle { + margin-top: 0; + text-transform: uppercase; + font-size: 11px; + } + .disabled { + opacity: 0.5; + } +} + +@media (min-width: 480px) { + .planning-page { + .card-container { + grid-template-columns: repeat(2, 1fr); + } + } +} + +@media (min-width: 768px) { + .planning-page { + .k-hbox { + padding: 0; + border-width: 0; + } + } +} + +@media (min-width: 960px) { + .planning-page { + .card-container { + grid-template-columns: repeat(3, 1fr); + } + } +} + +@media (min-width: 1360px) { + .planning-page { + .card-container { + grid-template-columns: repeat(5, 1fr); + } + } +} + +// Profile page +.profile-page { + .card-container { + text-align: left; + } + + .k-form .k-form-field { + display: block; + padding: 0 15px; + } + + .k-form-field:first-of-type .k-form-field-wrap { + margin: auto; + } + + .k-form-field:first-of-type .k-avatar { + margin: 0 auto 1rem; + } + + .k-form.k-form-horizontal .k-label { + width: 100%; + } + + hr { + margin-top: 1rem; + opacity: 0.2; + } + + .k-form .k-form-buttons { + justify-content: center; + + & > * { + min-width: 140px; + } + } +} + +@media (min-width: 480px) { + .profile-page { + .k-form .k-form-field { + display: flex; + } + + .k-form-field:first-of-type .k-avatar { + margin: 0; + } + + .k-form.k-form-horizontal .k-label { + width: 25%; + } + } +} + + @media (min-width: 768px) { + .profile-page { + .k-form { + margin: 0 auto; + padding: 0; + } + .k-form .k-form-field { + padding: 0; + } + } + } + + +// Info page +.info-page { + background-color: $info-background; + color: $white; + + h1, h2, h3, .component-link { + font-family: Metric,Helvetica,Arial,sans-serif; + } + a:not(.k-button) { + color: $link-color; + } + + .content { + padding-top: 40px; + margin: 0 auto; + position: relative; + max-width: 820px; + } + + .kendoka { + text-align: center; + img { + max-width: 280px; + } + } + + .section-1 { + text-align: center; + h1 { + font-size: 48px; + font-weight: bold; + color: $react-color; + } + + h2 { + font-size: 30px; + margin-bottom: 53px; + } + + .button-group { + margin-bottom: 30px; + + .k-button { + display: block; + margin: 10px auto; + min-width: 145px; + width: 60%; + } + } + + .github-link { + display: inline-flex; + flex-direction: row; + align-items: center; + align-content: center; + + .github-text { + margin-left: 15px; + } + } + } + + .section-2 { + text-align: center; + margin-top: 40px; + padding: 0 15px; + } + + .section-3 { + -webkit-columns: 2; + column-count: 2; + margin-top: 40px; + padding: 0 15px; + + ul { + list-style: none; + padding: 0; + margin: 0; + } + } + + .package-item { + display: inline-block; + margin-top: 20px; + } + + .package-title a { + font-size: 17px; + color: #CCCCCC; + text-transform: uppercase; + } + + .component-link { + padding: 5px 0; + + a { + font-size: 20px; + } + } + + .footer { + background-image: url('../assets/info-background.svg'); + background-repeat: no-repeat; + height: 320px; + } +} + +@media (min-width: 480px) { + .info-page { + .content { + padding: 40px 40px 0; + } + .kendoka { + img { + max-width: 348px; + } + } + + .section-1 { + h1 { + font-size: 71px; + } + + h2 { + font-size: 38px; + } + + .button-group { + .k-button { + display: inline-block; + margin-right: 10px; + width: auto; + } + } + } + .section-3 { + -webkit-columns: 3; + column-count: 3; + } + } +} +@media (max-width: 480px) { + .k-form-horizontal .k-form-field-wrap { + max-width: 100%; + } + +} + +@media (min-width: 768px) { + .info-page { + .content { + padding: 120px 40px 0; + } + .kendoka { + position: absolute; + right: 0; + top: 2em; + text-align: left; + } + .section-1, + .section-2 { + text-align: left; + padding: 0; + } + .section-3 { + -webkit-columns: 4; + column-count: 4; + padding: 0; + } + .footer { + background-size: cover; + } + } +} \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/styles/_typography.scss b/examples/react-coffee-warehouse/src/styles/_typography.scss new file mode 100644 index 00000000..02443155 --- /dev/null +++ b/examples/react-coffee-warehouse/src/styles/_typography.scss @@ -0,0 +1,54 @@ +@font-face { + font-family: "Roboto"; + src: url("fonts/Roboto-Regular.ttf") format("truetype"); +} +body { + font-family: "Roboto", sans-serif; +} + +h1 { + font-size: 1.25rem; + font-weight: 400; +} +h2 { + font-size: 1.0rem;; + font-weight: 200; +} +h3 { + font-size: 1.25rem; + font-weight: 400; +} +h4 { + font-size: 1.25rem; +} +h5 { + font-size: 1.25rem; +} +p { + font-size: 1rem; +} +a { + font-size: 1rem; +} + +@media (min-width: 480px) { + h1 { + font-size: 1.5rem; + font-weight: 400; + } + h2 { + font-size: 1.25rem;; + font-weight: 200; + } +} + +@media (min-width: 768px) { + h1 { + font-size: 1.75rem; + font-weight: 400; + } + h2 { + font-size: 1.75rem;; + font-weight: 200; + } +} \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/styles/_variables.scss b/examples/react-coffee-warehouse/src/styles/_variables.scss new file mode 100644 index 00000000..a391d1ae --- /dev/null +++ b/examples/react-coffee-warehouse/src/styles/_variables.scss @@ -0,0 +1,11 @@ +// Global variables here +$background-color: #D4D6E4; +$info-background: #151950; +$react-color: #53d2fa; +$link-color: #71A6FF; +$white: #FFFFFF; + +$tiger-team: #FF6358; +$lemon-team: #FFD246; +$organic-team: #55AB1D; +$ocean-team: #28B4C8; \ No newline at end of file diff --git a/examples/react-coffee-warehouse/src/styles/fonts/Roboto-Regular.ttf b/examples/react-coffee-warehouse/src/styles/fonts/Roboto-Regular.ttf new file mode 100644 index 00000000..2b6392ff Binary files /dev/null and b/examples/react-coffee-warehouse/src/styles/fonts/Roboto-Regular.ttf differ diff --git a/examples/react-coffee-warehouse/src/styles/main.scss b/examples/react-coffee-warehouse/src/styles/main.scss new file mode 100644 index 00000000..8e77bab3 --- /dev/null +++ b/examples/react-coffee-warehouse/src/styles/main.scss @@ -0,0 +1,5 @@ +// Default theme variables here + +@import "./variables"; +@import "./typography"; +@import "./common"; diff --git a/examples/react-coffee-warehouse/src/validators/index.js b/examples/react-coffee-warehouse/src/validators/index.js new file mode 100644 index 00000000..47592f7f --- /dev/null +++ b/examples/react-coffee-warehouse/src/validators/index.js @@ -0,0 +1,8 @@ +const emailRegex = new RegExp(/^\w+([.-]?\w+)*@\w+([.-]?\w+)*(\.\w{2,3})+$/); +const phoneRegex = new RegExp(/^[0-9 ()+-]+$/); +const htmlRegex = new RegExp(/<[^>]*>/g); + +export const emailValidator = (value) => (emailRegex.test(value) ? '' : 'You have entered an invalid email address!'); +export const requiredValidator = (value) => value ? '' : 'This field is required'; +export const phoneValidator = (value) => value && phoneRegex.test(value) ? '' : 'Please enter valid phone number.'; +export const biographyValidator = (value) => value && value.replace(htmlRegex, '').length >= 50 ? '' : 'Biography must be at least 50 characters long.'; \ No newline at end of file